Commit 387f5060 authored by Carl Eugen Hoyos's avatar Carl Eugen Hoyos

Fix type of default value for v210 decoder option -custom_stride.

Reviewed-by: Paul B Mahol
parent 081bf60e
......@@ -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}
};
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment