mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-21 10:55:51 +02:00
avcodec/h26[45]_metadata_bsf: Fix range of chroma_sample_loc_type
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
This commit is contained in:
parent
12392ffee5
commit
75a2d25a6f
@ -625,7 +625,7 @@ static const AVOption h264_metadata_options[] = {
|
||||
|
||||
{ "chroma_sample_loc_type", "Set chroma sample location type (figure E-1)",
|
||||
OFFSET(chroma_sample_loc_type), AV_OPT_TYPE_INT,
|
||||
{ .i64 = -1 }, -1, 6, FLAGS },
|
||||
{ .i64 = -1 }, -1, 5, FLAGS },
|
||||
|
||||
{ "tick_rate", "Set VUI tick rate (time_scale / num_units_in_tick)",
|
||||
OFFSET(tick_rate), AV_OPT_TYPE_RATIONAL,
|
||||
|
@ -437,7 +437,7 @@ static const AVOption h265_metadata_options[] = {
|
||||
|
||||
{ "chroma_sample_loc_type", "Set chroma sample location type (figure E-1)",
|
||||
OFFSET(chroma_sample_loc_type), AV_OPT_TYPE_INT,
|
||||
{ .i64 = -1 }, -1, 6, FLAGS },
|
||||
{ .i64 = -1 }, -1, 5, FLAGS },
|
||||
|
||||
{ "tick_rate",
|
||||
"Set VPS and VUI tick rate (time_scale / num_units_in_tick)",
|
||||
|
Loading…
Reference in New Issue
Block a user