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