mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-12-12 01:40:04 +01:00
Fix typo in v210 decoder options.
(cherry picked from commit 56669837ce)
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
committed by
Michael Niedermayer
parent
b32554175c
commit
7d96f764d6
@@ -158,7 +158,7 @@ static av_cold int decode_close(AVCodecContext *avctx)
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
#define V210DEC_FLAGS AV_OPT_FLAG_ENCODING_PARAM | AV_OPT_FLAG_VIDEO_PARAM
|
#define V210DEC_FLAGS AV_OPT_FLAG_DECODING_PARAM | AV_OPT_FLAG_VIDEO_PARAM
|
||||||
static const AVOption v210dec_options[] = {
|
static const AVOption v210dec_options[] = {
|
||||||
{"custom_stride", "Custom V210 stride", offsetof(V210DecContext, custom_stride), FF_OPT_TYPE_INT,
|
{"custom_stride", "Custom V210 stride", offsetof(V210DecContext, custom_stride), FF_OPT_TYPE_INT,
|
||||||
{.dbl = 0}, INT_MIN, INT_MAX, V210DEC_FLAGS},
|
{.dbl = 0}, INT_MIN, INT_MAX, V210DEC_FLAGS},
|
||||||
|
|||||||
Reference in New Issue
Block a user