annotate gxf.c @ 1222:a1ca540b2f00 libavformat

remove unneeded audio fourcc as well
author bcoudurier
date Wed, 02 Aug 2006 10:37:10 +0000
parents ad456312dd5e
children 088e77e1d06f
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1145
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
1 /*
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
2 * GXF demuxer.
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
3 * Copyright (c) 2006 Reimar Doeffinger.
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
4 *
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
5 * This library is free software; you can redistribute it and/or
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
6 * modify it under the terms of the GNU Lesser General Public
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
7 * License as published by the Free Software Foundation; either
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
8 * version 2 of the License, or (at your option) any later version.
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
9 *
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
10 * This library is distributed in the hope that it will be useful,
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
13 * Lesser General Public License for more details.
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
14 *
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
15 * You should have received a copy of the GNU Lesser General Public
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
16 * License along with this library; if not, write to the Free Software
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
17 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
18 */
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
19 #include "avformat.h"
1214
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
20 #include "common.h"
1145
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
21
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
22 typedef enum {
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
23 PKT_MAP = 0xbc,
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
24 PKT_MEDIA = 0xbf,
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
25 PKT_EOS = 0xfb,
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
26 PKT_FLT = 0xfc,
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
27 PKT_UMF = 0xfd
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
28 } pkt_type_t;
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
29
1214
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
30 typedef enum {
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
31 MAT_NAME = 0x40,
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
32 MAT_FIRST_FIELD = 0x41,
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
33 MAT_LAST_FIELD = 0x42,
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
34 MAT_MARK_IN = 0x43,
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
35 MAT_MARK_OUT = 0x44,
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
36 MAT_SIZE = 0x45
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
37 } mat_tag_t;
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
38
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
39 typedef enum {
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
40 TRACK_NAME = 0x4c,
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
41 TRACK_AUX = 0x4d,
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
42 TRACK_VER = 0x4e,
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
43 TRACK_MPG_AUX = 0x4f,
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
44 TRACK_FPS = 0x50,
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
45 TRACK_LINES = 0x51,
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
46 TRACK_FPF = 0x52
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
47 } track_tag_t;
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
48
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
49 typedef struct {
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
50 int64_t first_field;
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
51 int64_t last_field;
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
52 AVRational frames_per_second;
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
53 int32_t fields_per_frame;
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
54 } st_info_t;
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
55
1145
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
56 /**
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
57 * \brief parses a packet header, extracting type and length
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
58 * \param pb ByteIOContext to read header from
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
59 * \param type detected packet type is stored here
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
60 * \param length detected packet length, excluding header is stored here
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
61 * \return 0 if header not found or contains invalid data, 1 otherwise
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
62 */
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
63 static int parse_packet_header(ByteIOContext *pb, pkt_type_t *type, int *length) {
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
64 if (get_be32(pb))
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
65 return 0;
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
66 if (get_byte(pb) != 1)
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
67 return 0;
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
68 *type = get_byte(pb);
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
69 *length = get_be32(pb);
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
70 if ((*length >> 24) || *length < 16)
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
71 return 0;
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
72 *length -= 16;
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
73 if (get_be32(pb))
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
74 return 0;
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
75 if (get_byte(pb) != 0xe1)
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
76 return 0;
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
77 if (get_byte(pb) != 0xe2)
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
78 return 0;
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
79 return 1;
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
80 }
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
81
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
82 /**
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
83 * \brief check if file starts with a PKT_MAP header
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
84 */
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
85 static int gxf_probe(AVProbeData *p) {
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
86 static const uint8_t startcode[] = {0, 0, 0, 0, 1, 0xbc}; // start with map packet
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
87 static const uint8_t endcode[] = {0, 0, 0, 0, 0xe1, 0xe2};
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
88 if (p->buf_size < 16)
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
89 return 0;
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
90 if (!memcmp(p->buf, startcode, sizeof(startcode)) &&
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
91 !memcmp(&p->buf[16 - sizeof(endcode)], endcode, sizeof(endcode)))
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
92 return AVPROBE_SCORE_MAX;
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
93 return 0;
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
94 }
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
95
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
96 /**
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
97 * \brief gets the stream index for the track with the specified id, creates new
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
98 * stream if not found
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
99 * \param stream id of stream to find / add
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
100 * \param format stream format identifier
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
101 */
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
102 static int get_sindex(AVFormatContext *s, int id, int format) {
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
103 int i;
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
104 AVStream *st = NULL;
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
105 for (i = 0; i < s->nb_streams; i++) {
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
106 if (s->streams[i]->id == id)
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
107 return i;
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
108 }
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
109 st = av_new_stream(s, id);
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
110 switch (format) {
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
111 case 3:
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
112 case 4:
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
113 st->codec->codec_type = CODEC_TYPE_VIDEO;
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
114 st->codec->codec_id = CODEC_ID_MJPEG;
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
115 break;
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
116 case 13:
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
117 case 15:
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
118 st->codec->codec_type = CODEC_TYPE_VIDEO;
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
119 st->codec->codec_id = CODEC_ID_DVVIDEO;
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
120 break;
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
121 case 14:
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
122 case 16:
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
123 st->codec->codec_type = CODEC_TYPE_VIDEO;
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
124 st->codec->codec_id = CODEC_ID_DVVIDEO;
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
125 break;
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
126 case 11:
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
127 case 12:
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
128 case 20:
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
129 st->codec->codec_type = CODEC_TYPE_VIDEO;
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
130 st->codec->codec_id = CODEC_ID_MPEG2VIDEO;
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
131 break;
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
132 case 22:
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
133 case 23:
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
134 st->codec->codec_type = CODEC_TYPE_VIDEO;
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
135 st->codec->codec_id = CODEC_ID_MPEG1VIDEO;
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
136 break;
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
137 case 9:
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
138 st->codec->codec_type = CODEC_TYPE_AUDIO;
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
139 st->codec->codec_id = CODEC_ID_PCM_S24LE;
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
140 st->codec->channels = 1;
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
141 st->codec->sample_rate = 48000;
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
142 st->codec->bit_rate = 3 * 1 * 48000 * 8;
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
143 st->codec->block_align = 3 * 1;
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
144 st->codec->bits_per_sample = 24;
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
145 break;
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
146 case 10:
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
147 st->codec->codec_type = CODEC_TYPE_AUDIO;
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
148 st->codec->codec_id = CODEC_ID_PCM_S16LE;
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
149 st->codec->channels = 1;
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
150 st->codec->sample_rate = 48000;
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
151 st->codec->bit_rate = 2 * 1 * 48000 * 8;
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
152 st->codec->block_align = 2 * 1;
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
153 st->codec->bits_per_sample = 16;
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
154 break;
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
155 case 17:
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
156 st->codec->codec_type = CODEC_TYPE_AUDIO;
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
157 st->codec->codec_id = CODEC_ID_AC3;
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
158 st->codec->channels = 2;
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
159 st->codec->sample_rate = 48000;
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
160 break;
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
161 default:
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
162 st->codec->codec_type = CODEC_TYPE_UNKNOWN;
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
163 st->codec->codec_id = CODEC_ID_NONE;
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
164 break;
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
165 }
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
166 return s->nb_streams - 1;
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
167 }
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
168
1214
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
169 /**
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
170 * \brief filters out interesting tags from material information.
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
171 * \param len lenght of tag section, will be adjusted to contain remaining bytes
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
172 * \param si struct to store collected information into
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
173 */
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
174 static void gxf_material_tags(ByteIOContext *pb, int *len, st_info_t *si) {
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
175 si->first_field = AV_NOPTS_VALUE;
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
176 si->last_field = AV_NOPTS_VALUE;
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
177 while (*len >= 2) {
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
178 mat_tag_t tag = get_byte(pb);
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
179 int tlen = get_byte(pb);
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
180 *len -= 2;
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
181 if (tlen > *len)
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
182 return;
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
183 *len -= tlen;
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
184 if (tlen == 4) {
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
185 uint32_t value = get_be32(pb);
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
186 if (tag == MAT_FIRST_FIELD)
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
187 si->first_field = value;
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
188 else if (tag == MAT_LAST_FIELD)
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
189 si->last_field = value;
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
190 } else
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
191 url_fskip(pb, tlen);
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
192 }
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
193 }
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
194
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
195 /**
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
196 * \brief convert fps tag value to AVRational fps
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
197 * \param fps fps value from tag
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
198 * \return fps as AVRational, or 0 / 0 if unknown
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
199 */
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
200 static AVRational fps_tag2avr(int32_t fps) {
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
201 extern const AVRational ff_frame_rate_tab[];
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
202 if (fps < 1 || fps > 9) fps = 9;
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
203 return ff_frame_rate_tab[9 - fps]; // values have opposite order
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
204 }
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
205
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
206 /**
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
207 * \brief convert UMF attributes flags to AVRational fps
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
208 * \param fps fps value from flags
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
209 * \return fps as AVRational, or 0 / 0 if unknown
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
210 */
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
211 static AVRational fps_umf2avr(uint32_t flags) {
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
212 static const AVRational map[] = {{50, 1}, {60000, 1001}, {24, 1},
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
213 {25, 1}, {30000, 1001}};
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
214 int idx = av_log2((flags & 0x7c0) >> 6);
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
215 return map[idx];
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
216 }
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
217
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
218 /**
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
219 * \brief filters out interesting tags from track information.
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
220 * \param len length of tag section, will be adjusted to contain remaining bytes
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
221 * \param si struct to store collected information into
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
222 */
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
223 static void gxf_track_tags(ByteIOContext *pb, int *len, st_info_t *si) {
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
224 si->frames_per_second = (AVRational){0, 0};
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
225 si->fields_per_frame = 0;
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
226 while (*len >= 2) {
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
227 track_tag_t tag = get_byte(pb);
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
228 int tlen = get_byte(pb);
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
229 *len -= 2;
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
230 if (tlen > *len)
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
231 return;
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
232 *len -= tlen;
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
233 if (tlen == 4) {
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
234 uint32_t value = get_be32(pb);
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
235 if (tag == TRACK_FPS)
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
236 si->frames_per_second = fps_tag2avr(value);
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
237 else if (tag == TRACK_FPF && (value == 1 || value == 2))
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
238 si->fields_per_frame = value;
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
239 } else
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
240 url_fskip(pb, tlen);
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
241 }
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
242 }
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
243
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
244 /**
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
245 * \brief read index from FLT packet into stream 0 av_index
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
246 */
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
247 static void gxf_read_index(AVFormatContext *s, int pkt_len) {
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
248 ByteIOContext *pb = &s->pb;
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
249 AVStream *st = s->streams[0];
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
250 uint32_t fields_per_map = get_le32(pb);
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
251 uint32_t map_cnt = get_le32(pb);
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
252 int i;
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
253 pkt_len -= 8;
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
254 if (map_cnt > 1000) {
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
255 av_log(s, AV_LOG_ERROR, "GXF: too many index entries %u (%x)\n", map_cnt, map_cnt);
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
256 map_cnt = 1000;
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
257 }
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
258 if (pkt_len < 4 * map_cnt) {
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
259 av_log(s, AV_LOG_ERROR, "GXF: invalid index length\n");
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
260 url_fskip(pb, pkt_len);
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
261 return;
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
262 }
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
263 pkt_len -= 4 * map_cnt;
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
264 av_add_index_entry(st, 0, 0, 0, 0, 0);
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
265 for (i = 0; i < map_cnt; i++)
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
266 av_add_index_entry(st, (uint64_t)get_le32(pb) * 1024,
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
267 i * (uint64_t)fields_per_map + 1, 0, 0, 0);
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
268 url_fskip(pb, pkt_len);
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
269 }
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
270
1145
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
271 static int gxf_header(AVFormatContext *s, AVFormatParameters *ap) {
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
272 ByteIOContext *pb = &s->pb;
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
273 pkt_type_t pkt_type;
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
274 int map_len;
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
275 int len;
1214
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
276 AVRational main_timebase = {0, 0};
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
277 st_info_t si;
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
278 int i;
1145
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
279 if (!parse_packet_header(pb, &pkt_type, &map_len) || pkt_type != PKT_MAP) {
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
280 av_log(s, AV_LOG_ERROR, "GXF: map packet not found\n");
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
281 return 0;
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
282 }
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
283 map_len -= 2;
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
284 if (get_byte(pb) != 0x0e0 || get_byte(pb) != 0xff) {
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
285 av_log(s, AV_LOG_ERROR, "GXF: unknown version or invalid map preamble\n");
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
286 return 0;
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
287 }
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
288 map_len -= 2;
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
289 len = get_be16(pb); // length of material data section
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
290 if (len > map_len) {
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
291 av_log(s, AV_LOG_ERROR, "GXF: material data longer than map data\n");
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
292 return 0;
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
293 }
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
294 map_len -= len;
1214
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
295 gxf_material_tags(pb, &len, &si);
1145
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
296 url_fskip(pb, len);
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
297 map_len -= 2;
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
298 len = get_be16(pb); // length of track description
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
299 if (len > map_len) {
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
300 av_log(s, AV_LOG_ERROR, "GXF: track description longer than map data\n");
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
301 return 0;
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
302 }
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
303 map_len -= len;
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
304 while (len > 0) {
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
305 int track_type, track_id, track_len;
1214
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
306 AVStream *st;
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
307 int idx;
1145
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
308 len -= 4;
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
309 track_type = get_byte(pb);
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
310 track_id = get_byte(pb);
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
311 track_len = get_be16(pb);
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
312 len -= track_len;
1214
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
313 gxf_track_tags(pb, &track_len, &si);
1145
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
314 url_fskip(pb, track_len);
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
315 if (!(track_type & 0x80)) {
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
316 av_log(s, AV_LOG_ERROR, "GXF: invalid track type %x\n", track_type);
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
317 continue;
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
318 }
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
319 track_type &= 0x7f;
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
320 if ((track_id & 0xc0) != 0xc0) {
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
321 av_log(s, AV_LOG_ERROR, "GXF: invalid track id %x\n", track_id);
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
322 continue;
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
323 }
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
324 track_id &= 0x3f;
1214
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
325 idx = get_sindex(s, track_id, track_type);
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
326 if (idx < 0) continue;
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
327 st = s->streams[idx];
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
328 if (!main_timebase.num || !main_timebase.den) {
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
329 main_timebase.num = si.frames_per_second.den;
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
330 main_timebase.den = si.frames_per_second.num * si.fields_per_frame;
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
331 }
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
332 st->start_time = si.first_field;
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
333 if (si.first_field != AV_NOPTS_VALUE && si.last_field != AV_NOPTS_VALUE)
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
334 st->duration = si.last_field - si.first_field;
1145
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
335 }
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
336 if (len < 0)
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
337 av_log(s, AV_LOG_ERROR, "GXF: invalid track description length specified\n");
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
338 if (map_len)
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
339 url_fskip(pb, map_len);
1214
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
340 if (!parse_packet_header(pb, &pkt_type, &len)) {
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
341 av_log(s, AV_LOG_ERROR, "GXF: sync lost in header\n");
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
342 return -1;
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
343 }
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
344 if (pkt_type == PKT_FLT) {
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
345 gxf_read_index(s, len);
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
346 if (!parse_packet_header(pb, &pkt_type, &len)) {
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
347 av_log(s, AV_LOG_ERROR, "GXF: sync lost in header\n");
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
348 return -1;
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
349 }
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
350 }
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
351 if (pkt_type == PKT_UMF) {
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
352 if (len >= 9) {
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
353 AVRational fps;
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
354 len -= 9;
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
355 url_fskip(pb, 5);
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
356 fps = fps_umf2avr(get_le32(pb));
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
357 if (!main_timebase.num || !main_timebase.den) {
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
358 // this may not always be correct, but simply the best we can get
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
359 main_timebase.num = fps.den;
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
360 main_timebase.den = fps.num;
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
361 }
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
362 } else
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
363 av_log(s, AV_LOG_INFO, "GXF: UMF packet too short\n");
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
364 } else
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
365 av_log(s, AV_LOG_INFO, "GXF: UMF packet missing\n");
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
366 url_fskip(pb, len);
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
367 for (i = 0; i < s->nb_streams; i++) {
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
368 AVStream *st = s->streams[i];
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
369 if (main_timebase.num && main_timebase.den)
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
370 st->time_base = main_timebase;
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
371 else {
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
372 st->start_time = st->duration = AV_NOPTS_VALUE;
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
373 }
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
374 }
1145
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
375 return 0;
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
376 }
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
377
1214
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
378 #define READ_ONE() \
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
379 { \
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
380 if (!max_interval-- || url_feof(pb)) \
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
381 goto out; \
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
382 tmp = tmp << 8 | get_byte(pb); \
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
383 }
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
384
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
385 /**
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
386 * \brief resync the stream on the next media packet with specified properties
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
387 * \param max_interval how many bytes to search for matching packet at most
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
388 * \param track track id the media packet must belong to, -1 for any
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
389 * \param timestamp minimum timestamp (== field number) the packet must have, -1 for any
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
390 * \return timestamp of packet found
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
391 */
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
392 static int64_t gxf_resync_media(AVFormatContext *s, uint64_t max_interval, int track, int timestamp) {
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
393 uint32_t tmp;
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
394 uint64_t last_pos;
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
395 uint64_t last_found_pos = 0;
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
396 int cur_track;
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
397 int64_t cur_timestamp = AV_NOPTS_VALUE;
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
398 int len;
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
399 ByteIOContext *pb = &s->pb;
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
400 pkt_type_t type;
1221
ad456312dd5e Minor resync optimization
reimar
parents: 1219
diff changeset
401 tmp = get_be32(pb);
1214
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
402 start:
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
403 while (tmp)
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
404 READ_ONE();
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
405 READ_ONE();
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
406 if (tmp != 1)
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
407 goto start;
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
408 last_pos = url_ftell(pb);
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
409 url_fseek(pb, -5, SEEK_CUR);
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
410 if (!parse_packet_header(pb, &type, &len) || type != PKT_MEDIA) {
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
411 url_fseek(pb, last_pos, SEEK_SET);
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
412 goto start;
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
413 }
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
414 get_byte(pb);
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
415 cur_track = get_byte(pb);
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
416 cur_timestamp = get_be32(pb);
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
417 last_found_pos = url_ftell(pb) - 16 - 6;
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
418 if ((track >= 0 && track != cur_track) || (timestamp >= 0 && timestamp > cur_timestamp)) {
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
419 url_fseek(pb, last_pos, SEEK_SET);
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
420 goto start;
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
421 }
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
422 out:
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
423 if (last_found_pos)
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
424 url_fseek(pb, last_found_pos, SEEK_SET);
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
425 return cur_timestamp;
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
426 }
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
427
1145
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
428 static int gxf_packet(AVFormatContext *s, AVPacket *pkt) {
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
429 ByteIOContext *pb = &s->pb;
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
430 pkt_type_t pkt_type;
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
431 int pkt_len;
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
432 while (!url_feof(pb)) {
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
433 int track_type, track_id, ret;
1214
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
434 int field_nr;
1145
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
435 if (!parse_packet_header(pb, &pkt_type, &pkt_len)) {
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
436 if (!url_feof(pb))
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
437 av_log(s, AV_LOG_ERROR, "GXF: sync lost\n");
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
438 return -1;
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
439 }
1214
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
440 if (pkt_type == PKT_FLT) {
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
441 gxf_read_index(s, pkt_len);
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
442 continue;
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
443 }
1145
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
444 if (pkt_type != PKT_MEDIA) {
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
445 url_fskip(pb, pkt_len);
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
446 continue;
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
447 }
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
448 if (pkt_len < 16) {
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
449 av_log(s, AV_LOG_ERROR, "GXF: invalid media packet length\n");
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
450 continue;
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
451 }
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
452 pkt_len -= 16;
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
453 track_type = get_byte(pb);
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
454 track_id = get_byte(pb);
1214
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
455 field_nr = get_be32(pb);
1145
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
456 get_be32(pb); // field information
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
457 get_be32(pb); // "timeline" field number
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
458 get_byte(pb); // flags
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
459 get_byte(pb); // reserved
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
460 // NOTE: there is also data length information in the
1207
633aaf52d0c2 Fix typo in comment
reimar
parents: 1172
diff changeset
461 // field information, it might be better to take this into account
1145
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
462 // as well.
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
463 ret = av_get_packet(pb, pkt, pkt_len);
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
464 pkt->stream_index = get_sindex(s, track_id, track_type);
1214
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
465 pkt->pts = field_nr;
1145
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
466 return ret;
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
467 }
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
468 return AVERROR_IO;
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
469 }
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
470
1214
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
471 static int gxf_seek(AVFormatContext *s, int stream_index, int64_t timestamp, int flags) {
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
472 uint64_t pos;
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
473 uint64_t maxlen = 100 * 1024 * 1024;
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
474 AVStream *st = s->streams[0];
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
475 int64_t start_time = s->streams[stream_index]->start_time;
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
476 int64_t found;
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
477 int idx;
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
478 if (timestamp < start_time) timestamp = start_time;
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
479 idx = av_index_search_timestamp(st, timestamp - start_time,
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
480 AVSEEK_FLAG_ANY | AVSEEK_FLAG_BACKWARD);
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
481 if (idx < 0)
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
482 return -1;
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
483 pos = st->index_entries[idx].pos;
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
484 if (idx < st->nb_index_entries - 2)
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
485 maxlen = st->index_entries[idx + 2].pos - pos;
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
486 maxlen = FFMAX(maxlen, 200 * 1024);
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
487 url_fseek(&s->pb, pos, SEEK_SET);
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
488 found = gxf_resync_media(s, maxlen, -1, timestamp);
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
489 if (ABS(found - timestamp) > 4)
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
490 return -1;
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
491 return 0;
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
492 }
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
493
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
494 static int64_t gxf_read_timestamp(AVFormatContext *s, int stream_index,
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
495 int64_t *pos, int64_t pos_limit) {
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
496 ByteIOContext *pb = &s->pb;
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
497 int64_t res;
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
498 url_fseek(pb, *pos, SEEK_SET);
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
499 res = gxf_resync_media(s, pos_limit - *pos, -1, -1);
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
500 *pos = url_ftell(pb);
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
501 return res;
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
502 }
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
503
1169
d18cc9a1fd02 allow individual selection of muxers and demuxers
mru
parents: 1167
diff changeset
504 AVInputFormat gxf_demuxer = {
1145
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
505 "gxf",
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
506 "GXF format",
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
507 0,
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
508 gxf_probe,
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
509 gxf_header,
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
510 gxf_packet,
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
511 NULL,
1214
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
512 gxf_seek,
4dbf4b5e675d Support for seeking, both with and without index and correct timestamps
reimar
parents: 1207
diff changeset
513 gxf_read_timestamp,
1145
95054d76b7e6 add GXF demuxer
reimar
parents:
diff changeset
514 };