/*
* call-seq:
* encoder.vbr_hard_min?
*
* Get the hard minimum flag.
*/
static VALUE get_vbr_hard_min(VALUE self)
{
lame_global_flags * gfp;
Data_Get_Struct(self, lame_global_flags, gfp);
return lame_get_VBR_hard_min(gfp) == 0 ? Qfalse : Qtrue;
}