pktdumper.c 4.13 KB
Newer Older
1 2 3
/*
 * Copyright (c) 2005 Francois Revol
 *
4
 * This file is part of Libav.
5
 *
6
 * Libav is free software; you can redistribute it and/or
7 8 9 10
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
11
 * Libav is distributed in the hope that it will be useful,
12 13 14 15 16
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
17
 * License along with Libav; if not, write to the Free Software
18 19 20
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
 */

21
#include "config.h"
22 23 24 25 26
#include <limits.h>
#include <fcntl.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
27
#if HAVE_UNISTD_H
28
#include <unistd.h>
29 30 31 32
#endif
#if HAVE_IO_H
#include <io.h>
#endif
33

34
#include "libavutil/avstring.h"
35
#include "libavutil/time.h"
36
#include "libavformat/avformat.h"
37

38
#define FILENAME_BUF_SIZE 4096
39
#define PKTFILESUFF "_%08" PRId64 "_%02d_%010" PRId64 "_%06d_%c.bin"
40 41 42

static int usage(int ret)
{
43 44 45
    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");
46 47 48
    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");
49
    return ret;
50 51 52 53
}

int main(int argc, char **argv)
{
54 55
    char fntemplate[FILENAME_BUF_SIZE];
    char pktfilename[FILENAME_BUF_SIZE];
56
    AVFormatContext *fctx = NULL;
57
    AVPacket pkt;
58
    int64_t pktnum  = 0;
59
    int64_t maxpkts = 0;
60 61
    int donotquit   = 0;
    int nowrite     = 0;
62
    int err;
63

64 65
    if ((argc > 1) && !strncmp(argv[1], "-", 1)) {
        if (strchr(argv[1], 'w'))
Diego Biurrun's avatar
Diego Biurrun committed
66
            donotquit = 1;
67 68 69 70 71
        if (strchr(argv[1], 'n'))
            nowrite = 1;
        argv++;
        argc--;
    }
72 73 74 75
    if (argc < 2)
        return usage(1);
    if (argc > 2)
        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 80 81
    if (strrchr(fntemplate, '.'))
        *strrchr(fntemplate, '.') = '\0';
    if (strchr(fntemplate, '%')) {
82
        fprintf(stderr, "cannot use filenames containing '%%'\n");
83 84
        return usage(1);
    }
85
    if (strlen(fntemplate) + sizeof(PKTFILESUFF) >= sizeof(fntemplate) - 1) {
86 87 88 89 90
        fprintf(stderr, "filename too long\n");
        return usage(1);
    }
    strcat(fntemplate, PKTFILESUFF);
    printf("FNTEMPLATE: '%s'\n", fntemplate);
91

92 93
    // register all file formats
    av_register_all();
94

95
    err = avformat_open_input(&fctx, argv[1], NULL, NULL);
96
    if (err < 0) {
97
        fprintf(stderr, "cannot open input: error %d\n", err);
98 99
        return 1;
    }
100

101
    err = avformat_find_stream_info(fctx, NULL);
102
    if (err < 0) {
103
        fprintf(stderr, "avformat_find_stream_info: error %d\n", err);
104 105
        return 1;
    }
106

107
    av_init_packet(&pkt);
108

109 110
    while ((err = av_read_frame(fctx, &pkt)) >= 0) {
        int fd;
111
        snprintf(pktfilename, sizeof(pktfilename), fntemplate, pktnum,
112 113 114 115
                 pkt.stream_index, pkt.pts, pkt.size,
                 (pkt.flags & AV_PKT_FLAG_KEY) ? 'K' : '_');
        printf(PKTFILESUFF "\n", pktnum, pkt.stream_index, pkt.pts, pkt.size,
               (pkt.flags & AV_PKT_FLAG_KEY) ? 'K' : '_');
116
        if (!nowrite) {
117
            fd  = open(pktfilename, O_WRONLY | O_CREAT, 0644);
118 119 120 121 122
            err = write(fd, pkt.data, pkt.size);
            if (err < 0) {
                fprintf(stderr, "write: error %d\n", err);
                return 1;
            }
123 124
            close(fd);
        }
125
        av_packet_unref(&pkt);
126 127 128 129
        pktnum++;
        if (maxpkts && (pktnum >= maxpkts))
            break;
    }
130

131
    avformat_close_input(&fctx);
132

Diego Biurrun's avatar
Diego Biurrun committed
133
    while (donotquit)
134
        av_usleep(60 * 1000000);
135

136
    return 0;
137
}