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/common.h | |
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/common.h')
-rw-r--r-- | libhb/common.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/libhb/common.h b/libhb/common.h index bac165a4f..6811e1eca 100644 --- a/libhb/common.h +++ b/libhb/common.h @@ -1163,7 +1163,6 @@ extern hb_work_object_t hb_encx265; extern hb_work_object_t hb_decavcodeca; extern hb_work_object_t hb_decavcodecv; extern hb_work_object_t hb_declpcm; -extern hb_work_object_t hb_enclame; extern hb_work_object_t hb_encvorbis; extern hb_work_object_t hb_muxer; extern hb_work_object_t hb_encca_aac; |