avcodec/pgssubdec: use AV_OPT_TYPE_BOOL for forced_subs_only option

This commit is contained in:
Clément Bœsch 2015-09-11 21:16:08 +02:00 committed by Clément Bœsch
parent 5cae43e718
commit 8e22becbc7

View File

@ -675,7 +675,7 @@ static int decode(AVCodecContext *avctx, void *data, int *data_size,
#define OFFSET(x) offsetof(PGSSubContext, x)
#define SD AV_OPT_FLAG_SUBTITLE_PARAM | AV_OPT_FLAG_DECODING_PARAM
static const AVOption options[] = {
{"forced_subs_only", "Only show forced subtitles", OFFSET(forced_subs_only), AV_OPT_TYPE_INT, {.i64 = 0}, 0, 1, SD},
{"forced_subs_only", "Only show forced subtitles", OFFSET(forced_subs_only), AV_OPT_TYPE_BOOL, {.i64 = 0}, 0, 1, SD},
{ NULL },
};