Mercurial > libavformat.hg
annotate gxf.c @ 3112:88e032ac11e7 libavformat
Subtitle support. (untested)
author | michael |
---|---|
date | Wed, 05 Mar 2008 13:06:49 +0000 |
parents | d52c718e83f9 |
children | 6f61c3b36632 |
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" |
2282
47f5906c30cc
replaces hardcoded values by the equivalent enum definitions
aurel
parents:
2274
diff
changeset
|
23 #include "gxf.h" |
1214
4dbf4b5e675d
Support for seeking, both with and without index and correct timestamps
reimar
parents:
1207
diff
changeset
|
24 |
4dbf4b5e675d
Support for seeking, both with and without index and correct timestamps
reimar
parents:
1207
diff
changeset
|
25 typedef struct { |
4dbf4b5e675d
Support for seeking, both with and without index and correct timestamps
reimar
parents:
1207
diff
changeset
|
26 int64_t first_field; |
4dbf4b5e675d
Support for seeking, both with and without index and correct timestamps
reimar
parents:
1207
diff
changeset
|
27 int64_t last_field; |
4dbf4b5e675d
Support for seeking, both with and without index and correct timestamps
reimar
parents:
1207
diff
changeset
|
28 AVRational frames_per_second; |
4dbf4b5e675d
Support for seeking, both with and without index and correct timestamps
reimar
parents:
1207
diff
changeset
|
29 int32_t fields_per_frame; |
4dbf4b5e675d
Support for seeking, both with and without index and correct timestamps
reimar
parents:
1207
diff
changeset
|
30 } st_info_t; |
4dbf4b5e675d
Support for seeking, both with and without index and correct timestamps
reimar
parents:
1207
diff
changeset
|
31 |
1145 | 32 /** |
33 * \brief parses a packet header, extracting type and length | |
34 * \param pb ByteIOContext to read header from | |
35 * \param type detected packet type is stored here | |
36 * \param length detected packet length, excluding header is stored here | |
37 * \return 0 if header not found or contains invalid data, 1 otherwise | |
38 */ | |
39 static int parse_packet_header(ByteIOContext *pb, pkt_type_t *type, int *length) { | |
40 if (get_be32(pb)) | |
41 return 0; | |
42 if (get_byte(pb) != 1) | |
43 return 0; | |
44 *type = get_byte(pb); | |
45 *length = get_be32(pb); | |
46 if ((*length >> 24) || *length < 16) | |
47 return 0; | |
48 *length -= 16; | |
49 if (get_be32(pb)) | |
50 return 0; | |
51 if (get_byte(pb) != 0xe1) | |
52 return 0; | |
53 if (get_byte(pb) != 0xe2) | |
54 return 0; | |
55 return 1; | |
56 } | |
57 | |
58 /** | |
59 * \brief check if file starts with a PKT_MAP header | |
60 */ | |
61 static int gxf_probe(AVProbeData *p) { | |
62 static const uint8_t startcode[] = {0, 0, 0, 0, 1, 0xbc}; // start with map packet | |
63 static const uint8_t endcode[] = {0, 0, 0, 0, 0xe1, 0xe2}; | |
64 if (!memcmp(p->buf, startcode, sizeof(startcode)) && | |
65 !memcmp(&p->buf[16 - sizeof(endcode)], endcode, sizeof(endcode))) | |
66 return AVPROBE_SCORE_MAX; | |
67 return 0; | |
68 } | |
69 | |
70 /** | |
71 * \brief gets the stream index for the track with the specified id, creates new | |
72 * stream if not found | |
73 * \param stream id of stream to find / add | |
74 * \param format stream format identifier | |
75 */ | |
76 static int get_sindex(AVFormatContext *s, int id, int format) { | |
77 int i; | |
78 AVStream *st = NULL; | |
79 for (i = 0; i < s->nb_streams; i++) { | |
80 if (s->streams[i]->id == id) | |
81 return i; | |
82 } | |
83 st = av_new_stream(s, id); | |
84 switch (format) { | |
85 case 3: | |
86 case 4: | |
87 st->codec->codec_type = CODEC_TYPE_VIDEO; | |
88 st->codec->codec_id = CODEC_ID_MJPEG; | |
89 break; | |
90 case 13: | |
91 case 15: | |
92 st->codec->codec_type = CODEC_TYPE_VIDEO; | |
93 st->codec->codec_id = CODEC_ID_DVVIDEO; | |
94 break; | |
95 case 14: | |
96 case 16: | |
97 st->codec->codec_type = CODEC_TYPE_VIDEO; | |
98 st->codec->codec_id = CODEC_ID_DVVIDEO; | |
99 break; | |
100 case 11: | |
101 case 12: | |
102 case 20: | |
103 st->codec->codec_type = CODEC_TYPE_VIDEO; | |
104 st->codec->codec_id = CODEC_ID_MPEG2VIDEO; | |
2023 | 105 st->need_parsing = AVSTREAM_PARSE_HEADERS; //get keyframe flag etc. |
1145 | 106 break; |
107 case 22: | |
108 case 23: | |
109 st->codec->codec_type = CODEC_TYPE_VIDEO; | |
110 st->codec->codec_id = CODEC_ID_MPEG1VIDEO; | |
2023 | 111 st->need_parsing = AVSTREAM_PARSE_HEADERS; //get keyframe flag etc. |
1145 | 112 break; |
113 case 9: | |
114 st->codec->codec_type = CODEC_TYPE_AUDIO; | |
115 st->codec->codec_id = CODEC_ID_PCM_S24LE; | |
116 st->codec->channels = 1; | |
117 st->codec->sample_rate = 48000; | |
118 st->codec->bit_rate = 3 * 1 * 48000 * 8; | |
119 st->codec->block_align = 3 * 1; | |
120 st->codec->bits_per_sample = 24; | |
121 break; | |
122 case 10: | |
123 st->codec->codec_type = CODEC_TYPE_AUDIO; | |
124 st->codec->codec_id = CODEC_ID_PCM_S16LE; | |
125 st->codec->channels = 1; | |
126 st->codec->sample_rate = 48000; | |
127 st->codec->bit_rate = 2 * 1 * 48000 * 8; | |
128 st->codec->block_align = 2 * 1; | |
129 st->codec->bits_per_sample = 16; | |
130 break; | |
131 case 17: | |
132 st->codec->codec_type = CODEC_TYPE_AUDIO; | |
133 st->codec->codec_id = CODEC_ID_AC3; | |
134 st->codec->channels = 2; | |
135 st->codec->sample_rate = 48000; | |
136 break; | |
1539 | 137 // timecode tracks: |
138 case 7: | |
139 case 8: | |
140 case 24: | |
141 st->codec->codec_type = CODEC_TYPE_DATA; | |
142 st->codec->codec_id = CODEC_ID_NONE; | |
143 break; | |
1145 | 144 default: |
145 st->codec->codec_type = CODEC_TYPE_UNKNOWN; | |
146 st->codec->codec_id = CODEC_ID_NONE; | |
147 break; | |
148 } | |
149 return s->nb_streams - 1; | |
150 } | |
151 | |
1214
4dbf4b5e675d
Support for seeking, both with and without index and correct timestamps
reimar
parents:
1207
diff
changeset
|
152 /** |
4dbf4b5e675d
Support for seeking, both with and without index and correct timestamps
reimar
parents:
1207
diff
changeset
|
153 * \brief filters out interesting tags from material information. |
2560 | 154 * \param len length of tag section, will be adjusted to contain remaining bytes |
1214
4dbf4b5e675d
Support for seeking, both with and without index and correct timestamps
reimar
parents:
1207
diff
changeset
|
155 * \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
|
156 */ |
4dbf4b5e675d
Support for seeking, both with and without index and correct timestamps
reimar
parents:
1207
diff
changeset
|
157 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
|
158 si->first_field = AV_NOPTS_VALUE; |
4dbf4b5e675d
Support for seeking, both with and without index and correct timestamps
reimar
parents:
1207
diff
changeset
|
159 si->last_field = AV_NOPTS_VALUE; |
4dbf4b5e675d
Support for seeking, both with and without index and correct timestamps
reimar
parents:
1207
diff
changeset
|
160 while (*len >= 2) { |
4dbf4b5e675d
Support for seeking, both with and without index and correct timestamps
reimar
parents:
1207
diff
changeset
|
161 mat_tag_t tag = get_byte(pb); |
4dbf4b5e675d
Support for seeking, both with and without index and correct timestamps
reimar
parents:
1207
diff
changeset
|
162 int tlen = get_byte(pb); |
4dbf4b5e675d
Support for seeking, both with and without index and correct timestamps
reimar
parents:
1207
diff
changeset
|
163 *len -= 2; |
4dbf4b5e675d
Support for seeking, both with and without index and correct timestamps
reimar
parents:
1207
diff
changeset
|
164 if (tlen > *len) |
4dbf4b5e675d
Support for seeking, both with and without index and correct timestamps
reimar
parents:
1207
diff
changeset
|
165 return; |
4dbf4b5e675d
Support for seeking, both with and without index and correct timestamps
reimar
parents:
1207
diff
changeset
|
166 *len -= tlen; |
4dbf4b5e675d
Support for seeking, both with and without index and correct timestamps
reimar
parents:
1207
diff
changeset
|
167 if (tlen == 4) { |
4dbf4b5e675d
Support for seeking, both with and without index and correct timestamps
reimar
parents:
1207
diff
changeset
|
168 uint32_t value = get_be32(pb); |
4dbf4b5e675d
Support for seeking, both with and without index and correct timestamps
reimar
parents:
1207
diff
changeset
|
169 if (tag == MAT_FIRST_FIELD) |
4dbf4b5e675d
Support for seeking, both with and without index and correct timestamps
reimar
parents:
1207
diff
changeset
|
170 si->first_field = value; |
4dbf4b5e675d
Support for seeking, both with and without index and correct timestamps
reimar
parents:
1207
diff
changeset
|
171 else if (tag == MAT_LAST_FIELD) |
4dbf4b5e675d
Support for seeking, both with and without index and correct timestamps
reimar
parents:
1207
diff
changeset
|
172 si->last_field = value; |
4dbf4b5e675d
Support for seeking, both with and without index and correct timestamps
reimar
parents:
1207
diff
changeset
|
173 } else |
4dbf4b5e675d
Support for seeking, both with and without index and correct timestamps
reimar
parents:
1207
diff
changeset
|
174 url_fskip(pb, tlen); |
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 } |
4dbf4b5e675d
Support for seeking, both with and without index and correct timestamps
reimar
parents:
1207
diff
changeset
|
177 |
4dbf4b5e675d
Support for seeking, both with and without index and correct timestamps
reimar
parents:
1207
diff
changeset
|
178 /** |
4dbf4b5e675d
Support for seeking, both with and without index and correct timestamps
reimar
parents:
1207
diff
changeset
|
179 * \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
|
180 * \param fps fps value from tag |
4dbf4b5e675d
Support for seeking, both with and without index and correct timestamps
reimar
parents:
1207
diff
changeset
|
181 * \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
|
182 */ |
4dbf4b5e675d
Support for seeking, both with and without index and correct timestamps
reimar
parents:
1207
diff
changeset
|
183 static AVRational fps_tag2avr(int32_t fps) { |
4dbf4b5e675d
Support for seeking, both with and without index and correct timestamps
reimar
parents:
1207
diff
changeset
|
184 extern const AVRational ff_frame_rate_tab[]; |
4dbf4b5e675d
Support for seeking, both with and without index and correct timestamps
reimar
parents:
1207
diff
changeset
|
185 if (fps < 1 || fps > 9) fps = 9; |
4dbf4b5e675d
Support for seeking, both with and without index and correct timestamps
reimar
parents:
1207
diff
changeset
|
186 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
|
187 } |
4dbf4b5e675d
Support for seeking, both with and without index and correct timestamps
reimar
parents:
1207
diff
changeset
|
188 |
4dbf4b5e675d
Support for seeking, both with and without index and correct timestamps
reimar
parents:
1207
diff
changeset
|
189 /** |
4dbf4b5e675d
Support for seeking, both with and without index and correct timestamps
reimar
parents:
1207
diff
changeset
|
190 * \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
|
191 * \param fps fps value from flags |
4dbf4b5e675d
Support for seeking, both with and without index and correct timestamps
reimar
parents:
1207
diff
changeset
|
192 * \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
|
193 */ |
4dbf4b5e675d
Support for seeking, both with and without index and correct timestamps
reimar
parents:
1207
diff
changeset
|
194 static AVRational fps_umf2avr(uint32_t flags) { |
4dbf4b5e675d
Support for seeking, both with and without index and correct timestamps
reimar
parents:
1207
diff
changeset
|
195 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
|
196 {25, 1}, {30000, 1001}}; |
4dbf4b5e675d
Support for seeking, both with and without index and correct timestamps
reimar
parents:
1207
diff
changeset
|
197 int idx = av_log2((flags & 0x7c0) >> 6); |
4dbf4b5e675d
Support for seeking, both with and without index and correct timestamps
reimar
parents:
1207
diff
changeset
|
198 return map[idx]; |
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 |
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 * \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
|
203 * \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
|
204 * \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
|
205 */ |
4dbf4b5e675d
Support for seeking, both with and without index and correct timestamps
reimar
parents:
1207
diff
changeset
|
206 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
|
207 si->frames_per_second = (AVRational){0, 0}; |
4dbf4b5e675d
Support for seeking, both with and without index and correct timestamps
reimar
parents:
1207
diff
changeset
|
208 si->fields_per_frame = 0; |
4dbf4b5e675d
Support for seeking, both with and without index and correct timestamps
reimar
parents:
1207
diff
changeset
|
209 while (*len >= 2) { |
4dbf4b5e675d
Support for seeking, both with and without index and correct timestamps
reimar
parents:
1207
diff
changeset
|
210 track_tag_t tag = get_byte(pb); |
4dbf4b5e675d
Support for seeking, both with and without index and correct timestamps
reimar
parents:
1207
diff
changeset
|
211 int tlen = get_byte(pb); |
4dbf4b5e675d
Support for seeking, both with and without index and correct timestamps
reimar
parents:
1207
diff
changeset
|
212 *len -= 2; |
4dbf4b5e675d
Support for seeking, both with and without index and correct timestamps
reimar
parents:
1207
diff
changeset
|
213 if (tlen > *len) |
4dbf4b5e675d
Support for seeking, both with and without index and correct timestamps
reimar
parents:
1207
diff
changeset
|
214 return; |
4dbf4b5e675d
Support for seeking, both with and without index and correct timestamps
reimar
parents:
1207
diff
changeset
|
215 *len -= tlen; |
4dbf4b5e675d
Support for seeking, both with and without index and correct timestamps
reimar
parents:
1207
diff
changeset
|
216 if (tlen == 4) { |
4dbf4b5e675d
Support for seeking, both with and without index and correct timestamps
reimar
parents:
1207
diff
changeset
|
217 uint32_t value = get_be32(pb); |
4dbf4b5e675d
Support for seeking, both with and without index and correct timestamps
reimar
parents:
1207
diff
changeset
|
218 if (tag == TRACK_FPS) |
4dbf4b5e675d
Support for seeking, both with and without index and correct timestamps
reimar
parents:
1207
diff
changeset
|
219 si->frames_per_second = fps_tag2avr(value); |
4dbf4b5e675d
Support for seeking, both with and without index and correct timestamps
reimar
parents:
1207
diff
changeset
|
220 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
|
221 si->fields_per_frame = value; |
4dbf4b5e675d
Support for seeking, both with and without index and correct timestamps
reimar
parents:
1207
diff
changeset
|
222 } else |
4dbf4b5e675d
Support for seeking, both with and without index and correct timestamps
reimar
parents:
1207
diff
changeset
|
223 url_fskip(pb, tlen); |
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 } |
4dbf4b5e675d
Support for seeking, both with and without index and correct timestamps
reimar
parents:
1207
diff
changeset
|
226 |
4dbf4b5e675d
Support for seeking, both with and without index and correct timestamps
reimar
parents:
1207
diff
changeset
|
227 /** |
4dbf4b5e675d
Support for seeking, both with and without index and correct timestamps
reimar
parents:
1207
diff
changeset
|
228 * \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
|
229 */ |
4dbf4b5e675d
Support for seeking, both with and without index and correct timestamps
reimar
parents:
1207
diff
changeset
|
230 static void gxf_read_index(AVFormatContext *s, int pkt_len) { |
2771
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2560
diff
changeset
|
231 ByteIOContext *pb = s->pb; |
1214
4dbf4b5e675d
Support for seeking, both with and without index and correct timestamps
reimar
parents:
1207
diff
changeset
|
232 AVStream *st = s->streams[0]; |
4dbf4b5e675d
Support for seeking, both with and without index and correct timestamps
reimar
parents:
1207
diff
changeset
|
233 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
|
234 uint32_t map_cnt = get_le32(pb); |
4dbf4b5e675d
Support for seeking, both with and without index and correct timestamps
reimar
parents:
1207
diff
changeset
|
235 int i; |
4dbf4b5e675d
Support for seeking, both with and without index and correct timestamps
reimar
parents:
1207
diff
changeset
|
236 pkt_len -= 8; |
4dbf4b5e675d
Support for seeking, both with and without index and correct timestamps
reimar
parents:
1207
diff
changeset
|
237 if (map_cnt > 1000) { |
4dbf4b5e675d
Support for seeking, both with and without index and correct timestamps
reimar
parents:
1207
diff
changeset
|
238 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
|
239 map_cnt = 1000; |
4dbf4b5e675d
Support for seeking, both with and without index and correct timestamps
reimar
parents:
1207
diff
changeset
|
240 } |
4dbf4b5e675d
Support for seeking, both with and without index and correct timestamps
reimar
parents:
1207
diff
changeset
|
241 if (pkt_len < 4 * map_cnt) { |
4dbf4b5e675d
Support for seeking, both with and without index and correct timestamps
reimar
parents:
1207
diff
changeset
|
242 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
|
243 url_fskip(pb, pkt_len); |
4dbf4b5e675d
Support for seeking, both with and without index and correct timestamps
reimar
parents:
1207
diff
changeset
|
244 return; |
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 pkt_len -= 4 * map_cnt; |
4dbf4b5e675d
Support for seeking, both with and without index and correct timestamps
reimar
parents:
1207
diff
changeset
|
247 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
|
248 for (i = 0; i < map_cnt; i++) |
4dbf4b5e675d
Support for seeking, both with and without index and correct timestamps
reimar
parents:
1207
diff
changeset
|
249 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
|
250 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
|
251 url_fskip(pb, pkt_len); |
4dbf4b5e675d
Support for seeking, both with and without index and correct timestamps
reimar
parents:
1207
diff
changeset
|
252 } |
4dbf4b5e675d
Support for seeking, both with and without index and correct timestamps
reimar
parents:
1207
diff
changeset
|
253 |
1145 | 254 static int gxf_header(AVFormatContext *s, AVFormatParameters *ap) { |
2771
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2560
diff
changeset
|
255 ByteIOContext *pb = s->pb; |
1145 | 256 pkt_type_t pkt_type; |
257 int map_len; | |
258 int len; | |
1214
4dbf4b5e675d
Support for seeking, both with and without index and correct timestamps
reimar
parents:
1207
diff
changeset
|
259 AVRational main_timebase = {0, 0}; |
4dbf4b5e675d
Support for seeking, both with and without index and correct timestamps
reimar
parents:
1207
diff
changeset
|
260 st_info_t si; |
4dbf4b5e675d
Support for seeking, both with and without index and correct timestamps
reimar
parents:
1207
diff
changeset
|
261 int i; |
1145 | 262 if (!parse_packet_header(pb, &pkt_type, &map_len) || pkt_type != PKT_MAP) { |
263 av_log(s, AV_LOG_ERROR, "GXF: map packet not found\n"); | |
264 return 0; | |
265 } | |
266 map_len -= 2; | |
267 if (get_byte(pb) != 0x0e0 || get_byte(pb) != 0xff) { | |
268 av_log(s, AV_LOG_ERROR, "GXF: unknown version or invalid map preamble\n"); | |
269 return 0; | |
270 } | |
271 map_len -= 2; | |
272 len = get_be16(pb); // length of material data section | |
273 if (len > map_len) { | |
274 av_log(s, AV_LOG_ERROR, "GXF: material data longer than map data\n"); | |
275 return 0; | |
276 } | |
277 map_len -= len; | |
1214
4dbf4b5e675d
Support for seeking, both with and without index and correct timestamps
reimar
parents:
1207
diff
changeset
|
278 gxf_material_tags(pb, &len, &si); |
1145 | 279 url_fskip(pb, len); |
280 map_len -= 2; | |
281 len = get_be16(pb); // length of track description | |
282 if (len > map_len) { | |
283 av_log(s, AV_LOG_ERROR, "GXF: track description longer than map data\n"); | |
284 return 0; | |
285 } | |
286 map_len -= len; | |
287 while (len > 0) { | |
288 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
|
289 AVStream *st; |
4dbf4b5e675d
Support for seeking, both with and without index and correct timestamps
reimar
parents:
1207
diff
changeset
|
290 int idx; |
1145 | 291 len -= 4; |
292 track_type = get_byte(pb); | |
293 track_id = get_byte(pb); | |
294 track_len = get_be16(pb); | |
295 len -= track_len; | |
1214
4dbf4b5e675d
Support for seeking, both with and without index and correct timestamps
reimar
parents:
1207
diff
changeset
|
296 gxf_track_tags(pb, &track_len, &si); |
1145 | 297 url_fskip(pb, track_len); |
298 if (!(track_type & 0x80)) { | |
299 av_log(s, AV_LOG_ERROR, "GXF: invalid track type %x\n", track_type); | |
300 continue; | |
301 } | |
302 track_type &= 0x7f; | |
303 if ((track_id & 0xc0) != 0xc0) { | |
304 av_log(s, AV_LOG_ERROR, "GXF: invalid track id %x\n", track_id); | |
305 continue; | |
306 } | |
307 track_id &= 0x3f; | |
1214
4dbf4b5e675d
Support for seeking, both with and without index and correct timestamps
reimar
parents:
1207
diff
changeset
|
308 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
|
309 if (idx < 0) continue; |
4dbf4b5e675d
Support for seeking, both with and without index and correct timestamps
reimar
parents:
1207
diff
changeset
|
310 st = s->streams[idx]; |
4dbf4b5e675d
Support for seeking, both with and without index and correct timestamps
reimar
parents:
1207
diff
changeset
|
311 if (!main_timebase.num || !main_timebase.den) { |
4dbf4b5e675d
Support for seeking, both with and without index and correct timestamps
reimar
parents:
1207
diff
changeset
|
312 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
|
313 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
|
314 } |
4dbf4b5e675d
Support for seeking, both with and without index and correct timestamps
reimar
parents:
1207
diff
changeset
|
315 st->start_time = si.first_field; |
4dbf4b5e675d
Support for seeking, both with and without index and correct timestamps
reimar
parents:
1207
diff
changeset
|
316 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
|
317 st->duration = si.last_field - si.first_field; |
1145 | 318 } |
319 if (len < 0) | |
320 av_log(s, AV_LOG_ERROR, "GXF: invalid track description length specified\n"); | |
321 if (map_len) | |
322 url_fskip(pb, map_len); | |
1214
4dbf4b5e675d
Support for seeking, both with and without index and correct timestamps
reimar
parents:
1207
diff
changeset
|
323 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
|
324 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
|
325 return -1; |
4dbf4b5e675d
Support for seeking, both with and without index and correct timestamps
reimar
parents:
1207
diff
changeset
|
326 } |
4dbf4b5e675d
Support for seeking, both with and without index and correct timestamps
reimar
parents:
1207
diff
changeset
|
327 if (pkt_type == PKT_FLT) { |
4dbf4b5e675d
Support for seeking, both with and without index and correct timestamps
reimar
parents:
1207
diff
changeset
|
328 gxf_read_index(s, len); |
4dbf4b5e675d
Support for seeking, both with and without index and correct timestamps
reimar
parents:
1207
diff
changeset
|
329 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
|
330 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
|
331 return -1; |
4dbf4b5e675d
Support for seeking, both with and without index and correct timestamps
reimar
parents:
1207
diff
changeset
|
332 } |
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 if (pkt_type == PKT_UMF) { |
1763
e77907af9057
10l, forgot to skip payload description in UMF packet parsing
reimar
parents:
1539
diff
changeset
|
335 if (len >= 0x39) { |
1214
4dbf4b5e675d
Support for seeking, both with and without index and correct timestamps
reimar
parents:
1207
diff
changeset
|
336 AVRational fps; |
1763
e77907af9057
10l, forgot to skip payload description in UMF packet parsing
reimar
parents:
1539
diff
changeset
|
337 len -= 0x39; |
e77907af9057
10l, forgot to skip payload description in UMF packet parsing
reimar
parents:
1539
diff
changeset
|
338 url_fskip(pb, 5); // preamble |
e77907af9057
10l, forgot to skip payload description in UMF packet parsing
reimar
parents:
1539
diff
changeset
|
339 url_fskip(pb, 0x30); // payload description |
1214
4dbf4b5e675d
Support for seeking, both with and without index and correct timestamps
reimar
parents:
1207
diff
changeset
|
340 fps = fps_umf2avr(get_le32(pb)); |
4dbf4b5e675d
Support for seeking, both with and without index and correct timestamps
reimar
parents:
1207
diff
changeset
|
341 if (!main_timebase.num || !main_timebase.den) { |
4dbf4b5e675d
Support for seeking, both with and without index and correct timestamps
reimar
parents:
1207
diff
changeset
|
342 // 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
|
343 main_timebase.num = fps.den; |
4dbf4b5e675d
Support for seeking, both with and without index and correct timestamps
reimar
parents:
1207
diff
changeset
|
344 main_timebase.den = fps.num; |
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 } else |
4dbf4b5e675d
Support for seeking, both with and without index and correct timestamps
reimar
parents:
1207
diff
changeset
|
347 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
|
348 } else |
4dbf4b5e675d
Support for seeking, both with and without index and correct timestamps
reimar
parents:
1207
diff
changeset
|
349 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
|
350 url_fskip(pb, len); |
1767
f1186797fbf5
Use av_set_pts_info and set some arbitrary timebase fallback
reimar
parents:
1765
diff
changeset
|
351 if (!main_timebase.num || !main_timebase.den) |
f1186797fbf5
Use av_set_pts_info and set some arbitrary timebase fallback
reimar
parents:
1765
diff
changeset
|
352 main_timebase = (AVRational){1, 50}; // set some arbitrary fallback |
1214
4dbf4b5e675d
Support for seeking, both with and without index and correct timestamps
reimar
parents:
1207
diff
changeset
|
353 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
|
354 AVStream *st = s->streams[i]; |
1767
f1186797fbf5
Use av_set_pts_info and set some arbitrary timebase fallback
reimar
parents:
1765
diff
changeset
|
355 av_set_pts_info(st, 32, main_timebase.num, main_timebase.den); |
1214
4dbf4b5e675d
Support for seeking, both with and without index and correct timestamps
reimar
parents:
1207
diff
changeset
|
356 } |
1145 | 357 return 0; |
358 } | |
359 | |
1214
4dbf4b5e675d
Support for seeking, both with and without index and correct timestamps
reimar
parents:
1207
diff
changeset
|
360 #define READ_ONE() \ |
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 if (!max_interval-- || url_feof(pb)) \ |
4dbf4b5e675d
Support for seeking, both with and without index and correct timestamps
reimar
parents:
1207
diff
changeset
|
363 goto out; \ |
4dbf4b5e675d
Support for seeking, both with and without index and correct timestamps
reimar
parents:
1207
diff
changeset
|
364 tmp = tmp << 8 | get_byte(pb); \ |
4dbf4b5e675d
Support for seeking, both with and without index and correct timestamps
reimar
parents:
1207
diff
changeset
|
365 } |
4dbf4b5e675d
Support for seeking, both with and without index and correct timestamps
reimar
parents:
1207
diff
changeset
|
366 |
4dbf4b5e675d
Support for seeking, both with and without index and correct timestamps
reimar
parents:
1207
diff
changeset
|
367 /** |
4dbf4b5e675d
Support for seeking, both with and without index and correct timestamps
reimar
parents:
1207
diff
changeset
|
368 * \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
|
369 * \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
|
370 * \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
|
371 * \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
|
372 * \return timestamp of packet found |
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 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
|
375 uint32_t tmp; |
4dbf4b5e675d
Support for seeking, both with and without index and correct timestamps
reimar
parents:
1207
diff
changeset
|
376 uint64_t last_pos; |
4dbf4b5e675d
Support for seeking, both with and without index and correct timestamps
reimar
parents:
1207
diff
changeset
|
377 uint64_t last_found_pos = 0; |
4dbf4b5e675d
Support for seeking, both with and without index and correct timestamps
reimar
parents:
1207
diff
changeset
|
378 int cur_track; |
4dbf4b5e675d
Support for seeking, both with and without index and correct timestamps
reimar
parents:
1207
diff
changeset
|
379 int64_t cur_timestamp = AV_NOPTS_VALUE; |
4dbf4b5e675d
Support for seeking, both with and without index and correct timestamps
reimar
parents:
1207
diff
changeset
|
380 int len; |
2771
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2560
diff
changeset
|
381 ByteIOContext *pb = s->pb; |
1214
4dbf4b5e675d
Support for seeking, both with and without index and correct timestamps
reimar
parents:
1207
diff
changeset
|
382 pkt_type_t type; |
1221 | 383 tmp = get_be32(pb); |
1214
4dbf4b5e675d
Support for seeking, both with and without index and correct timestamps
reimar
parents:
1207
diff
changeset
|
384 start: |
4dbf4b5e675d
Support for seeking, both with and without index and correct timestamps
reimar
parents:
1207
diff
changeset
|
385 while (tmp) |
4dbf4b5e675d
Support for seeking, both with and without index and correct timestamps
reimar
parents:
1207
diff
changeset
|
386 READ_ONE(); |
4dbf4b5e675d
Support for seeking, both with and without index and correct timestamps
reimar
parents:
1207
diff
changeset
|
387 READ_ONE(); |
4dbf4b5e675d
Support for seeking, both with and without index and correct timestamps
reimar
parents:
1207
diff
changeset
|
388 if (tmp != 1) |
4dbf4b5e675d
Support for seeking, both with and without index and correct timestamps
reimar
parents:
1207
diff
changeset
|
389 goto start; |
4dbf4b5e675d
Support for seeking, both with and without index and correct timestamps
reimar
parents:
1207
diff
changeset
|
390 last_pos = url_ftell(pb); |
4dbf4b5e675d
Support for seeking, both with and without index and correct timestamps
reimar
parents:
1207
diff
changeset
|
391 url_fseek(pb, -5, SEEK_CUR); |
4dbf4b5e675d
Support for seeking, both with and without index and correct timestamps
reimar
parents:
1207
diff
changeset
|
392 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
|
393 url_fseek(pb, last_pos, SEEK_SET); |
4dbf4b5e675d
Support for seeking, both with and without index and correct timestamps
reimar
parents:
1207
diff
changeset
|
394 goto start; |
4dbf4b5e675d
Support for seeking, both with and without index and correct timestamps
reimar
parents:
1207
diff
changeset
|
395 } |
4dbf4b5e675d
Support for seeking, both with and without index and correct timestamps
reimar
parents:
1207
diff
changeset
|
396 get_byte(pb); |
4dbf4b5e675d
Support for seeking, both with and without index and correct timestamps
reimar
parents:
1207
diff
changeset
|
397 cur_track = get_byte(pb); |
4dbf4b5e675d
Support for seeking, both with and without index and correct timestamps
reimar
parents:
1207
diff
changeset
|
398 cur_timestamp = get_be32(pb); |
4dbf4b5e675d
Support for seeking, both with and without index and correct timestamps
reimar
parents:
1207
diff
changeset
|
399 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
|
400 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
|
401 url_fseek(pb, last_pos, SEEK_SET); |
4dbf4b5e675d
Support for seeking, both with and without index and correct timestamps
reimar
parents:
1207
diff
changeset
|
402 goto start; |
4dbf4b5e675d
Support for seeking, both with and without index and correct timestamps
reimar
parents:
1207
diff
changeset
|
403 } |
4dbf4b5e675d
Support for seeking, both with and without index and correct timestamps
reimar
parents:
1207
diff
changeset
|
404 out: |
4dbf4b5e675d
Support for seeking, both with and without index and correct timestamps
reimar
parents:
1207
diff
changeset
|
405 if (last_found_pos) |
4dbf4b5e675d
Support for seeking, both with and without index and correct timestamps
reimar
parents:
1207
diff
changeset
|
406 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
|
407 return cur_timestamp; |
4dbf4b5e675d
Support for seeking, both with and without index and correct timestamps
reimar
parents:
1207
diff
changeset
|
408 } |
4dbf4b5e675d
Support for seeking, both with and without index and correct timestamps
reimar
parents:
1207
diff
changeset
|
409 |
1145 | 410 static int gxf_packet(AVFormatContext *s, AVPacket *pkt) { |
2771
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2560
diff
changeset
|
411 ByteIOContext *pb = s->pb; |
1145 | 412 pkt_type_t pkt_type; |
413 int pkt_len; | |
414 while (!url_feof(pb)) { | |
415 int track_type, track_id, ret; | |
1214
4dbf4b5e675d
Support for seeking, both with and without index and correct timestamps
reimar
parents:
1207
diff
changeset
|
416 int field_nr; |
1145 | 417 if (!parse_packet_header(pb, &pkt_type, &pkt_len)) { |
418 if (!url_feof(pb)) | |
419 av_log(s, AV_LOG_ERROR, "GXF: sync lost\n"); | |
420 return -1; | |
421 } | |
1214
4dbf4b5e675d
Support for seeking, both with and without index and correct timestamps
reimar
parents:
1207
diff
changeset
|
422 if (pkt_type == PKT_FLT) { |
4dbf4b5e675d
Support for seeking, both with and without index and correct timestamps
reimar
parents:
1207
diff
changeset
|
423 gxf_read_index(s, pkt_len); |
4dbf4b5e675d
Support for seeking, both with and without index and correct timestamps
reimar
parents:
1207
diff
changeset
|
424 continue; |
4dbf4b5e675d
Support for seeking, both with and without index and correct timestamps
reimar
parents:
1207
diff
changeset
|
425 } |
1145 | 426 if (pkt_type != PKT_MEDIA) { |
427 url_fskip(pb, pkt_len); | |
428 continue; | |
429 } | |
430 if (pkt_len < 16) { | |
431 av_log(s, AV_LOG_ERROR, "GXF: invalid media packet length\n"); | |
432 continue; | |
433 } | |
434 pkt_len -= 16; | |
435 track_type = get_byte(pb); | |
436 track_id = get_byte(pb); | |
1214
4dbf4b5e675d
Support for seeking, both with and without index and correct timestamps
reimar
parents:
1207
diff
changeset
|
437 field_nr = get_be32(pb); |
1145 | 438 get_be32(pb); // field information |
439 get_be32(pb); // "timeline" field number | |
440 get_byte(pb); // flags | |
441 get_byte(pb); // reserved | |
442 // NOTE: there is also data length information in the | |
1207 | 443 // field information, it might be better to take this into account |
1145 | 444 // as well. |
445 ret = av_get_packet(pb, pkt, pkt_len); | |
446 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
|
447 pkt->dts = field_nr; |
1145 | 448 return ret; |
449 } | |
2274
b21c2af60bc9
Replace all occurrences of AVERROR_IO with AVERROR(EIO).
takis
parents:
2023
diff
changeset
|
450 return AVERROR(EIO); |
1145 | 451 } |
452 | |
1214
4dbf4b5e675d
Support for seeking, both with and without index and correct timestamps
reimar
parents:
1207
diff
changeset
|
453 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
|
454 uint64_t pos; |
4dbf4b5e675d
Support for seeking, both with and without index and correct timestamps
reimar
parents:
1207
diff
changeset
|
455 uint64_t maxlen = 100 * 1024 * 1024; |
4dbf4b5e675d
Support for seeking, both with and without index and correct timestamps
reimar
parents:
1207
diff
changeset
|
456 AVStream *st = s->streams[0]; |
4dbf4b5e675d
Support for seeking, both with and without index and correct timestamps
reimar
parents:
1207
diff
changeset
|
457 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
|
458 int64_t found; |
4dbf4b5e675d
Support for seeking, both with and without index and correct timestamps
reimar
parents:
1207
diff
changeset
|
459 int idx; |
4dbf4b5e675d
Support for seeking, both with and without index and correct timestamps
reimar
parents:
1207
diff
changeset
|
460 if (timestamp < start_time) timestamp = start_time; |
4dbf4b5e675d
Support for seeking, both with and without index and correct timestamps
reimar
parents:
1207
diff
changeset
|
461 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
|
462 AVSEEK_FLAG_ANY | AVSEEK_FLAG_BACKWARD); |
4dbf4b5e675d
Support for seeking, both with and without index and correct timestamps
reimar
parents:
1207
diff
changeset
|
463 if (idx < 0) |
4dbf4b5e675d
Support for seeking, both with and without index and correct timestamps
reimar
parents:
1207
diff
changeset
|
464 return -1; |
4dbf4b5e675d
Support for seeking, both with and without index and correct timestamps
reimar
parents:
1207
diff
changeset
|
465 pos = st->index_entries[idx].pos; |
4dbf4b5e675d
Support for seeking, both with and without index and correct timestamps
reimar
parents:
1207
diff
changeset
|
466 if (idx < st->nb_index_entries - 2) |
4dbf4b5e675d
Support for seeking, both with and without index and correct timestamps
reimar
parents:
1207
diff
changeset
|
467 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
|
468 maxlen = FFMAX(maxlen, 200 * 1024); |
2771
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2560
diff
changeset
|
469 url_fseek(s->pb, pos, SEEK_SET); |
1214
4dbf4b5e675d
Support for seeking, both with and without index and correct timestamps
reimar
parents:
1207
diff
changeset
|
470 found = gxf_resync_media(s, maxlen, -1, timestamp); |
1379 | 471 if (FFABS(found - timestamp) > 4) |
1214
4dbf4b5e675d
Support for seeking, both with and without index and correct timestamps
reimar
parents:
1207
diff
changeset
|
472 return -1; |
4dbf4b5e675d
Support for seeking, both with and without index and correct timestamps
reimar
parents:
1207
diff
changeset
|
473 return 0; |
4dbf4b5e675d
Support for seeking, both with and without index and correct timestamps
reimar
parents:
1207
diff
changeset
|
474 } |
4dbf4b5e675d
Support for seeking, both with and without index and correct timestamps
reimar
parents:
1207
diff
changeset
|
475 |
4dbf4b5e675d
Support for seeking, both with and without index and correct timestamps
reimar
parents:
1207
diff
changeset
|
476 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
|
477 int64_t *pos, int64_t pos_limit) { |
2771
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2560
diff
changeset
|
478 ByteIOContext *pb = s->pb; |
1214
4dbf4b5e675d
Support for seeking, both with and without index and correct timestamps
reimar
parents:
1207
diff
changeset
|
479 int64_t res; |
4dbf4b5e675d
Support for seeking, both with and without index and correct timestamps
reimar
parents:
1207
diff
changeset
|
480 url_fseek(pb, *pos, SEEK_SET); |
4dbf4b5e675d
Support for seeking, both with and without index and correct timestamps
reimar
parents:
1207
diff
changeset
|
481 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
|
482 *pos = url_ftell(pb); |
4dbf4b5e675d
Support for seeking, both with and without index and correct timestamps
reimar
parents:
1207
diff
changeset
|
483 return res; |
4dbf4b5e675d
Support for seeking, both with and without index and correct timestamps
reimar
parents:
1207
diff
changeset
|
484 } |
4dbf4b5e675d
Support for seeking, both with and without index and correct timestamps
reimar
parents:
1207
diff
changeset
|
485 |
1169 | 486 AVInputFormat gxf_demuxer = { |
1145 | 487 "gxf", |
488 "GXF format", | |
489 0, | |
490 gxf_probe, | |
491 gxf_header, | |
492 gxf_packet, | |
493 NULL, | |
1214
4dbf4b5e675d
Support for seeking, both with and without index and correct timestamps
reimar
parents:
1207
diff
changeset
|
494 gxf_seek, |
4dbf4b5e675d
Support for seeking, both with and without index and correct timestamps
reimar
parents:
1207
diff
changeset
|
495 gxf_read_timestamp, |
1145 | 496 }; |