diff options
author | Mark Thompson <sw@jkqxz.net> | 2020-07-30 22:31:59 +0100 |
---|---|---|
committer | Mark Thompson <sw@jkqxz.net> | 2020-07-31 22:30:41 +0100 |
commit | ad7aa1e8e7e60d3db1264c16c8cd891782ab8887 (patch) | |
tree | 5864bf926527856f192cebd76444a0927dc4663d /libavcodec/libsvtav1.c | |
parent | 30a4bdbc1f4853c1deb2cd551d8c661f7b067503 (diff) | |
download | ffmpeg-ad7aa1e8e7e60d3db1264c16c8cd891782ab8887.tar.gz |
libsvtav1: Use _ rather than - in options
Diffstat (limited to 'libavcodec/libsvtav1.c')
-rw-r--r-- | libavcodec/libsvtav1.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/libsvtav1.c b/libavcodec/libsvtav1.c index 0c951286c7..13d3adc0f8 100644 --- a/libavcodec/libsvtav1.c +++ b/libavcodec/libsvtav1.c @@ -536,8 +536,8 @@ static const AVOption options[] = { { "sc_detection", "Scene change detection", OFFSET(scd), AV_OPT_TYPE_BOOL, { .i64 = 0 }, 0, 1, VE }, - { "tile-columns", "Log2 of number of tile columns to use", OFFSET(tile_columns), AV_OPT_TYPE_INT, {.i64 = 0}, 0, 4, VE}, - { "tile-rows", "Log2 of number of tile rows to use", OFFSET(tile_rows), AV_OPT_TYPE_INT, {.i64 = 0}, 0, 6, VE}, + { "tile_columns", "Log2 of number of tile columns to use", OFFSET(tile_columns), AV_OPT_TYPE_INT, {.i64 = 0}, 0, 4, VE}, + { "tile_rows", "Log2 of number of tile rows to use", OFFSET(tile_rows), AV_OPT_TYPE_INT, {.i64 = 0}, 0, 6, VE}, {NULL}, }; |