diff options
author | Timothy Gu <timothygu99@gmail.com> | 2015-08-25 16:49:07 -0700 |
---|---|---|
committer | Luca Barbato <lu_zero@gentoo.org> | 2015-08-26 05:03:14 +0200 |
commit | 629d4c5b4deee08bf3a4f3ab45fd4f8b76d7aff3 (patch) | |
tree | 7dc8a21235821b5760d5654ae54d7248144bbf4b | |
parent | e176639bcbf4b580edb462a6b0650e53cd5e3c04 (diff) | |
download | ffmpeg-629d4c5b4deee08bf3a4f3ab45fd4f8b76d7aff3.tar.gz |
avconv_opt: Add missing comma
Signed-off-by: Luca Barbato <lu_zero@gentoo.org>
-rw-r--r-- | avconv_opt.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/avconv_opt.c b/avconv_opt.c index 97754169bf..b527335018 100644 --- a/avconv_opt.c +++ b/avconv_opt.c @@ -2445,7 +2445,7 @@ const OptionDef options[] = { "use HW accelerated decoding", "hwaccel name" }, { "hwaccel_device", OPT_VIDEO | OPT_STRING | HAS_ARG | OPT_EXPERT | OPT_SPEC | OPT_INPUT, { .off = OFFSET(hwaccel_devices) }, - "select a device for HW acceleration" "devicename" }, + "select a device for HW acceleration", "devicename" }, { "autorotate", HAS_ARG | OPT_BOOL | OPT_SPEC | OPT_EXPERT | OPT_INPUT, { .off = OFFSET(autorotate) }, "automatically insert correct rotate filters" }, |