diff options
author | Stefano Sabatini <stefasab@gmail.com> | 2012-09-11 22:51:46 +0200 |
---|---|---|
committer | Stefano Sabatini <stefasab@gmail.com> | 2012-09-11 22:56:35 +0200 |
commit | 30a265f058692f6c5230a73b1870a3dab5b5c9ee (patch) | |
tree | 3cd90228d595707ec6daf7919f2fec691a7f220c /libavdevice | |
parent | 749ddc14fc9ebcef09965dfd98c8bf2505dc3b58 (diff) | |
download | ffmpeg-30a265f058692f6c5230a73b1870a3dab5b5c9ee.tar.gz |
lavd/lavfi: apply stylistic fixes to the options help fields
Diffstat (limited to 'libavdevice')
-rw-r--r-- | libavdevice/lavfi.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavdevice/lavfi.c b/libavdevice/lavfi.c index 780d9a3ad3..c75baf91e5 100644 --- a/libavdevice/lavfi.c +++ b/libavdevice/lavfi.c @@ -334,8 +334,8 @@ static int lavfi_read_packet(AVFormatContext *avctx, AVPacket *pkt) #define DEC AV_OPT_FLAG_DECODING_PARAM static const AVOption options[] = { - { "graph", "Libavfilter graph", OFFSET(graph_str), AV_OPT_TYPE_STRING, {.str = NULL }, 0, 0, DEC }, - { "dumpgraph", "Dump graph to stderr", OFFSET(dump_graph), AV_OPT_TYPE_STRING, {.str = NULL}, 0, 0, DEC }, + { "graph", "set libavfilter graph", OFFSET(graph_str), AV_OPT_TYPE_STRING, {.str = NULL}, 0, 0, DEC }, + { "dumpgraph", "dump graph to stderr", OFFSET(dump_graph), AV_OPT_TYPE_STRING, {.str = NULL}, 0, 0, DEC }, { NULL }, }; |