diff options
author | John Stebbins <[email protected]> | 2015-10-16 11:32:48 -0700 |
---|---|---|
committer | John Stebbins <[email protected]> | 2015-10-26 07:47:45 -0700 |
commit | d05e644d5243dbd0d0cb7550e28345b897c8f7cd (patch) | |
tree | 42caf2af5d99d2c3c74e9c359a647743d498d3e2 /libhb/hb.c | |
parent | 7d7740033448cf58d560efdfa0b78562f6aa62d1 (diff) |
lame: Use libav wrapper to encode mp3lame
Fixes https://forum.handbrake.fr/viewtopic.php?f=12&t=33345
Some players expect each packet to start on an mp3 frame header. Our
mp3lame encoder did not ensure this and resulted in failure to play
audio on these players.
libav already has the necessary code to parse headers and
accumulate a full frame of data, so use it.
Diffstat (limited to 'libhb/hb.c')
-rw-r--r-- | libhb/hb.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/libhb/hb.c b/libhb/hb.c index 55800c832..5f688c012 100644 --- a/libhb/hb.c +++ b/libhb/hb.c @@ -1677,7 +1677,6 @@ int hb_global_init() hb_register(&hb_encca_aac); hb_register(&hb_encca_haac); #endif - hb_register(&hb_enclame); hb_register(&hb_enctheora); hb_register(&hb_encvorbis); hb_register(&hb_encx264); |