[FFmpeg-devel] [PATCH]libavcodec/dca: Make decoding xll the default
Carl Eugen Hoyos
cehoyos at ag.or.at
Sun Jan 3 15:58:04 CET 2016
Hi!
Is there still something important missing?
Carl Eugen
-------------- next part --------------
diff --git a/libavcodec/dcadec.c b/libavcodec/dcadec.c
index 6b8d02d..4f8cf54 100644
--- a/libavcodec/dcadec.c
+++ b/libavcodec/dcadec.c
@@ -2038,7 +2038,7 @@ static av_cold int dca_decode_end(AVCodecContext *avctx)
static const AVOption options[] = {
{ "disable_xch", "disable decoding of the XCh extension", offsetof(DCAContext, xch_disable), AV_OPT_TYPE_BOOL, { .i64 = 0 }, 0, 1, AV_OPT_FLAG_DECODING_PARAM | AV_OPT_FLAG_AUDIO_PARAM },
- { "disable_xll", "disable decoding of the XLL extension", offsetof(DCAContext, xll_disable), AV_OPT_TYPE_BOOL, { .i64 = 1 }, 0, 1, AV_OPT_FLAG_DECODING_PARAM | AV_OPT_FLAG_AUDIO_PARAM },
+ { "disable_xll", "disable decoding of the XLL extension", offsetof(DCAContext, xll_disable), AV_OPT_TYPE_BOOL, { .i64 = 0 }, 0, 1, AV_OPT_FLAG_DECODING_PARAM | AV_OPT_FLAG_AUDIO_PARAM },
{ NULL },
};
More information about the ffmpeg-devel
mailing list