ext/lame/gstlame.c: Fix lame putting lots of 0's at start of mp3. Fixes bug #348786.

Original commit message from CVS:
2006-07-26  Zaheer Abbas Merali  <zaheerabbas at merali dot org>

* ext/lame/gstlame.c: (gst_lame_setup):
Fix lame putting lots of 0's at start of mp3.  Fixes bug #348786.
This commit is contained in:
Zaheer Abbas Merali 2006-07-26 17:09:04 +00:00
parent 7e23244807
commit 6e31592841
3 changed files with 7 additions and 1 deletions

View file

@ -1,3 +1,8 @@
2006-07-26 Zaheer Abbas Merali <zaheerabbas at merali dot org>
* ext/lame/gstlame.c: (gst_lame_setup):
Fix lame putting lots of 0's at start of mp3. Fixes bug #348786.
2006-07-21 Wim Taymans <wim@fluendo.com>
* ext/sidplay/gstsiddec.cc:

2
common

@ -1 +1 @@
Subproject commit 53ecdc0c97a2992e5abeddd41d514bc142401e5d
Subproject commit ef97fb3278d98a1fdb32e5c6b2a7467116ffc160

View file

@ -1041,6 +1041,7 @@ gst_lame_setup (GstLame * lame)
CHECK_ERROR (lame_set_allow_diff_short (lame->lgf, lame->allow_diff_short));
CHECK_ERROR (lame_set_no_short_blocks (lame->lgf, lame->no_short_blocks));
CHECK_ERROR (lame_set_emphasis (lame->lgf, lame->emphasis));
CHECK_ERROR (lame_set_bWriteVbrTag (lame->lgf, 0));
#ifdef GSTLAME_PRESET
if (lame->preset > 0) {
CHECK_ERROR (lame_set_preset (lame->lgf, lame->preset));