diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2012-11-03 20:21:57 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2012-11-03 20:22:53 +0100 |
commit | 930226cf52ad279accd356767269c87e79c31444 (patch) | |
tree | 79dc3f7e69633cd40ad4995c447aaa695384e003 /libavcodec | |
parent | ab796ded757e616cb9167c0a15d70903b86e00f9 (diff) | |
download | ffmpeg-930226cf52ad279accd356767269c87e79c31444.tar.gz |
crystalhd: fix missing braces warning
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/crystalhd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/crystalhd.c b/libavcodec/crystalhd.c index 334337e57c..bf846d31dd 100644 --- a/libavcodec/crystalhd.c +++ b/libavcodec/crystalhd.c @@ -153,7 +153,7 @@ static const AVOption options[] = { { "crystalhd_downscale_width", "Turn on downscaling to the specified width", offsetof(CHDContext, sWidth), - AV_OPT_TYPE_INT, 0, 0, UINT32_MAX, + AV_OPT_TYPE_INT, {.i64 = 0}, 0, UINT32_MAX, AV_OPT_FLAG_VIDEO_PARAM | AV_OPT_FLAG_DECODING_PARAM, }, { NULL, }, }; |