g.723.1: add missing CODEC_CAP_DR1
authorAnton Khirnov <anton@khirnov.net>
Wed, 17 Oct 2012 10:16:00 +0000 (12:16 +0200)
committerAnton Khirnov <anton@khirnov.net>
Wed, 24 Oct 2012 06:46:45 +0000 (08:46 +0200)
libavcodec/g723_1.c

index 3d4fa46..5c213da 100644 (file)
@@ -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,
 };