aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCarl Eugen Hoyos <cehoyos@ag.or.at>2011-12-16 01:04:43 +0100
committerMichael Niedermayer <michaelni@gmx.at>2012-01-03 18:26:57 +0100
commit7d96f764d6f2bbdb2e0680441ad63d2513bc42fb (patch)
tree3a8d9a56c5a052e05d2a505eda41132b9de4015f
parentb32554175c5f279f1d25c49f0910494efa29783c (diff)
downloadffmpeg-7d96f764d6f2bbdb2e0680441ad63d2513bc42fb.tar.gz
Fix typo in v210 decoder options.
(cherry picked from commit 56669837ce18d15d757a144712a082b9cb535c94) Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r--libavcodec/v210dec.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/v210dec.c b/libavcodec/v210dec.c
index 68dbd3753a..147f1f20be 100644
--- a/libavcodec/v210dec.c
+++ b/libavcodec/v210dec.c
@@ -158,7 +158,7 @@ static av_cold int decode_close(AVCodecContext *avctx)
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[] = {
{"custom_stride", "Custom V210 stride", offsetof(V210DecContext, custom_stride), FF_OPT_TYPE_INT,
{.dbl = 0}, INT_MIN, INT_MAX, V210DEC_FLAGS},