From a047851329d2c90462246a22a9c07cc3d61d66cb Mon Sep 17 00:00:00 2001 From: Justin Ruggles Date: Fri, 28 Oct 2011 13:02:15 -0400 Subject: [PATCH] atrac3: add CODEC_CAP_SUBFRAMES capability the decoder can handle multiple frames in a packet --- libavcodec/atrac3.c | 1 + 1 file changed, 1 insertion(+) diff --git a/libavcodec/atrac3.c b/libavcodec/atrac3.c index b5bf061f68..bbe562cfb3 100644 --- a/libavcodec/atrac3.c +++ b/libavcodec/atrac3.c @@ -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)"), };