diff options
author | Stefano Sabatini <stefasab@gmail.com> | 2013-02-18 14:37:30 +0100 |
---|---|---|
committer | Stefano Sabatini <stefasab@gmail.com> | 2013-02-20 19:18:17 +0100 |
commit | 2db0056f9680649730a6908687089213be4372df (patch) | |
tree | 33e62d4525973605d1e87168a8af92b21bc165ed | |
parent | 3d77a275487b64373dde3d1c9b94d5413a467979 (diff) | |
download | ffmpeg-2db0056f9680649730a6908687089213be4372df.tar.gz |
lavfi/overlay: apply minor consistency fixes
-rw-r--r-- | libavfilter/vf_overlay.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavfilter/vf_overlay.c b/libavfilter/vf_overlay.c index 857fbafb06..b4f547cba2 100644 --- a/libavfilter/vf_overlay.c +++ b/libavfilter/vf_overlay.c @@ -102,9 +102,9 @@ typedef struct { static const AVOption overlay_options[] = { { "x", "set the x expression", OFFSET(x_expr), AV_OPT_TYPE_STRING, {.str = "0"}, CHAR_MIN, CHAR_MAX, FLAGS }, { "y", "set the y expression", OFFSET(y_expr), AV_OPT_TYPE_STRING, {.str = "0"}, CHAR_MIN, CHAR_MAX, FLAGS }, - {"rgb", "force packed RGB in input and output", OFFSET(allow_packed_rgb), AV_OPT_TYPE_INT, {.i64=0}, 0, 1, FLAGS }, + { "rgb", "force packed RGB in input and output", OFFSET(allow_packed_rgb), AV_OPT_TYPE_INT, {.i64=0}, 0, 1, FLAGS }, { "shortest", "force termination when the shortest input terminates", OFFSET(shortest), AV_OPT_TYPE_INT, { .i64 = 0 }, 0, 1, FLAGS }, - {NULL}, + { NULL } }; AVFILTER_DEFINE_CLASS(overlay); |