[FFmpeg-cvslog] lavfi/overlay: apply minor consistency fixes
Stefano Sabatini
git at videolan.org
Wed Feb 20 19:21:53 CET 2013
ffmpeg | branch: master | Stefano Sabatini <stefasab at gmail.com> | Mon Feb 18 14:37:30 2013 +0100| [2db0056f9680649730a6908687089213be4372df] | committer: Stefano Sabatini
lavfi/overlay: apply minor consistency fixes
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=2db0056f9680649730a6908687089213be4372df
---
libavfilter/vf_overlay.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/libavfilter/vf_overlay.c b/libavfilter/vf_overlay.c
index 857fbaf..b4f547c 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);
More information about the ffmpeg-cvslog
mailing list