]> git.sesse.net Git - ffmpeg/blobdiff - libavcodec/gsmdec.c
avfilter/formats: Remove avfilter_make_format64_list()
[ffmpeg] / libavcodec / gsmdec.c
index cd56995183bdddf92a54874f1b2f79af5163c2cb..bf3740aa5d0e04d94dea26cea1ee8cd67e93707a 100644 (file)
@@ -120,7 +120,7 @@ AVCodec ff_gsm_decoder = {
     .init           = gsm_init,
     .decode         = gsm_decode_frame,
     .flush          = gsm_flush,
-    .capabilities   = AV_CODEC_CAP_DR1,
+    .capabilities   = AV_CODEC_CAP_DR1 | AV_CODEC_CAP_CHANNEL_CONF,
 };
 #endif
 #if CONFIG_GSM_MS_DECODER
@@ -133,6 +133,6 @@ AVCodec ff_gsm_ms_decoder = {
     .init           = gsm_init,
     .decode         = gsm_decode_frame,
     .flush          = gsm_flush,
-    .capabilities   = AV_CODEC_CAP_DR1,
+    .capabilities   = AV_CODEC_CAP_DR1 | AV_CODEC_CAP_CHANNEL_CONF,
 };
 #endif