summaryrefslogtreecommitdiff
path: root/libavcodec/atrac3.c
diff options
context:
space:
mode:
authorJustin Ruggles <justin.ruggles@gmail.com>2011-10-28 13:02:15 -0400
committerJustin Ruggles <justin.ruggles@gmail.com>2011-10-29 15:06:32 -0400
commita047851329d2c90462246a22a9c07cc3d61d66cb (patch)
tree5ac2abf00c23f96466bffd0818b6e94f7111b8b0 /libavcodec/atrac3.c
parent8f98577d4dec38bf2618568ac012bc7094e95b09 (diff)
atrac3: add CODEC_CAP_SUBFRAMES capability
the decoder can handle multiple frames in a packet
Diffstat (limited to 'libavcodec/atrac3.c')
-rw-r--r--libavcodec/atrac3.c1
1 files changed, 1 insertions, 0 deletions
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)"),
};