diff options
author | Clément Bœsch <u@pkh.me> | 2015-09-09 00:34:56 +0200 |
---|---|---|
committer | Clément Bœsch <u@pkh.me> | 2015-09-09 00:34:56 +0200 |
commit | 81e52c6df90d4126520dddd69973dc2739e598a0 (patch) | |
tree | 58b1df32222e457d69fc8fad90fc975a0906bb99 /libavfilter | |
parent | 9c52eafd5b93f8eb9a43995df335737aa5156a43 (diff) | |
download | ffmpeg-81e52c6df90d4126520dddd69973dc2739e598a0.tar.gz |
avfilter/palettegen: use AV_OPT_TYPE_BOOL for reserve_transparent option
Diffstat (limited to 'libavfilter')
-rw-r--r-- | libavfilter/vf_palettegen.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/vf_palettegen.c b/libavfilter/vf_palettegen.c index 4e7cb8ad2f..9e723377b7 100644 --- a/libavfilter/vf_palettegen.c +++ b/libavfilter/vf_palettegen.c @@ -79,7 +79,7 @@ typedef struct { #define FLAGS AV_OPT_FLAG_FILTERING_PARAM|AV_OPT_FLAG_VIDEO_PARAM static const AVOption palettegen_options[] = { { "max_colors", "set the maximum number of colors to use in the palette", OFFSET(max_colors), AV_OPT_TYPE_INT, {.i64=256}, 4, 256, FLAGS }, - { "reserve_transparent", "reserve a palette entry for transparency", OFFSET(reserve_transparent), AV_OPT_TYPE_INT, {.i64=1}, 0, 1, FLAGS }, + { "reserve_transparent", "reserve a palette entry for transparency", OFFSET(reserve_transparent), AV_OPT_TYPE_BOOL, {.i64=1}, 0, 1, FLAGS }, { "stats_mode", "set statistics mode", OFFSET(stats_mode), AV_OPT_TYPE_INT, {.i64=STATS_MODE_ALL_FRAMES}, 0, NB_STATS_MODE, FLAGS, "mode" }, { "full", "compute full frame histograms", 0, AV_OPT_TYPE_CONST, {.i64=STATS_MODE_ALL_FRAMES}, INT_MIN, INT_MAX, FLAGS, "mode" }, { "diff", "compute histograms only for the part that differs from previous frame", 0, AV_OPT_TYPE_CONST, {.i64=STATS_MODE_DIFF_FRAMES}, INT_MIN, INT_MAX, FLAGS, "mode" }, |