gxf.c 20.1 KB
Newer Older
Reimar Döffinger's avatar
Reimar Döffinger committed
1 2
/*
 * GXF demuxer.
3
 * Copyright (c) 2006 Reimar Doeffinger
Reimar Döffinger's avatar
Reimar Döffinger committed
4
 *
5 6 7
 * This file is part of FFmpeg.
 *
 * FFmpeg is free software; you can redistribute it and/or
Reimar Döffinger's avatar
Reimar Döffinger committed
8 9
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
10
 * version 2.1 of the License, or (at your option) any later version.
Reimar Döffinger's avatar
Reimar Döffinger committed
11
 *
12
 * FFmpeg is distributed in the hope that it will be useful,
Reimar Döffinger's avatar
Reimar Döffinger committed
13 14 15 16 17
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
18
 * License along with FFmpeg; if not, write to the Free Software
Reimar Döffinger's avatar
Reimar Döffinger committed
19 20
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
 */
21

22 23
#include <inttypes.h>

24
#include "libavutil/channel_layout.h"
25
#include "libavutil/common.h"
Reimar Döffinger's avatar
Reimar Döffinger committed
26
#include "avformat.h"
Peter Ross's avatar
Peter Ross committed
27
#include "internal.h"
28
#include "gxf.h"
29
#include "libavcodec/mpeg12data.h"
30

31
struct gxf_stream_info {
32 33 34 35
    int64_t first_field;
    int64_t last_field;
    AVRational frames_per_second;
    int32_t fields_per_frame;
36
    int64_t track_aux_data;
37
};
38

39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59
/**
 * @brief parse gxf timecode and add it to metadata
 */
static int add_timecode_metadata(AVDictionary **pm, const char *key, uint32_t timecode, int fields_per_frame)
{
   char tmp[128];
   int field  = timecode & 0xff;
   int frame  = fields_per_frame ? field / fields_per_frame : field;
   int second = (timecode >>  8) & 0xff;
   int minute = (timecode >> 16) & 0xff;
   int hour   = (timecode >> 24) & 0x1f;
   int drop   = (timecode >> 29) & 1;
   // bit 30: color_frame, unused
   // ignore invalid time code
   if (timecode >> 31)
       return 0;
   snprintf(tmp, sizeof(tmp), "%02d:%02d:%02d%c%02d",
       hour, minute, second, drop ? ';' : ':', frame);
   return av_dict_set(pm, key, tmp, 0);
}

Reimar Döffinger's avatar
Reimar Döffinger committed
60
/**
61 62 63 64 65
 * @brief parses a packet header, extracting type and length
 * @param pb AVIOContext to read header from
 * @param type detected packet type is stored here
 * @param length detected packet length, excluding header is stored here
 * @return 0 if header not found or contains invalid data, 1 otherwise
Reimar Döffinger's avatar
Reimar Döffinger committed
66
 */
67
static int parse_packet_header(AVIOContext *pb, GXFPktType *type, int *length) {
68
    if (avio_rb32(pb))
Reimar Döffinger's avatar
Reimar Döffinger committed
69
        return 0;
70
    if (avio_r8(pb) != 1)
Reimar Döffinger's avatar
Reimar Döffinger committed
71
        return 0;
72 73
    *type = avio_r8(pb);
    *length = avio_rb32(pb);
Reimar Döffinger's avatar
Reimar Döffinger committed
74 75 76
    if ((*length >> 24) || *length < 16)
        return 0;
    *length -= 16;
77
    if (avio_rb32(pb))
Reimar Döffinger's avatar
Reimar Döffinger committed
78
        return 0;
79
    if (avio_r8(pb) != 0xe1)
Reimar Döffinger's avatar
Reimar Döffinger committed
80
        return 0;
81
    if (avio_r8(pb) != 0xe2)
Reimar Döffinger's avatar
Reimar Döffinger committed
82 83 84 85 86
        return 0;
    return 1;
}

/**
87
 * @brief check if file starts with a PKT_MAP header
Reimar Döffinger's avatar
Reimar Döffinger committed
88 89 90 91 92 93 94 95 96 97 98
 */
static int gxf_probe(AVProbeData *p) {
    static const uint8_t startcode[] = {0, 0, 0, 0, 1, 0xbc}; // start with map packet
    static const uint8_t endcode[] = {0, 0, 0, 0, 0xe1, 0xe2};
    if (!memcmp(p->buf, startcode, sizeof(startcode)) &&
        !memcmp(&p->buf[16 - sizeof(endcode)], endcode, sizeof(endcode)))
        return AVPROBE_SCORE_MAX;
    return 0;
}

/**
99
 * @brief gets the stream index for the track with the specified id, creates new
Reimar Döffinger's avatar
Reimar Döffinger committed
100
 *        stream if not found
101 102
 * @param id     id of stream to find / add
 * @param format stream format identifier
Reimar Döffinger's avatar
Reimar Döffinger committed
103 104 105 106
 */
static int get_sindex(AVFormatContext *s, int id, int format) {
    int i;
    AVStream *st = NULL;
Peter Ross's avatar
Peter Ross committed
107 108 109
    i = ff_find_stream_index(s, id);
    if (i >= 0)
        return i;
110
    st = avformat_new_stream(s, NULL);
111 112
    if (!st)
        return AVERROR(ENOMEM);
113
    st->id = id;
Reimar Döffinger's avatar
Reimar Döffinger committed
114 115 116
    switch (format) {
        case 3:
        case 4:
117 118
            st->codecpar->codec_type = AVMEDIA_TYPE_VIDEO;
            st->codecpar->codec_id = AV_CODEC_ID_MJPEG;
Reimar Döffinger's avatar
Reimar Döffinger committed
119 120 121
            break;
        case 13:
        case 14:
122
        case 15:
Reimar Döffinger's avatar
Reimar Döffinger committed
123
        case 16:
124
        case 25:
125 126
            st->codecpar->codec_type = AVMEDIA_TYPE_VIDEO;
            st->codecpar->codec_id = AV_CODEC_ID_DVVIDEO;
Reimar Döffinger's avatar
Reimar Döffinger committed
127 128 129 130
            break;
        case 11:
        case 12:
        case 20:
131 132
            st->codecpar->codec_type = AVMEDIA_TYPE_VIDEO;
            st->codecpar->codec_id = AV_CODEC_ID_MPEG2VIDEO;
133
            st->need_parsing = AVSTREAM_PARSE_HEADERS; //get keyframe flag etc.
Reimar Döffinger's avatar
Reimar Döffinger committed
134 135 136
            break;
        case 22:
        case 23:
137 138
            st->codecpar->codec_type = AVMEDIA_TYPE_VIDEO;
            st->codecpar->codec_id = AV_CODEC_ID_MPEG1VIDEO;
139
            st->need_parsing = AVSTREAM_PARSE_HEADERS; //get keyframe flag etc.
Reimar Döffinger's avatar
Reimar Döffinger committed
140 141
            break;
        case 9:
142 143 144 145 146 147 148 149
            st->codecpar->codec_type = AVMEDIA_TYPE_AUDIO;
            st->codecpar->codec_id = AV_CODEC_ID_PCM_S24LE;
            st->codecpar->channels = 1;
            st->codecpar->channel_layout = AV_CH_LAYOUT_MONO;
            st->codecpar->sample_rate = 48000;
            st->codecpar->bit_rate = 3 * 1 * 48000 * 8;
            st->codecpar->block_align = 3 * 1;
            st->codecpar->bits_per_coded_sample = 24;
Reimar Döffinger's avatar
Reimar Döffinger committed
150 151
            break;
        case 10:
152 153 154 155 156 157 158 159
            st->codecpar->codec_type = AVMEDIA_TYPE_AUDIO;
            st->codecpar->codec_id = AV_CODEC_ID_PCM_S16LE;
            st->codecpar->channels = 1;
            st->codecpar->channel_layout = AV_CH_LAYOUT_MONO;
            st->codecpar->sample_rate = 48000;
            st->codecpar->bit_rate = 2 * 1 * 48000 * 8;
            st->codecpar->block_align = 2 * 1;
            st->codecpar->bits_per_coded_sample = 16;
Reimar Döffinger's avatar
Reimar Döffinger committed
160 161
            break;
        case 17:
162 163 164 165 166
            st->codecpar->codec_type = AVMEDIA_TYPE_AUDIO;
            st->codecpar->codec_id = AV_CODEC_ID_AC3;
            st->codecpar->channels = 2;
            st->codecpar->channel_layout = AV_CH_LAYOUT_STEREO;
            st->codecpar->sample_rate = 48000;
Reimar Döffinger's avatar
Reimar Döffinger committed
167
            break;
168
        case 26: /* AVCi50 / AVCi100 (AVC Intra) */
169
        case 29: /* AVCHD */
170 171
            st->codecpar->codec_type = AVMEDIA_TYPE_VIDEO;
            st->codecpar->codec_id = AV_CODEC_ID_H264;
172 173
            st->need_parsing = AVSTREAM_PARSE_HEADERS;
            break;
174 175 176 177
        // timecode tracks:
        case 7:
        case 8:
        case 24:
178 179
            st->codecpar->codec_type = AVMEDIA_TYPE_DATA;
            st->codecpar->codec_id = AV_CODEC_ID_NONE;
180
            break;
181
        case 30:
182 183
            st->codecpar->codec_type = AVMEDIA_TYPE_VIDEO;
            st->codecpar->codec_id = AV_CODEC_ID_DNXHD;
184
            break;
Reimar Döffinger's avatar
Reimar Döffinger committed
185
        default:
186 187
            st->codecpar->codec_type = AVMEDIA_TYPE_UNKNOWN;
            st->codecpar->codec_id = AV_CODEC_ID_NONE;
Reimar Döffinger's avatar
Reimar Döffinger committed
188 189 190 191 192
            break;
    }
    return s->nb_streams - 1;
}

193
/**
194 195 196
 * @brief filters out interesting tags from material information.
 * @param len length of tag section, will be adjusted to contain remaining bytes
 * @param si struct to store collected information into
197
 */
198
static void gxf_material_tags(AVIOContext *pb, int *len, struct gxf_stream_info *si) {
199 200 201
    si->first_field = AV_NOPTS_VALUE;
    si->last_field = AV_NOPTS_VALUE;
    while (*len >= 2) {
202 203
        GXFMatTag tag = avio_r8(pb);
        int tlen = avio_r8(pb);
204 205 206 207 208
        *len -= 2;
        if (tlen > *len)
            return;
        *len -= tlen;
        if (tlen == 4) {
209
            uint32_t value = avio_rb32(pb);
210 211 212 213 214
            if (tag == MAT_FIRST_FIELD)
                si->first_field = value;
            else if (tag == MAT_LAST_FIELD)
                si->last_field = value;
        } else
215
            avio_skip(pb, tlen);
216 217 218
    }
}

219 220 221 222 223 224 225 226 227 228 229 230
static const AVRational frame_rate_tab[] = {
    {   60,    1},
    {60000, 1001},
    {   50,    1},
    {   30,    1},
    {30000, 1001},
    {   25,    1},
    {   24,    1},
    {24000, 1001},
    {    0,    0},
};

231
/**
232 233 234
 * @brief convert fps tag value to AVRational fps
 * @param fps fps value from tag
 * @return fps as AVRational, or 0 / 0 if unknown
235 236 237
 */
static AVRational fps_tag2avr(int32_t fps) {
    if (fps < 1 || fps > 9) fps = 9;
238
    return frame_rate_tab[fps - 1];
239 240 241
}

/**
242 243 244
 * @brief convert UMF attributes flags to AVRational fps
 * @param flags UMF flags to convert
 * @return fps as AVRational, or 0 / 0 if unknown
245 246 247 248 249 250 251 252 253
 */
static AVRational fps_umf2avr(uint32_t flags) {
    static const AVRational map[] = {{50, 1}, {60000, 1001}, {24, 1},
        {25, 1}, {30000, 1001}};
    int idx =  av_log2((flags & 0x7c0) >> 6);
    return map[idx];
}

/**
254 255 256
 * @brief filters out interesting tags from track information.
 * @param len length of tag section, will be adjusted to contain remaining bytes
 * @param si struct to store collected information into
257
 */
258
static void gxf_track_tags(AVIOContext *pb, int *len, struct gxf_stream_info *si) {
259 260
    si->frames_per_second = (AVRational){0, 0};
    si->fields_per_frame = 0;
261
    si->track_aux_data = 0x80000000;
262
    while (*len >= 2) {
263 264
        GXFTrackTag tag = avio_r8(pb);
        int tlen = avio_r8(pb);
265 266 267 268 269
        *len -= 2;
        if (tlen > *len)
            return;
        *len -= tlen;
        if (tlen == 4) {
270
            uint32_t value = avio_rb32(pb);
271 272 273 274
            if (tag == TRACK_FPS)
                si->frames_per_second = fps_tag2avr(value);
            else if (tag == TRACK_FPF && (value == 1 || value == 2))
                si->fields_per_frame = value;
275 276 277
        } else if (tlen == 8 && tag == TRACK_AUX)
            si->track_aux_data = avio_rl64(pb);
        else
278
            avio_skip(pb, tlen);
279 280 281 282
    }
}

/**
283
 * @brief read index from FLT packet into stream 0 av_index
284 285
 */
static void gxf_read_index(AVFormatContext *s, int pkt_len) {
286
    AVIOContext *pb = s->pb;
287
    AVStream *st;
288 289
    uint32_t fields_per_map = avio_rl32(pb);
    uint32_t map_cnt = avio_rl32(pb);
290 291
    int i;
    pkt_len -= 8;
292
    if ((s->flags & AVFMT_FLAG_IGNIDX) || !s->streams) {
293
        avio_skip(pb, pkt_len);
294 295
        return;
    }
296
    st = s->streams[0];
297
    if (map_cnt > 1000) {
298 299 300
        av_log(s, AV_LOG_ERROR,
               "too many index entries %"PRIu32" (%"PRIx32")\n",
               map_cnt, map_cnt);
301 302 303
        map_cnt = 1000;
    }
    if (pkt_len < 4 * map_cnt) {
304
        av_log(s, AV_LOG_ERROR, "invalid index length\n");
305
        avio_skip(pb, pkt_len);
306 307 308 309 310
        return;
    }
    pkt_len -= 4 * map_cnt;
    av_add_index_entry(st, 0, 0, 0, 0, 0);
    for (i = 0; i < map_cnt; i++)
311
        av_add_index_entry(st, (uint64_t)avio_rl32(pb) * 1024,
312
                           i * (uint64_t)fields_per_map + 1, 0, 0, 0);
313
    avio_skip(pb, pkt_len);
314 315
}

316
static int gxf_header(AVFormatContext *s) {
317
    AVIOContext *pb = s->pb;
318
    GXFPktType pkt_type;
Reimar Döffinger's avatar
Reimar Döffinger committed
319 320
    int map_len;
    int len;
321
    AVRational main_timebase = {0, 0};
322
    struct gxf_stream_info *si = s->priv_data;
323
    int i;
Reimar Döffinger's avatar
Reimar Döffinger committed
324
    if (!parse_packet_header(pb, &pkt_type, &map_len) || pkt_type != PKT_MAP) {
325
        av_log(s, AV_LOG_ERROR, "map packet not found\n");
Reimar Döffinger's avatar
Reimar Döffinger committed
326 327 328
        return 0;
    }
    map_len -= 2;
329
    if (avio_r8(pb) != 0x0e0 || avio_r8(pb) != 0xff) {
330
        av_log(s, AV_LOG_ERROR, "unknown version or invalid map preamble\n");
Reimar Döffinger's avatar
Reimar Döffinger committed
331 332 333
        return 0;
    }
    map_len -= 2;
334
    len = avio_rb16(pb); // length of material data section
Reimar Döffinger's avatar
Reimar Döffinger committed
335
    if (len > map_len) {
336
        av_log(s, AV_LOG_ERROR, "material data longer than map data\n");
Reimar Döffinger's avatar
Reimar Döffinger committed
337 338 339
        return 0;
    }
    map_len -= len;
340
    gxf_material_tags(pb, &len, si);
341
    avio_skip(pb, len);
Reimar Döffinger's avatar
Reimar Döffinger committed
342
    map_len -= 2;
343
    len = avio_rb16(pb); // length of track description
Reimar Döffinger's avatar
Reimar Döffinger committed
344
    if (len > map_len) {
345
        av_log(s, AV_LOG_ERROR, "track description longer than map data\n");
Reimar Döffinger's avatar
Reimar Döffinger committed
346 347 348 349 350
        return 0;
    }
    map_len -= len;
    while (len > 0) {
        int track_type, track_id, track_len;
351 352
        AVStream *st;
        int idx;
Reimar Döffinger's avatar
Reimar Döffinger committed
353
        len -= 4;
354 355 356
        track_type = avio_r8(pb);
        track_id = avio_r8(pb);
        track_len = avio_rb16(pb);
Reimar Döffinger's avatar
Reimar Döffinger committed
357 358
        len -= track_len;
        if (!(track_type & 0x80)) {
359
           av_log(s, AV_LOG_ERROR, "invalid track type %x\n", track_type);
Reimar Döffinger's avatar
Reimar Döffinger committed
360 361 362 363
           continue;
        }
        track_type &= 0x7f;
        if ((track_id & 0xc0) != 0xc0) {
364
           av_log(s, AV_LOG_ERROR, "invalid track id %x\n", track_id);
Reimar Döffinger's avatar
Reimar Döffinger committed
365 366 367
           continue;
        }
        track_id &= 0x3f;
368 369 370
        gxf_track_tags(pb, &track_len, si);
        // check for timecode tracks
        if (track_type == 7 || track_type == 8 || track_type == 24) {
371
            add_timecode_metadata(&s->metadata, "timecode",
372 373 374 375 376 377
                                  si->track_aux_data & 0xffffffff,
                                  si->fields_per_frame);

        }
        avio_skip(pb, track_len);

378 379 380 381
        idx = get_sindex(s, track_id, track_type);
        if (idx < 0) continue;
        st = s->streams[idx];
        if (!main_timebase.num || !main_timebase.den) {
382 383
            main_timebase.num = si->frames_per_second.den;
            main_timebase.den = si->frames_per_second.num * 2;
384
        }
385 386 387
        st->start_time = si->first_field;
        if (si->first_field != AV_NOPTS_VALUE && si->last_field != AV_NOPTS_VALUE)
            st->duration = si->last_field - si->first_field;
Reimar Döffinger's avatar
Reimar Döffinger committed
388 389
    }
    if (len < 0)
390
        av_log(s, AV_LOG_ERROR, "invalid track description length specified\n");
Reimar Döffinger's avatar
Reimar Döffinger committed
391
    if (map_len)
392
        avio_skip(pb, map_len);
393
    if (!parse_packet_header(pb, &pkt_type, &len)) {
394
        av_log(s, AV_LOG_ERROR, "sync lost in header\n");
395 396 397 398 399
        return -1;
    }
    if (pkt_type == PKT_FLT) {
        gxf_read_index(s, len);
        if (!parse_packet_header(pb, &pkt_type, &len)) {
400
            av_log(s, AV_LOG_ERROR, "sync lost in header\n");
401 402 403 404
            return -1;
        }
    }
    if (pkt_type == PKT_UMF) {
405
        if (len >= 0x39) {
406
            AVRational fps;
407
            len -= 0x39;
408 409
            avio_skip(pb, 5); // preamble
            avio_skip(pb, 0x30); // payload description
410
            fps = fps_umf2avr(avio_rl32(pb));
411
            if (!main_timebase.num || !main_timebase.den) {
412 413
                av_log(s, AV_LOG_WARNING, "No FPS track tag, using UMF fps tag."
                                          " This might give wrong results.\n");
414 415
                // this may not always be correct, but simply the best we can get
                main_timebase.num = fps.den;
416
                main_timebase.den = fps.num * 2;
417
            }
418 419 420 421

            if (len >= 0x18) {
                len -= 0x18;
                avio_skip(pb, 0x10);
422
                add_timecode_metadata(&s->metadata, "timecode_at_mark_in",
423
                                      avio_rl32(pb), si->fields_per_frame);
424
                add_timecode_metadata(&s->metadata, "timecode_at_mark_out",
425 426
                                      avio_rl32(pb), si->fields_per_frame);
            }
427
        } else
428
            av_log(s, AV_LOG_INFO, "UMF packet too short\n");
429
    } else
430
        av_log(s, AV_LOG_INFO, "UMF packet missing\n");
431
    avio_skip(pb, len);
432 433
    // set a fallback value, 60000/1001 is specified for audio-only files
    // so use that regardless of why we do not know the video frame rate.
434
    if (!main_timebase.num || !main_timebase.den)
435
        main_timebase = (AVRational){1001, 60000};
436 437
    for (i = 0; i < s->nb_streams; i++) {
        AVStream *st = s->streams[i];
438
        avpriv_set_pts_info(st, 32, main_timebase.num, main_timebase.den);
439
    }
Reimar Döffinger's avatar
Reimar Döffinger committed
440 441 442
    return 0;
}

443 444
#define READ_ONE() \
    { \
445
        if (!max_interval-- || avio_feof(pb)) \
446
            goto out; \
447
        tmp = tmp << 8 | avio_r8(pb); \
448 449 450
    }

/**
451 452 453 454 455
 * @brief resync the stream on the next media packet with specified properties
 * @param max_interval how many bytes to search for matching packet at most
 * @param track track id the media packet must belong to, -1 for any
 * @param timestamp minimum timestamp (== field number) the packet must have, -1 for any
 * @return timestamp of packet found
456 457 458 459 460 461 462 463
 */
static int64_t gxf_resync_media(AVFormatContext *s, uint64_t max_interval, int track, int timestamp) {
    uint32_t tmp;
    uint64_t last_pos;
    uint64_t last_found_pos = 0;
    int cur_track;
    int64_t cur_timestamp = AV_NOPTS_VALUE;
    int len;
464
    AVIOContext *pb = s->pb;
465
    GXFPktType type;
466
    tmp = avio_rb32(pb);
467 468 469 470 471 472
start:
    while (tmp)
        READ_ONE();
    READ_ONE();
    if (tmp != 1)
        goto start;
473
    last_pos = avio_tell(pb);
474
    if (avio_seek(pb, -5, SEEK_CUR) < 0)
475
        goto out;
476
    if (!parse_packet_header(pb, &type, &len) || type != PKT_MEDIA) {
477
        if (avio_seek(pb, last_pos, SEEK_SET) < 0)
478
            goto out;
479 480
        goto start;
    }
481 482 483
    avio_r8(pb);
    cur_track = avio_r8(pb);
    cur_timestamp = avio_rb32(pb);
484
    last_found_pos = avio_tell(pb) - 16 - 6;
485
    if ((track >= 0 && track != cur_track) || (timestamp >= 0 && timestamp > cur_timestamp)) {
486
        if (avio_seek(pb, last_pos, SEEK_SET) >= 0)
487
            goto start;
488 489 490
    }
out:
    if (last_found_pos)
491
        avio_seek(pb, last_found_pos, SEEK_SET);
492 493 494
    return cur_timestamp;
}

Reimar Döffinger's avatar
Reimar Döffinger committed
495
static int gxf_packet(AVFormatContext *s, AVPacket *pkt) {
496
    AVIOContext *pb = s->pb;
497
    GXFPktType pkt_type;
Reimar Döffinger's avatar
Reimar Döffinger committed
498
    int pkt_len;
499 500
    struct gxf_stream_info *si = s->priv_data;

Anton Khirnov's avatar
Anton Khirnov committed
501
    while (!pb->eof_reached) {
502
        AVStream *st;
Reimar Döffinger's avatar
Reimar Döffinger committed
503
        int track_type, track_id, ret;
504
        int field_nr, field_info, skip = 0;
505
        int stream_index;
Reimar Döffinger's avatar
Reimar Döffinger committed
506
        if (!parse_packet_header(pb, &pkt_type, &pkt_len)) {
507
            if (!avio_feof(pb))
508
                av_log(s, AV_LOG_ERROR, "sync lost\n");
Reimar Döffinger's avatar
Reimar Döffinger committed
509 510
            return -1;
        }
511 512 513 514
        if (pkt_type == PKT_FLT) {
            gxf_read_index(s, pkt_len);
            continue;
        }
Reimar Döffinger's avatar
Reimar Döffinger committed
515
        if (pkt_type != PKT_MEDIA) {
516
            avio_skip(pb, pkt_len);
Reimar Döffinger's avatar
Reimar Döffinger committed
517 518 519
            continue;
        }
        if (pkt_len < 16) {
520
            av_log(s, AV_LOG_ERROR, "invalid media packet length\n");
Reimar Döffinger's avatar
Reimar Döffinger committed
521 522 523
            continue;
        }
        pkt_len -= 16;
524 525
        track_type = avio_r8(pb);
        track_id = avio_r8(pb);
526 527 528
        stream_index = get_sindex(s, track_id, track_type);
        if (stream_index < 0)
            return stream_index;
529
        st = s->streams[stream_index];
530 531 532 533 534
        field_nr = avio_rb32(pb);
        field_info = avio_rb32(pb);
        avio_rb32(pb); // "timeline" field number
        avio_r8(pb); // flags
        avio_r8(pb); // reserved
535 536
        if (st->codecpar->codec_id == AV_CODEC_ID_PCM_S24LE ||
            st->codecpar->codec_id == AV_CODEC_ID_PCM_S16LE) {
537 538
            int first = field_info >> 16;
            int last  = field_info & 0xffff; // last is exclusive
539
            int bps = av_get_bits_per_sample(st->codecpar->codec_id)>>3;
540
            if (first <= last && last*bps <= pkt_len) {
541
                avio_skip(pb, first*bps);
542 543 544 545 546
                skip = pkt_len - last*bps;
                pkt_len = (last-first)*bps;
            } else
                av_log(s, AV_LOG_ERROR, "invalid first and last sample values\n");
        }
Reimar Döffinger's avatar
Reimar Döffinger committed
547
        ret = av_get_packet(pb, pkt, pkt_len);
548
        if (skip)
549
            avio_skip(pb, skip);
550
        pkt->stream_index = stream_index;
551
        pkt->dts = field_nr;
552 553

        //set duration manually for DV or else lavf misdetects the frame rate
554
        if (st->codecpar->codec_id == AV_CODEC_ID_DVVIDEO)
555 556
            pkt->duration = si->fields_per_frame;

Reimar Döffinger's avatar
Reimar Döffinger committed
557 558
        return ret;
    }
559
    return AVERROR_EOF;
Reimar Döffinger's avatar
Reimar Döffinger committed
560 561
}

562
static int gxf_seek(AVFormatContext *s, int stream_index, int64_t timestamp, int flags) {
563
    int64_t res = 0;
564 565 566 567 568 569 570 571 572 573 574 575 576 577 578
    uint64_t pos;
    uint64_t maxlen = 100 * 1024 * 1024;
    AVStream *st = s->streams[0];
    int64_t start_time = s->streams[stream_index]->start_time;
    int64_t found;
    int idx;
    if (timestamp < start_time) timestamp = start_time;
    idx = av_index_search_timestamp(st, timestamp - start_time,
                                    AVSEEK_FLAG_ANY | AVSEEK_FLAG_BACKWARD);
    if (idx < 0)
        return -1;
    pos = st->index_entries[idx].pos;
    if (idx < st->nb_index_entries - 2)
        maxlen = st->index_entries[idx + 2].pos - pos;
    maxlen = FFMAX(maxlen, 200 * 1024);
579
    res = avio_seek(s->pb, pos, SEEK_SET);
580 581
    if (res < 0)
        return res;
582
    found = gxf_resync_media(s, maxlen, -1, timestamp);
583
    if (FFABS(found - timestamp) > 4)
584 585 586 587 588 589
        return -1;
    return 0;
}

static int64_t gxf_read_timestamp(AVFormatContext *s, int stream_index,
                                  int64_t *pos, int64_t pos_limit) {
590
    AVIOContext *pb = s->pb;
591
    int64_t res;
592
    if (avio_seek(pb, *pos, SEEK_SET) < 0)
593
        return AV_NOPTS_VALUE;
594
    res = gxf_resync_media(s, pos_limit - *pos, -1, -1);
595
    *pos = avio_tell(pb);
596 597 598
    return res;
}

599
AVInputFormat ff_gxf_demuxer = {
600
    .name           = "gxf",
601
    .long_name      = NULL_IF_CONFIG_SMALL("GXF (General eXchange Format)"),
602 603 604 605 606 607
    .priv_data_size = sizeof(struct gxf_stream_info),
    .read_probe     = gxf_probe,
    .read_header    = gxf_header,
    .read_packet    = gxf_packet,
    .read_seek      = gxf_seek,
    .read_timestamp = gxf_read_timestamp,
Reimar Döffinger's avatar
Reimar Döffinger committed
608
};