From 387f50606c53a69167fd07053674d412514e910d Mon Sep 17 00:00:00 2001 From: Carl Eugen Hoyos Date: Sat, 24 Nov 2012 16:09:07 +0100 Subject: Fix type of default value for v210 decoder option -custom_stride. Reviewed-by: Paul B Mahol --- libavcodec/v210dec.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libavcodec') diff --git a/libavcodec/v210dec.c b/libavcodec/v210dec.c index 103e136bfa..d508ce8ea0 100644 --- a/libavcodec/v210dec.c +++ b/libavcodec/v210dec.c @@ -172,7 +172,7 @@ static av_cold int decode_close(AVCodecContext *avctx) #define V210DEC_FLAGS AV_OPT_FLAG_DECODING_PARAM | AV_OPT_FLAG_VIDEO_PARAM static const AVOption v210dec_options[] = { {"custom_stride", "Custom V210 stride", offsetof(V210DecContext, custom_stride), FF_OPT_TYPE_INT, - {.dbl = 0}, INT_MIN, INT_MAX, V210DEC_FLAGS}, + {.i64 = 0}, INT_MIN, INT_MAX, V210DEC_FLAGS}, {NULL} }; -- cgit v1.2.3