]> git.sesse.net Git - ffmpeg/commitdiff
libsvtav1: Use _ rather than - in options
authorMark Thompson <sw@jkqxz.net>
Thu, 30 Jul 2020 21:31:59 +0000 (22:31 +0100)
committerMark Thompson <sw@jkqxz.net>
Fri, 31 Jul 2020 21:30:41 +0000 (22:30 +0100)
libavcodec/libsvtav1.c

index 0c951286c7ae9088f0ffabd52e75515d3496db24..13d3adc0f89451de3be3aad3574b476ff25ad79c 100644 (file)
@@ -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},
 };