1 /*
2 * GXF demuxer.
3 * Copyright (c) 2006 Reimar Doeffinger
4 *
5 * This file is part of FFmpeg.
6 *
7 * FFmpeg is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2.1 of the License, or (at your option) any later version.
11 *
12 * FFmpeg is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
16 *
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with FFmpeg; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20 */
21
22 #include <inttypes.h>
23
30
37 };
38
39 /**
40 * @brief parse gxf timecode and add it to metadata
41 */
43 {
45 int field = timecode & 0xff;
47 int second = (timecode >> 8) & 0xff;
48 int minute = (timecode >> 16) & 0xff;
49 int hour = (timecode >> 24) & 0x1f;
50 int drop = (timecode >> 29) & 1;
51 // bit 30: color_frame, unused
52 // ignore invalid time code
53 if (timecode >> 31)
54 return 0;
56 hour, minute, second, drop ?
';' :
':',
frame);
58 }
59
60 /**
61 * @brief parses a packet header, extracting type and length
62 * @param pb AVIOContext to read header from
63 * @param type detected packet type is stored here
64 * @param length detected packet length, excluding header is stored here
65 * @return 0 if header not found or contains invalid data, 1 otherwise
66 */
69 return 0;
71 return 0;
74 if ((*length >> 24) || *length < 16)
75 return 0;
76 *length -= 16;
78 return 0;
80 return 0;
82 return 0;
83 return 1;
84 }
85
86 /**
87 * @brief check if file starts with a PKT_MAP header
88 */
90 static const uint8_t startcode[] = {0, 0, 0, 0, 1, 0xbc}; // start with map packet
91 static const uint8_t endcode[] = {0, 0, 0, 0, 0xe1, 0xe2};
92 if (!memcmp(p->
buf, startcode,
sizeof(startcode)) &&
93 !memcmp(&p->
buf[16 -
sizeof(endcode)], endcode,
sizeof(endcode)))
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 id id of stream to find / add
102 * @param format stream format identifier
103 */
112 if (!st)
117 case 3:
118 case 4:
121 break;
122 case 13:
123 case 14:
124 case 15:
125 case 16:
126 case 25:
129 break;
130 case 11:
131 case 12:
132 case 20:
136 break;
137 case 22:
138 case 23:
142 break;
143 case 9:
151 break;
152 case 10:
160 break;
161 case 17:
166 break;
167 case 26: /* AVCi50 / AVCi100 (AVC Intra) */
168 case 29: /* AVCHD */
172 break;
173 // timecode tracks:
174 case 7:
175 case 8:
176 case 24:
179 break;
180 case 30:
183 break;
184 default:
187 break;
188 }
189 return s->nb_streams - 1;
190 }
191
192 /**
193 * @brief filters out interesting tags from material information.
194 * @param len length of tag section, will be adjusted to contain remaining bytes
195 * @param si struct to store collected information into
196 */
205 return;
207 if (tlen == 4) {
213 } else
215 }
216 }
217
219 { 60, 1},
220 {60000, 1001},
221 { 50, 1},
222 { 30, 1},
223 {30000, 1001},
224 { 25, 1},
225 { 24, 1},
226 {24000, 1001},
227 { 0, 0},
228 };
229
230 /**
231 * @brief convert fps tag value to AVRational fps
232 * @param fps fps value from tag
233 * @return fps as AVRational, or 0 / 0 if unknown
234 */
236 if (fps < 1 || fps > 9) fps = 9;
238 }
239
240 /**
241 * @brief convert UMF attributes flags to AVRational fps
242 * @param flags UMF flags to convert
243 * @return fps as AVRational, or 0 / 0 if unknown
244 */
246 static const AVRational map[] = {{50, 1}, {60000, 1001}, {24, 1},
247 {25, 1}, {30000, 1001}};
250 }
251
252 /**
253 * @brief filters out interesting tags from track information.
254 * @param len length of tag section, will be adjusted to contain remaining bytes
255 * @param si struct to store collected information into
256 */
266 return;
268 if (tlen == 4) {
276 else
278 }
279 }
280
281 /**
282 * @brief read index from FLT packet into stream 0 av_index
283 */
287 uint32_t fields_per_map, map_cnt;
289 if (pkt_len < 8)
290 return;
293 pkt_len -= 8;
296 return;
297 }
299 if (map_cnt > 1000) {
301 "too many index entries %"PRIu32" (%"PRIx32")\n",
302 map_cnt, map_cnt);
303 map_cnt = 1000;
304 }
305 if (pkt_len < 4 * map_cnt) {
308 return;
309 }
310 pkt_len -= 4 * map_cnt;
312 for (
i = 0;
i < map_cnt;
i++)
314 i * (uint64_t)fields_per_map + 1, 0, 0, 0);
316 }
317
321 int map_len;
328 return 0;
329 }
330 map_len -= 2;
333 return 0;
334 }
335 map_len -= 2;
339 return 0;
340 }
344 map_len -= 2;
348 return 0;
349 }
352 int track_type, track_id, track_len;
354 int idx;
360 if (!(track_type & 0x80)) {
362 continue;
363 }
364 track_type &= 0x7f;
365 if ((track_id & 0xc0) != 0xc0) {
367 continue;
368 }
369 track_id &= 0x3f;
371 // check for timecode tracks
372 if (track_type == 7 || track_type == 8 || track_type == 24) {
376
377 }
379
381 if (idx < 0) continue;
382 st =
s->streams[idx];
383 if (!main_timebase.
num || !main_timebase.
den) {
386 }
390 }
393 if (map_len)
397 return -1;
398 }
403 return -1;
404 }
405 }
411 avio_skip(pb, 0x30);
// payload description
413 if (!main_timebase.
num || !main_timebase.
den) {
415 " This might give wrong results.\n");
416 // this may not always be correct, but simply the best we can get
417 main_timebase.
num = fps.
den;
418 main_timebase.
den = fps.
num * 2;
419 }
420
428 }
429 } else
431 } else
434 // set a fallback value, 60000/1001 is specified for audio-only files
435 // so use that regardless of why we do not know the video frame rate.
436 if (!main_timebase.
num || !main_timebase.
den)
438 for (
i = 0;
i <
s->nb_streams;
i++) {
441 }
442 return 0;
443 }
444
446 { \
447 if (!max_interval-- || avio_feof(pb)) \
448 goto out; \
449 tmp = tmp << 8 | avio_r8(pb); \
450 }
451
452 /**
453 * @brief resync the stream on the next media packet with specified properties
454 * @param max_interval how many bytes to search for matching packet at most
455 * @param track track id the media packet must belong to, -1 for any
456 * @param timestamp minimum timestamp (== field number) the packet must have, -1 for any
457 * @return timestamp of packet found
458 */
461 uint64_t last_pos;
462 uint64_t last_found_pos = 0;
463 int cur_track;
469 start:
474 goto start;
479 if (
avio_seek(pb, last_pos, SEEK_SET) < 0)
481 goto start;
482 }
487 if ((track >= 0 && track != cur_track) || (timestamp >= 0 && timestamp > cur_timestamp)) {
488 if (
avio_seek(pb, last_pos, SEEK_SET) >= 0)
489 goto start;
490 }
492 if (last_found_pos)
494 return cur_timestamp;
495 }
496
500 int pkt_len;
502
505 int track_type, track_id,
ret;
506 int field_nr, field_info,
skip = 0;
507 int stream_index;
511 return -1;
512 }
515 continue;
516 }
519 continue;
520 }
521 if (pkt_len < 16) {
523 continue;
524 }
525 pkt_len -= 16;
528 stream_index =
get_sindex(
s, track_id, track_type);
529 if (stream_index < 0)
530 return stream_index;
531 st =
s->streams[stream_index];
534 avio_rb32(pb);
// "timeline" field number
539 int first = field_info >> 16;
540 int last = field_info & 0xffff; // last is exclusive
542 if (
first <= last && last*
bps <= pkt_len) {
546 } else
548 }
554
555 //set duration manually for DV or else lavf misdetects the frame rate
558
560 }
562 }
563
567 uint64_t maxlen = 100 * 1024 * 1024;
572 int idx;
576 if (idx < 0)
577 return -1;
579 if (idx < sti->nb_index_entries - 2)
581 maxlen =
FFMAX(maxlen, 200 * 1024);
583 if (res < 0)
584 return res;
586 if (
FFABS(found - timestamp) > 4)
587 return -1;
588 return 0;
589 }
590
599 return res;
600 }
601
611 };