]> git.sesse.net Git - ffmpeg/blob - libavformat/seek-test.c
cmdutils: Rename read_file to cmdutils_read_file
[ffmpeg] / libavformat / seek-test.c
1 /*
2  * Copyright (c) 2003 Fabrice Bellard
3  * Copyright (c) 2007 Michael Niedermayer
4  *
5  * This file is part of Libav.
6  *
7  * Libav is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Lesser General Public
9  * License as published by the Free Software Foundation; either
10  * version 2.1 of the License, or (at your option) any later version.
11  *
12  * Libav is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * Lesser General Public License for more details.
16  *
17  * You should have received a copy of the GNU Lesser General Public
18  * License along with Libav; if not, write to the Free Software
19  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20  */
21
22 #include <stdint.h>
23 #include <stdlib.h>
24 #include <stdio.h>
25 #include <string.h>
26
27 #include "libavutil/common.h"
28 #include "libavutil/mathematics.h"
29 #include "libavformat/avformat.h"
30
31 #undef exit
32 #undef printf
33 #undef fprintf
34
35 static char buffer[20];
36
37 static const char *ret_str(int v)
38 {
39     switch (v) {
40     case AVERROR_EOF:     return "-EOF";
41     case AVERROR(EIO):    return "-EIO";
42     case AVERROR(ENOMEM): return "-ENOMEM";
43     case AVERROR(EINVAL): return "-EINVAL";
44     default:
45         snprintf(buffer, sizeof(buffer), "%2d", v);
46         return buffer;
47     }
48 }
49
50 static void ts_str(char buffer[60], int64_t ts, AVRational base)
51 {
52     double tsval;
53     if (ts == AV_NOPTS_VALUE) {
54         strcpy(buffer, " NOPTS   ");
55         return;
56     }
57     tsval = ts * av_q2d(base);
58     snprintf(buffer, 60, "%9f", tsval);
59 }
60
61 int main(int argc, char **argv)
62 {
63     const char *filename;
64     AVFormatContext *ic = NULL;
65     int i, ret, stream_id;
66     int64_t timestamp;
67     AVDictionary *format_opts = NULL;
68
69     av_dict_set(&format_opts, "channels", "1", 0);
70     av_dict_set(&format_opts, "sample_rate", "22050", 0);
71
72     /* initialize libavcodec, and register all codecs and formats */
73     av_register_all();
74
75     if (argc != 2) {
76         printf("usage: %s input_file\n"
77                "\n", argv[0]);
78         exit(1);
79     }
80
81     filename = argv[1];
82
83     ret = avformat_open_input(&ic, filename, NULL, &format_opts);
84     av_dict_free(&format_opts);
85     if (ret < 0) {
86         fprintf(stderr, "cannot open %s\n", filename);
87         exit(1);
88     }
89
90     ret = avformat_find_stream_info(ic, NULL);
91     if (ret < 0) {
92         fprintf(stderr, "%s: could not find codec parameters\n", filename);
93         exit(1);
94     }
95
96     for(i=0; ; i++){
97         AVPacket pkt;
98         AVStream *av_uninit(st);
99         char ts_buf[60];
100
101         memset(&pkt, 0, sizeof(pkt));
102         if(ret>=0){
103             ret= av_read_frame(ic, &pkt);
104             if(ret>=0){
105                 char dts_buf[60];
106                 st= ic->streams[pkt.stream_index];
107                 ts_str(dts_buf, pkt.dts, st->time_base);
108                 ts_str(ts_buf,  pkt.pts, st->time_base);
109                 printf("ret:%-10s st:%2d flags:%d dts:%s pts:%s pos:%7" PRId64 " size:%6d", ret_str(ret), pkt.stream_index, pkt.flags, dts_buf, ts_buf, pkt.pos, pkt.size);
110                 av_free_packet(&pkt);
111             } else
112                 printf("ret:%s", ret_str(ret)); // necessary to avoid trailing whitespace
113             printf("\n");
114         }
115
116         if(i>25) break;
117
118         stream_id= (i>>1)%(ic->nb_streams+1) - 1;
119         timestamp= (i*19362894167LL) % (4*AV_TIME_BASE) - AV_TIME_BASE;
120         if(stream_id>=0){
121             st= ic->streams[stream_id];
122             timestamp= av_rescale_q(timestamp, AV_TIME_BASE_Q, st->time_base);
123         }
124         //FIXME fully test the new seek API
125         if(i&1) ret = avformat_seek_file(ic, stream_id, INT64_MIN, timestamp, timestamp, 0);
126         else    ret = avformat_seek_file(ic, stream_id, timestamp, timestamp, INT64_MAX, 0);
127         ts_str(ts_buf, timestamp, stream_id < 0 ? AV_TIME_BASE_Q : st->time_base);
128         printf("ret:%-10s st:%2d flags:%d  ts:%s\n", ret_str(ret), stream_id, i&1, ts_buf);
129     }
130
131     av_close_input_file(ic);
132
133     return 0;
134 }