diff options
author | Ronald S. Bultje <rsbultje@gmail.com> | 2015-08-16 19:34:13 -0400 |
---|---|---|
committer | Ronald S. Bultje <rsbultje@gmail.com> | 2015-08-18 11:48:49 -0400 |
commit | 6471040f5650ad8c06e8fe285325b41db5bef75e (patch) | |
tree | 0605c3ff099ca1832de373b8444faa2659aea443 /libavcodec/v210dec.c | |
parent | 229843aa359ae0c9519977d7fa952688db63f559 (diff) | |
download | ffmpeg-6471040f5650ad8c06e8fe285325b41db5bef75e.tar.gz |
FF_OPT_TYPE_* -> AV_OPT_TYPE_*.
Diffstat (limited to 'libavcodec/v210dec.c')
-rw-r--r-- | libavcodec/v210dec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/v210dec.c b/libavcodec/v210dec.c index ab4bdcd377..12d5d5407f 100644 --- a/libavcodec/v210dec.c +++ b/libavcodec/v210dec.c @@ -160,7 +160,7 @@ static int decode_frame(AVCodecContext *avctx, void *data, int *got_frame, #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, + {"custom_stride", "Custom V210 stride", offsetof(V210DecContext, custom_stride), AV_OPT_TYPE_INT, {.i64 = 0}, INT_MIN, INT_MAX, V210DEC_FLAGS}, {NULL} }; |