1
mirror of https://git.videolan.org/git/ffmpeg.git synced 2024-07-18 10:21:39 +02:00

atrac3: add CODEC_CAP_SUBFRAMES capability

the decoder can handle multiple frames in a packet
This commit is contained in:
Justin Ruggles 2011-10-28 13:02:15 -04:00
parent 8f98577d4d
commit a047851329

View File

@ -1047,5 +1047,6 @@ AVCodec ff_atrac3_decoder =
.init = atrac3_decode_init,
.close = atrac3_decode_close,
.decode = atrac3_decode_frame,
.capabilities = CODEC_CAP_SUBFRAMES,
.long_name = NULL_IF_CONFIG_SMALL("Atrac 3 (Adaptive TRansform Acoustic Coding 3)"),
};