diff options
author | Justin Ruggles <justin.ruggles@gmail.com> | 2008-12-06 16:19:44 +0000 |
---|---|---|
committer | Justin Ruggles <justin.ruggles@gmail.com> | 2008-12-06 16:19:44 +0000 |
commit | d98d70d697a9462d834ac52265abd8255c0b326c (patch) | |
tree | 23930670b4a3ea46550d87110a3cbbbfd1fc54ad | |
parent | 3e7aa8fa4c12e8dc48878f0709f65a21e3b4c523 (diff) | |
download | ffmpeg-d98d70d697a9462d834ac52265abd8255c0b326c.tar.gz |
ac3dec: add missing feature log message for block start info
Originally committed as revision 16020 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavcodec/eac3dec.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/eac3dec.c b/libavcodec/eac3dec.c index 4bcd08b3ad..c582fbc3d5 100644 --- a/libavcodec/eac3dec.c +++ b/libavcodec/eac3dec.c @@ -476,6 +476,7 @@ int ff_eac3_parse_header(AC3DecodeContext *s) It is likely the offset of each block within the frame. */ int block_start_bits = (s->num_blocks-1) * (4 + av_log2(s->frame_size-2)); skip_bits_long(gbc, block_start_bits); + av_log_missing_feature(s->avctx, "Block start info", 1); } /* syntax state initialization */ |