libavformat/gxf.c
cc0bc648
 /*
  * GXF demuxer.
406792e7
  * Copyright (c) 2006 Reimar Doeffinger
cc0bc648
  *
b78e7197
  * This file is part of FFmpeg.
  *
  * FFmpeg is free software; you can redistribute it and/or
cc0bc648
  * modify it under the terms of the GNU Lesser General Public
  * License as published by the Free Software Foundation; either
b78e7197
  * version 2.1 of the License, or (at your option) any later version.
cc0bc648
  *
b78e7197
  * FFmpeg is distributed in the hope that it will be useful,
cc0bc648
  * 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
b78e7197
  * License along with FFmpeg; if not, write to the Free Software
cc0bc648
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  */
245976da
 
d92024f1
 #include <inttypes.h>
 
f6c3adde
 #include "libavutil/channel_layout.h"
245976da
 #include "libavutil/common.h"
cc0bc648
 #include "avformat.h"
141de5a9
 #include "internal.h"
b1dc5beb
 #include "gxf.h"
e67b0f99
 #include "libavcodec/mpeg12data.h"
907a0510
 
4e5b854e
 struct gxf_stream_info {
907a0510
     int64_t first_field;
     int64_t last_field;
     AVRational frames_per_second;
     int32_t fields_per_frame;
2264afa1
     int64_t track_aux_data;
4e5b854e
 };
907a0510
 
cc0bc648
 /**
2264afa1
  * @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);
 }
 
 /**
adbfc605
  * @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
cc0bc648
  */
471fe57e
 static int parse_packet_header(AVIOContext *pb, GXFPktType *type, int *length) {
e63a3628
     if (avio_rb32(pb))
cc0bc648
         return 0;
e63a3628
     if (avio_r8(pb) != 1)
cc0bc648
         return 0;
e63a3628
     *type = avio_r8(pb);
     *length = avio_rb32(pb);
cc0bc648
     if ((*length >> 24) || *length < 16)
         return 0;
     *length -= 16;
e63a3628
     if (avio_rb32(pb))
cc0bc648
         return 0;
e63a3628
     if (avio_r8(pb) != 0xe1)
cc0bc648
         return 0;
e63a3628
     if (avio_r8(pb) != 0xe2)
cc0bc648
         return 0;
     return 1;
 }
 
 /**
adbfc605
  * @brief check if file starts with a PKT_MAP header
cc0bc648
  */
 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;
 }
 
 /**
adbfc605
  * @brief gets the stream index for the track with the specified id, creates new
cc0bc648
  *        stream if not found
adbfc605
  * @param id     id of stream to find / add
  * @param format stream format identifier
cc0bc648
  */
 static int get_sindex(AVFormatContext *s, int id, int format) {
     int i;
     AVStream *st = NULL;
141de5a9
     i = ff_find_stream_index(s, id);
     if (i >= 0)
         return i;
84ad31ff
     st = avformat_new_stream(s, NULL);
6c10281c
     if (!st)
         return AVERROR(ENOMEM);
84ad31ff
     st->id = id;
cc0bc648
     switch (format) {
         case 3:
         case 4:
72415b2a
             st->codec->codec_type = AVMEDIA_TYPE_VIDEO;
36ef5369
             st->codec->codec_id = AV_CODEC_ID_MJPEG;
cc0bc648
             break;
         case 13:
         case 14:
7ebf3ab9
         case 15:
cc0bc648
         case 16:
0de9d3dd
         case 25:
72415b2a
             st->codec->codec_type = AVMEDIA_TYPE_VIDEO;
36ef5369
             st->codec->codec_id = AV_CODEC_ID_DVVIDEO;
cc0bc648
             break;
         case 11:
         case 12:
         case 20:
72415b2a
             st->codec->codec_type = AVMEDIA_TYPE_VIDEO;
36ef5369
             st->codec->codec_id = AV_CODEC_ID_MPEG2VIDEO;
57004ff1
             st->need_parsing = AVSTREAM_PARSE_HEADERS; //get keyframe flag etc.
cc0bc648
             break;
         case 22:
         case 23:
72415b2a
             st->codec->codec_type = AVMEDIA_TYPE_VIDEO;
36ef5369
             st->codec->codec_id = AV_CODEC_ID_MPEG1VIDEO;
57004ff1
             st->need_parsing = AVSTREAM_PARSE_HEADERS; //get keyframe flag etc.
cc0bc648
             break;
         case 9:
72415b2a
             st->codec->codec_type = AVMEDIA_TYPE_AUDIO;
36ef5369
             st->codec->codec_id = AV_CODEC_ID_PCM_S24LE;
cc0bc648
             st->codec->channels = 1;
f6c3adde
             st->codec->channel_layout = AV_CH_LAYOUT_MONO;
cc0bc648
             st->codec->sample_rate = 48000;
             st->codec->bit_rate = 3 * 1 * 48000 * 8;
             st->codec->block_align = 3 * 1;
dd1c8f3e
             st->codec->bits_per_coded_sample = 24;
cc0bc648
             break;
         case 10:
72415b2a
             st->codec->codec_type = AVMEDIA_TYPE_AUDIO;
36ef5369
             st->codec->codec_id = AV_CODEC_ID_PCM_S16LE;
cc0bc648
             st->codec->channels = 1;
f6c3adde
             st->codec->channel_layout = AV_CH_LAYOUT_MONO;
cc0bc648
             st->codec->sample_rate = 48000;
             st->codec->bit_rate = 2 * 1 * 48000 * 8;
             st->codec->block_align = 2 * 1;
dd1c8f3e
             st->codec->bits_per_coded_sample = 16;
cc0bc648
             break;
         case 17:
72415b2a
             st->codec->codec_type = AVMEDIA_TYPE_AUDIO;
36ef5369
             st->codec->codec_id = AV_CODEC_ID_AC3;
cc0bc648
             st->codec->channels = 2;
f6c3adde
             st->codec->channel_layout = AV_CH_LAYOUT_STEREO;
cc0bc648
             st->codec->sample_rate = 48000;
             break;
c4db4b17
         case 26: /* AVCi50 / AVCi100 (AVC Intra) */
86190afb
         case 29: /* AVCHD */
c4db4b17
             st->codec->codec_type = AVMEDIA_TYPE_VIDEO;
f1f0b01c
             st->codec->codec_id = AV_CODEC_ID_H264;
c4db4b17
             st->need_parsing = AVSTREAM_PARSE_HEADERS;
             break;
6e8c46b7
         // timecode tracks:
         case 7:
         case 8:
         case 24:
72415b2a
             st->codec->codec_type = AVMEDIA_TYPE_DATA;
36ef5369
             st->codec->codec_id = AV_CODEC_ID_NONE;
6e8c46b7
             break;
2fa89b27
         case 30:
             st->codec->codec_type = AVMEDIA_TYPE_VIDEO;
             st->codec->codec_id = AV_CODEC_ID_DNXHD;
             break;
cc0bc648
         default:
72415b2a
             st->codec->codec_type = AVMEDIA_TYPE_UNKNOWN;
36ef5369
             st->codec->codec_id = AV_CODEC_ID_NONE;
cc0bc648
             break;
     }
     return s->nb_streams - 1;
 }
 
907a0510
 /**
adbfc605
  * @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
907a0510
  */
471fe57e
 static void gxf_material_tags(AVIOContext *pb, int *len, struct gxf_stream_info *si) {
907a0510
     si->first_field = AV_NOPTS_VALUE;
     si->last_field = AV_NOPTS_VALUE;
     while (*len >= 2) {
e63a3628
         GXFMatTag tag = avio_r8(pb);
         int tlen = avio_r8(pb);
907a0510
         *len -= 2;
         if (tlen > *len)
             return;
         *len -= tlen;
         if (tlen == 4) {
e63a3628
             uint32_t value = avio_rb32(pb);
907a0510
             if (tag == MAT_FIRST_FIELD)
                 si->first_field = value;
             else if (tag == MAT_LAST_FIELD)
                 si->last_field = value;
         } else
45a8a02a
             avio_skip(pb, tlen);
907a0510
     }
 }
 
fc085c5b
 static const AVRational frame_rate_tab[] = {
     {   60,    1},
     {60000, 1001},
     {   50,    1},
     {   30,    1},
     {30000, 1001},
     {   25,    1},
     {   24,    1},
     {24000, 1001},
     {    0,    0},
 };
 
907a0510
 /**
adbfc605
  * @brief convert fps tag value to AVRational fps
  * @param fps fps value from tag
  * @return fps as AVRational, or 0 / 0 if unknown
907a0510
  */
 static AVRational fps_tag2avr(int32_t fps) {
     if (fps < 1 || fps > 9) fps = 9;
fc085c5b
     return frame_rate_tab[fps - 1];
907a0510
 }
 
 /**
adbfc605
  * @brief convert UMF attributes flags to AVRational fps
  * @param flags UMF flags to convert
  * @return fps as AVRational, or 0 / 0 if unknown
907a0510
  */
 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];
 }
 
 /**
adbfc605
  * @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
907a0510
  */
471fe57e
 static void gxf_track_tags(AVIOContext *pb, int *len, struct gxf_stream_info *si) {
907a0510
     si->frames_per_second = (AVRational){0, 0};
     si->fields_per_frame = 0;
2264afa1
     si->track_aux_data = 0x80000000;
907a0510
     while (*len >= 2) {
e63a3628
         GXFTrackTag tag = avio_r8(pb);
         int tlen = avio_r8(pb);
907a0510
         *len -= 2;
         if (tlen > *len)
             return;
         *len -= tlen;
         if (tlen == 4) {
e63a3628
             uint32_t value = avio_rb32(pb);
907a0510
             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;
2264afa1
         } else if (tlen == 8 && tag == TRACK_AUX)
             si->track_aux_data = avio_rl64(pb);
         else
45a8a02a
             avio_skip(pb, tlen);
907a0510
     }
 }
 
 /**
adbfc605
  * @brief read index from FLT packet into stream 0 av_index
907a0510
  */
 static void gxf_read_index(AVFormatContext *s, int pkt_len) {
471fe57e
     AVIOContext *pb = s->pb;
5aedee4f
     AVStream *st;
e63a3628
     uint32_t fields_per_map = avio_rl32(pb);
     uint32_t map_cnt = avio_rl32(pb);
907a0510
     int i;
     pkt_len -= 8;
5aedee4f
     if ((s->flags & AVFMT_FLAG_IGNIDX) || !s->streams) {
45a8a02a
         avio_skip(pb, pkt_len);
48b5a2fa
         return;
     }
5aedee4f
     st = s->streams[0];
907a0510
     if (map_cnt > 1000) {
d92024f1
         av_log(s, AV_LOG_ERROR,
                "too many index entries %"PRIu32" (%"PRIx32")\n",
                map_cnt, map_cnt);
907a0510
         map_cnt = 1000;
     }
     if (pkt_len < 4 * map_cnt) {
fe281783
         av_log(s, AV_LOG_ERROR, "invalid index length\n");
45a8a02a
         avio_skip(pb, pkt_len);
907a0510
         return;
     }
     pkt_len -= 4 * map_cnt;
     av_add_index_entry(st, 0, 0, 0, 0, 0);
     for (i = 0; i < map_cnt; i++)
e63a3628
         av_add_index_entry(st, (uint64_t)avio_rl32(pb) * 1024,
907a0510
                            i * (uint64_t)fields_per_map + 1, 0, 0, 0);
45a8a02a
     avio_skip(pb, pkt_len);
907a0510
 }
 
6e9651d1
 static int gxf_header(AVFormatContext *s) {
471fe57e
     AVIOContext *pb = s->pb;
d77ac324
     GXFPktType pkt_type;
cc0bc648
     int map_len;
     int len;
907a0510
     AVRational main_timebase = {0, 0};
99fecc64
     struct gxf_stream_info *si = s->priv_data;
907a0510
     int i;
cc0bc648
     if (!parse_packet_header(pb, &pkt_type, &map_len) || pkt_type != PKT_MAP) {
fe281783
         av_log(s, AV_LOG_ERROR, "map packet not found\n");
cc0bc648
         return 0;
     }
     map_len -= 2;
e63a3628
     if (avio_r8(pb) != 0x0e0 || avio_r8(pb) != 0xff) {
fe281783
         av_log(s, AV_LOG_ERROR, "unknown version or invalid map preamble\n");
cc0bc648
         return 0;
     }
     map_len -= 2;
e63a3628
     len = avio_rb16(pb); // length of material data section
cc0bc648
     if (len > map_len) {
fe281783
         av_log(s, AV_LOG_ERROR, "material data longer than map data\n");
cc0bc648
         return 0;
     }
     map_len -= len;
99fecc64
     gxf_material_tags(pb, &len, si);
45a8a02a
     avio_skip(pb, len);
cc0bc648
     map_len -= 2;
e63a3628
     len = avio_rb16(pb); // length of track description
cc0bc648
     if (len > map_len) {
fe281783
         av_log(s, AV_LOG_ERROR, "track description longer than map data\n");
cc0bc648
         return 0;
     }
     map_len -= len;
     while (len > 0) {
         int track_type, track_id, track_len;
907a0510
         AVStream *st;
         int idx;
cc0bc648
         len -= 4;
e63a3628
         track_type = avio_r8(pb);
         track_id = avio_r8(pb);
         track_len = avio_rb16(pb);
cc0bc648
         len -= track_len;
         if (!(track_type & 0x80)) {
fe281783
            av_log(s, AV_LOG_ERROR, "invalid track type %x\n", track_type);
cc0bc648
            continue;
         }
         track_type &= 0x7f;
         if ((track_id & 0xc0) != 0xc0) {
fe281783
            av_log(s, AV_LOG_ERROR, "invalid track id %x\n", track_id);
cc0bc648
            continue;
         }
         track_id &= 0x3f;
2264afa1
         gxf_track_tags(pb, &track_len, si);
         // check for timecode tracks
         if (track_type == 7 || track_type == 8 || track_type == 24) {
3701d547
             add_timecode_metadata(&s->metadata, "timecode",
2264afa1
                                   si->track_aux_data & 0xffffffff,
                                   si->fields_per_frame);
 
         }
         avio_skip(pb, track_len);
 
907a0510
         idx = get_sindex(s, track_id, track_type);
         if (idx < 0) continue;
         st = s->streams[idx];
         if (!main_timebase.num || !main_timebase.den) {
99fecc64
             main_timebase.num = si->frames_per_second.den;
             main_timebase.den = si->frames_per_second.num * 2;
907a0510
         }
99fecc64
         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;
cc0bc648
     }
     if (len < 0)
fe281783
         av_log(s, AV_LOG_ERROR, "invalid track description length specified\n");
cc0bc648
     if (map_len)
45a8a02a
         avio_skip(pb, map_len);
907a0510
     if (!parse_packet_header(pb, &pkt_type, &len)) {
fe281783
         av_log(s, AV_LOG_ERROR, "sync lost in header\n");
907a0510
         return -1;
     }
     if (pkt_type == PKT_FLT) {
         gxf_read_index(s, len);
         if (!parse_packet_header(pb, &pkt_type, &len)) {
fe281783
             av_log(s, AV_LOG_ERROR, "sync lost in header\n");
907a0510
             return -1;
         }
     }
     if (pkt_type == PKT_UMF) {
2a1c3b8b
         if (len >= 0x39) {
907a0510
             AVRational fps;
2a1c3b8b
             len -= 0x39;
45a8a02a
             avio_skip(pb, 5); // preamble
             avio_skip(pb, 0x30); // payload description
e63a3628
             fps = fps_umf2avr(avio_rl32(pb));
907a0510
             if (!main_timebase.num || !main_timebase.den) {
1816addc
                 av_log(s, AV_LOG_WARNING, "No FPS track tag, using UMF fps tag."
                                           " This might give wrong results.\n");
907a0510
                 // this may not always be correct, but simply the best we can get
                 main_timebase.num = fps.den;
192c14fa
                 main_timebase.den = fps.num * 2;
907a0510
             }
2264afa1
 
             if (len >= 0x18) {
                 len -= 0x18;
                 avio_skip(pb, 0x10);
3701d547
                 add_timecode_metadata(&s->metadata, "timecode_at_mark_in",
2264afa1
                                       avio_rl32(pb), si->fields_per_frame);
3701d547
                 add_timecode_metadata(&s->metadata, "timecode_at_mark_out",
2264afa1
                                       avio_rl32(pb), si->fields_per_frame);
             }
907a0510
         } else
fe281783
             av_log(s, AV_LOG_INFO, "UMF packet too short\n");
907a0510
     } else
fe281783
         av_log(s, AV_LOG_INFO, "UMF packet missing\n");
45a8a02a
     avio_skip(pb, len);
5189573c
     // 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.
a0bbb2e9
     if (!main_timebase.num || !main_timebase.den)
5189573c
         main_timebase = (AVRational){1001, 60000};
907a0510
     for (i = 0; i < s->nb_streams; i++) {
         AVStream *st = s->streams[i];
c3f9ebf7
         avpriv_set_pts_info(st, 32, main_timebase.num, main_timebase.den);
907a0510
     }
cc0bc648
     return 0;
 }
 
907a0510
 #define READ_ONE() \
     { \
d34ec64a
         if (!max_interval-- || avio_feof(pb)) \
907a0510
             goto out; \
e63a3628
         tmp = tmp << 8 | avio_r8(pb); \
907a0510
     }
 
 /**
adbfc605
  * @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
907a0510
  */
 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;
471fe57e
     AVIOContext *pb = s->pb;
d77ac324
     GXFPktType type;
e63a3628
     tmp = avio_rb32(pb);
907a0510
 start:
     while (tmp)
         READ_ONE();
     READ_ONE();
     if (tmp != 1)
         goto start;
384c9c2f
     last_pos = avio_tell(pb);
f59d8ff8
     if (avio_seek(pb, -5, SEEK_CUR) < 0)
b5bc7424
         goto out;
907a0510
     if (!parse_packet_header(pb, &type, &len) || type != PKT_MEDIA) {
f59d8ff8
         if (avio_seek(pb, last_pos, SEEK_SET) < 0)
b5bc7424
             goto out;
907a0510
         goto start;
     }
e63a3628
     avio_r8(pb);
     cur_track = avio_r8(pb);
     cur_timestamp = avio_rb32(pb);
384c9c2f
     last_found_pos = avio_tell(pb) - 16 - 6;
907a0510
     if ((track >= 0 && track != cur_track) || (timestamp >= 0 && timestamp > cur_timestamp)) {
f59d8ff8
         if (avio_seek(pb, last_pos, SEEK_SET) >= 0)
b5bc7424
             goto start;
907a0510
     }
 out:
     if (last_found_pos)
f59d8ff8
         avio_seek(pb, last_found_pos, SEEK_SET);
907a0510
     return cur_timestamp;
 }
 
cc0bc648
 static int gxf_packet(AVFormatContext *s, AVPacket *pkt) {
471fe57e
     AVIOContext *pb = s->pb;
d77ac324
     GXFPktType pkt_type;
cc0bc648
     int pkt_len;
99fecc64
     struct gxf_stream_info *si = s->priv_data;
 
66e5b1df
     while (!pb->eof_reached) {
99f296b3
         AVStream *st;
cc0bc648
         int track_type, track_id, ret;
99f296b3
         int field_nr, field_info, skip = 0;
6c10281c
         int stream_index;
cc0bc648
         if (!parse_packet_header(pb, &pkt_type, &pkt_len)) {
d34ec64a
             if (!avio_feof(pb))
fe281783
                 av_log(s, AV_LOG_ERROR, "sync lost\n");
cc0bc648
             return -1;
         }
907a0510
         if (pkt_type == PKT_FLT) {
             gxf_read_index(s, pkt_len);
             continue;
         }
cc0bc648
         if (pkt_type != PKT_MEDIA) {
45a8a02a
             avio_skip(pb, pkt_len);
cc0bc648
             continue;
         }
         if (pkt_len < 16) {
fe281783
             av_log(s, AV_LOG_ERROR, "invalid media packet length\n");
cc0bc648
             continue;
         }
         pkt_len -= 16;
e63a3628
         track_type = avio_r8(pb);
         track_id = avio_r8(pb);
6c10281c
         stream_index = get_sindex(s, track_id, track_type);
         if (stream_index < 0)
             return stream_index;
99f296b3
         st = s->streams[stream_index];
e63a3628
         field_nr = avio_rb32(pb);
         field_info = avio_rb32(pb);
         avio_rb32(pb); // "timeline" field number
         avio_r8(pb); // flags
         avio_r8(pb); // reserved
36ef5369
         if (st->codec->codec_id == AV_CODEC_ID_PCM_S24LE ||
             st->codec->codec_id == AV_CODEC_ID_PCM_S16LE) {
99f296b3
             int first = field_info >> 16;
             int last  = field_info & 0xffff; // last is exclusive
             int bps = av_get_bits_per_sample(st->codec->codec_id)>>3;
             if (first <= last && last*bps <= pkt_len) {
45a8a02a
                 avio_skip(pb, first*bps);
99f296b3
                 skip = pkt_len - last*bps;
                 pkt_len = (last-first)*bps;
             } else
                 av_log(s, AV_LOG_ERROR, "invalid first and last sample values\n");
         }
cc0bc648
         ret = av_get_packet(pb, pkt, pkt_len);
99f296b3
         if (skip)
45a8a02a
             avio_skip(pb, skip);
6c10281c
         pkt->stream_index = stream_index;
b9b18fbd
         pkt->dts = field_nr;
99fecc64
 
         //set duration manually for DV or else lavf misdetects the frame rate
36ef5369
         if (st->codec->codec_id == AV_CODEC_ID_DVVIDEO)
99fecc64
             pkt->duration = si->fields_per_frame;
 
cc0bc648
         return ret;
     }
f6451320
     return AVERROR_EOF;
cc0bc648
 }
 
907a0510
 static int gxf_seek(AVFormatContext *s, int stream_index, int64_t timestamp, int flags) {
2046275a
     int64_t res = 0;
907a0510
     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);
f59d8ff8
     res = avio_seek(s->pb, pos, SEEK_SET);
b5bc7424
     if (res < 0)
         return res;
907a0510
     found = gxf_resync_media(s, maxlen, -1, timestamp);
c26abfa5
     if (FFABS(found - timestamp) > 4)
907a0510
         return -1;
     return 0;
 }
 
 static int64_t gxf_read_timestamp(AVFormatContext *s, int stream_index,
                                   int64_t *pos, int64_t pos_limit) {
471fe57e
     AVIOContext *pb = s->pb;
907a0510
     int64_t res;
f59d8ff8
     if (avio_seek(pb, *pos, SEEK_SET) < 0)
b5bc7424
         return AV_NOPTS_VALUE;
907a0510
     res = gxf_resync_media(s, pos_limit - *pos, -1, -1);
384c9c2f
     *pos = avio_tell(pb);
907a0510
     return res;
 }
 
66355be3
 AVInputFormat ff_gxf_demuxer = {
dfc2c4d9
     .name           = "gxf",
0177b7d2
     .long_name      = NULL_IF_CONFIG_SMALL("GXF (General eXchange Format)"),
dfc2c4d9
     .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,
cc0bc648
 };