Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2012-10-17 14:16:00 +0400
committerAnton Khirnov <anton@khirnov.net>2012-10-24 10:46:45 +0400
commit5a9567631a909a4c76dc678ebd603ffc4d57262d (patch)
tree5a3bd8243191e9acb4190e32a2d87533c9892d37 /libavcodec/g723_1.c
parent8e84f2055c4170e502d36db3539b5e243a5b6cca (diff)
g.723.1: add missing CODEC_CAP_DR1
Diffstat (limited to 'libavcodec/g723_1.c')
-rw-r--r--libavcodec/g723_1.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/g723_1.c b/libavcodec/g723_1.c
index 3d4fa46a4b..5c213da64c 100644
--- a/libavcodec/g723_1.c
+++ b/libavcodec/g723_1.c
@@ -1376,6 +1376,6 @@ AVCodec ff_g723_1_decoder = {
.init = g723_1_decode_init,
.decode = g723_1_decode_frame,
.long_name = NULL_IF_CONFIG_SMALL("G.723.1"),
- .capabilities = CODEC_CAP_SUBFRAMES,
+ .capabilities = CODEC_CAP_SUBFRAMES | CODEC_CAP_DR1,
.priv_class = &g723_1dec_class,
};