Commit c2a1fc36 authored by mru's avatar mru

Set CODEC_CAP_SUBFRAMES for adpcm decoders

This makes ffmpeg stop printing millions of
  Multiple frames in a packet from stream 0
when decoding adpcm.

git-svn-id: file:///var/local/repositories/ffmpeg/trunk@21362 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent b8c5d91f
......@@ -1664,6 +1664,7 @@ AVCodec name ## _decoder = { \
NULL, \
adpcm_decode_frame, \
.long_name = NULL_IF_CONFIG_SMALL(long_name_), \
.capabilities = CODEC_CAP_SUBFRAMES, \
};
#else
#define ADPCM_DECODER(id,name,long_name_)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment