From fb99ef0bd39a1859d0e65c6c16caa8e17dd3cfbe Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment=20B=C5=93sch?= Date: Sat, 21 Nov 2015 22:04:39 +0100 Subject: avcodec: use AV_OPT_TYPE_BOOL in a bunch of places --- libavcodec/fic.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libavcodec/fic.c') diff --git a/libavcodec/fic.c b/libavcodec/fic.c index b58b017..7d698f0 100644 --- a/libavcodec/fic.c +++ b/libavcodec/fic.c @@ -456,7 +456,7 @@ static av_cold int fic_decode_init(AVCodecContext *avctx) } static const AVOption options[] = { -{ "skip_cursor", "skip the cursor", offsetof(FICContext, skip_cursor), AV_OPT_TYPE_INT, {.i64 = 0 }, 0, 1, AV_OPT_FLAG_DECODING_PARAM | AV_OPT_FLAG_VIDEO_PARAM }, +{ "skip_cursor", "skip the cursor", offsetof(FICContext, skip_cursor), AV_OPT_TYPE_BOOL, {.i64 = 0 }, 0, 1, AV_OPT_FLAG_DECODING_PARAM | AV_OPT_FLAG_VIDEO_PARAM }, { NULL }, }; -- cgit v1.1