diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2013-07-07 11:35:59 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2013-07-07 11:35:59 +0200 |
commit | b7ce510003275460a9b02361a8c98bfec6fa2945 (patch) | |
tree | 724100234911165f50bce4621ba25cb5eb5e5d9e /tools/pktdumper.c | |
parent | 7bd417c22a90a712df57cacfa5b09c1fb4f6183a (diff) | |
parent | a4baf96abd64cda68e3e4692b182bdf60745a14d (diff) | |
download | ffmpeg-b7ce510003275460a9b02361a8c98bfec6fa2945.tar.gz |
Merge commit 'a4baf96abd64cda68e3e4692b182bdf60745a14d'
* commit 'a4baf96abd64cda68e3e4692b182bdf60745a14d':
avprobe: rename the prettyprint structures
tools: Wording and formatting cosmetics
Conflicts:
avprobe.c
Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'tools/pktdumper.c')
-rw-r--r-- | tools/pktdumper.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/tools/pktdumper.c b/tools/pktdumper.c index 920397bcae..61cb5cc8ee 100644 --- a/tools/pktdumper.c +++ b/tools/pktdumper.c @@ -31,18 +31,18 @@ #include <io.h> #endif -#define FILENAME_BUF_SIZE 4096 - #include "libavutil/avstring.h" #include "libavutil/time.h" #include "libavformat/avformat.h" +#define FILENAME_BUF_SIZE 4096 #define PKTFILESUFF "_%08" PRId64 "_%02d_%010" PRId64 "_%06d_%c.bin" static int usage(int ret) { - fprintf(stderr, "dump (up to maxpkts) AVPackets as they are demuxed by libavformat.\n"); - fprintf(stderr, "each packet is dumped in its own file named like `basename file.ext`_$PKTNUM_$STREAMINDEX_$STAMP_$SIZE_$FLAGS.bin\n"); + fprintf(stderr, "Dump (up to maxpkts) AVPackets as they are demuxed by libavformat.\n"); + fprintf(stderr, "Each packet is dumped in its own file named like\n"); + fprintf(stderr, "$(basename file.ext)_$PKTNUM_$STREAMINDEX_$STAMP_$SIZE_$FLAGS.bin\n"); fprintf(stderr, "pktdumper [-nw] file [maxpkts]\n"); fprintf(stderr, "-n\twrite No file at all, only demux.\n"); fprintf(stderr, "-w\tWait at end of processing instead of quitting.\n"); @@ -79,7 +79,7 @@ int main(int argc, char **argv) if (strrchr(fntemplate, '.')) *strrchr(fntemplate, '.') = '\0'; if (strchr(fntemplate, '%')) { - fprintf(stderr, "can't use filenames containing '%%'\n"); + fprintf(stderr, "cannot use filenames containing '%%'\n"); return usage(1); } if (strlen(fntemplate) + sizeof(PKTFILESUFF) >= sizeof(fntemplate) - 1) { |