34 #define FILENAME_BUF_SIZE 4096
40 #define PKTFILESUFF "_%08" PRId64 "_%02d_%010" PRId64 "_%06d_%c.bin"
44 fprintf(stderr,
"dump (up to maxpkts) AVPackets as they are demuxed by libavformat.\n");
45 fprintf(stderr,
"each packet is dumped in its own file named like `basename file.ext`_$PKTNUM_$STREAMINDEX_$STAMP_$SIZE_$FLAGS.bin\n");
46 fprintf(stderr,
"pktdumper [-nw] file [maxpkts]\n");
47 fprintf(stderr,
"-n\twrite No file at all, only demux.\n");
48 fprintf(stderr,
"-w\tWait at end of processing instead of quitting.\n");
52 int main(
int argc,
char **argv)
64 if ((argc > 1) && !strncmp(argv[1],
"-", 1)) {
65 if (strchr(argv[1],
'w'))
67 if (strchr(argv[1],
'n'))
75 maxpkts = atoi(argv[2]);
76 av_strlcpy(fntemplate, argv[1],
sizeof(fntemplate));
77 if (strrchr(argv[1],
'/'))
78 av_strlcpy(fntemplate, strrchr(argv[1],
'/') + 1,
sizeof(fntemplate));
79 if (strrchr(fntemplate,
'.'))
80 *strrchr(fntemplate,
'.') =
'\0';
81 if (strchr(fntemplate,
'%')) {
82 fprintf(stderr,
"can't use filenames containing '%%'\n");
85 if (strlen(fntemplate) +
sizeof(
PKTFILESUFF) >=
sizeof(fntemplate) - 1) {
86 fprintf(stderr,
"filename too long\n");
90 printf(
"FNTEMPLATE: '%s'\n", fntemplate);
97 fprintf(stderr,
"cannot open input: error %d\n", err);
103 fprintf(stderr,
"avformat_find_stream_info: error %d\n", err);
111 snprintf(pktfilename,
sizeof(pktfilename), fntemplate, pktnum,
117 fd = open(pktfilename, O_WRONLY | O_CREAT, 0644);
118 err = write(fd, pkt.
data, pkt.
size);
120 fprintf(stderr,
"write: error %d\n", err);
127 if (maxpkts && (pktnum >= maxpkts))