diff options
author | Gyan Doshi <ffmpeg@gyani.pro> | 2021-02-05 17:29:59 +0530 |
---|---|---|
committer | Gyan Doshi <ffmpeg@gyani.pro> | 2021-02-05 17:29:59 +0530 |
commit | 5c8d4c4fac6e3db67d9116d978c1a9857c6f44bf (patch) | |
tree | 405365b0f54db1d6fb88c54180b493ab3f8e134a | |
parent | 81c462ad95f143837a6a21126117515577f0977b (diff) | |
download | ffmpeg-5c8d4c4fac6e3db67d9116d978c1a9857c6f44bf.tar.gz |
avfilter/drawbox: fix formatting after d64cbd4fda
-rw-r--r-- | libavfilter/vf_drawbox.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/vf_drawbox.c b/libavfilter/vf_drawbox.c index 21d520e529..6151db4d22 100644 --- a/libavfilter/vf_drawbox.c +++ b/libavfilter/vf_drawbox.c @@ -322,7 +322,7 @@ static const AVOption drawbox_options[] = { { "c", "set color of the box", OFFSET(color_str), AV_OPT_TYPE_STRING, { .str = "black" }, 0, 0, FLAGS }, { "thickness", "set the box thickness", OFFSET(t_expr), AV_OPT_TYPE_STRING, { .str="3" }, 0, 0, FLAGS }, { "t", "set the box thickness", OFFSET(t_expr), AV_OPT_TYPE_STRING, { .str="3" }, 0, 0, FLAGS }, - { "replace", "replace color & alpha", OFFSET(replace), AV_OPT_TYPE_BOOL, { .i64=0 }, 0, 1, FLAGS }, + { "replace", "replace color & alpha", OFFSET(replace), AV_OPT_TYPE_BOOL, { .i64=0 }, 0, 1, FLAGS }, { NULL } }; |