diff options
author | Tim Walker <tdskywalker@gmail.com> | 2016-04-01 03:22:47 +0200 |
---|---|---|
committer | Luca Barbato <lu_zero@gentoo.org> | 2016-04-02 14:05:07 +0200 |
commit | fef2147b7a689b80d716c3edb9d4a18904865275 (patch) | |
tree | a0b8fef810f3bc09ce247b756402613cb96ea7a5 /libavcodec/ac3dec.h | |
parent | 1db8eb154908cde577477b6ab17430a0cd46b7bd (diff) | |
download | ffmpeg-fef2147b7a689b80d716c3edb9d4a18904865275.tar.gz |
eac3dec: don't call avpriv_request_sample every frame.
These errors neither prevent nor stop successful decoding
of the E-AC-3 stream's "core", causing avpriv_request_sample
to be called for every single frame in the bitstream.
Signed-off-by: Luca Barbato <lu_zero@gentoo.org>
Diffstat (limited to 'libavcodec/ac3dec.h')
-rw-r--r-- | libavcodec/ac3dec.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavcodec/ac3dec.h b/libavcodec/ac3dec.h index e4d443c9a8..4c5359cb87 100644 --- a/libavcodec/ac3dec.h +++ b/libavcodec/ac3dec.h @@ -92,6 +92,8 @@ typedef struct AC3DecodeContext { int lfe_mix_level_exists; ///< indicates if lfemixlevcod is specified (lfemixlevcode) int lfe_mix_level; ///< LFE mix level index (lfemixlevcod) int eac3; ///< indicates if current frame is E-AC-3 + int eac3_frame_dependent_found; ///< bitstream has E-AC-3 dependent frame(s) + int eac3_subsbtreamid_found; ///< bitstream has E-AC-3 additional substream(s) int dolby_surround_mode; ///< dolby surround mode (dsurmod) int dolby_surround_ex_mode; ///< dolby surround ex mode (dsurexmod) int dolby_headphone_mode; ///< dolby headphone mode (dheadphonmod) |