mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-24 02:31:03 +00:00
ext/lame/gstlame.c: Use LAME's default for the min/max/mean VBR bitrate. Setting our own defaults will restrict the b...
Original commit message from CVS: * ext/lame/gstlame.c: (gst_lame_init): Use LAME's default for the min/max/mean VBR bitrate. Setting our own defaults will restrict the bitrate when using the presets in a bad way. Fixes bug #498004.
This commit is contained in:
parent
adc231d2de
commit
82c528d3ca
1 changed files with 3 additions and 8 deletions
|
@ -630,18 +630,13 @@ gst_lame_init (GstLame * lame)
|
|||
lame->disable_reservoir = lame_get_disable_reservoir (lame->lgf);
|
||||
lame->vbr = vbr_off; /* lame_get_VBR (lame->lgf); */
|
||||
lame->vbr_quality = 5;
|
||||
#if 0
|
||||
|
||||
/* Replaced by our own more informative constants,
|
||||
rather than LAME's defaults */
|
||||
lame->vbr_mean_bitrate = lame_get_VBR_mean_bitrate_kbps (lame->lgf);
|
||||
lame->vbr_min_bitrate = lame_get_VBR_min_bitrate_kbps (lame->lgf);
|
||||
lame->vbr_max_bitrate = 0; /* lame_get_VBR_max_bitrate_kbps (lame->lgf);
|
||||
* => 0/no vbr possible */
|
||||
#else
|
||||
lame->vbr_mean_bitrate = DEFAULT_MEAN_VBR_BITRATE;
|
||||
lame->vbr_min_bitrate = DEFAULT_MIN_VBR_BITRATE;
|
||||
lame->vbr_max_bitrate = DEFAULT_MAX_VBR_BITRATE;
|
||||
#endif
|
||||
lame->vbr_max_bitrate = lame_get_VBR_max_bitrate_kbps (lame->lgf);
|
||||
/* => 0/no vbr possible */
|
||||
lame->vbr_hard_min = lame_get_VBR_hard_min (lame->lgf);
|
||||
/* lame->lowpass_freq = 50000; lame_get_lowpassfreq (lame->lgf);
|
||||
* => 0/lowpass on everything ? */
|
||||
|
|
Loading…
Reference in a new issue