diff options
author | Diego Biurrun <diego@biurrun.de> | 2005-01-03 00:36:26 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2005-01-03 00:36:26 +0000 |
commit | bf69c4e55f2c75f4399e3bf39012b392c6857f9b (patch) | |
tree | 059b573d8521a406771a4348ec666f7b128f0804 | |
parent | 281a74da6022ccfb854c1441ac6323f7d75afbdc (diff) | |
download | ffmpeg-bf69c4e55f2c75f4399e3bf39012b392c6857f9b.tar.gz |
Make -pphelp output consistent with the other instances of -xxx help.
Originally committed as revision 3792 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavcodec/libpostproc/postprocess.c | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/libavcodec/libpostproc/postprocess.c b/libavcodec/libpostproc/postprocess.c index 1713573d3d..1cccfcfb04 100644 --- a/libavcodec/libpostproc/postprocess.c +++ b/libavcodec/libpostproc/postprocess.c @@ -719,13 +719,7 @@ static inline void postProcess(uint8_t src[], int srcStride, uint8_t dst[], int /* -pp Command line Help */ char *pp_help= -"<filterName>[:<option>[:<option>...]][[,|/][-]<filterName>[:<option>...]]...\n" -"long form example:\n" -"vdeblock:autoq/hdeblock:autoq/linblenddeint default,-vdeblock\n" -"short form example:\n" -"vb:a/hb:a/lb de,-vb\n" -"more examples:\n" -"tn:64:128:256\n" +"Available postprocessing filters:\n" "Filters Options\n" "short long name short long option Description\n" "* * a autoq CPU power dependent enabler\n" @@ -754,6 +748,14 @@ char *pp_help= "tn tmpnoise (3 threshold) temporal noise reducer\n" " 1. <= 2. <= 3. larger -> stronger filtering\n" "fq forceQuant <quantizer> force quantizer\n" +"Usage:\n" +"<filterName>[:<option>[:<option>...]][[,|/][-]<filterName>[:<option>...]]...\n" +"long form example:\n" +"vdeblock:autoq/hdeblock:autoq/linblenddeint default,-vdeblock\n" +"short form example:\n" +"vb:a/hb:a/lb de,-vb\n" +"more examples:\n" +"tn:64:128:256\n" ; pp_mode_t *pp_get_mode_by_name_and_quality(char *name, int quality) |