gxf.c 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579
  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. #include "libavutil/common.h"
  22. #include "avformat.h"
  23. #include "internal.h"
  24. #include "gxf.h"
  25. struct gxf_stream_info {
  26. int64_t first_field;
  27. int64_t last_field;
  28. AVRational frames_per_second;
  29. int32_t fields_per_frame;
  30. int64_t track_aux_data;
  31. };
  32. /**
  33. * @brief parse gxf timecode and add it to metadata
  34. */
  35. static int add_timecode_metadata(AVDictionary **pm, const char *key, uint32_t timecode, int fields_per_frame)
  36. {
  37. char tmp[128];
  38. int field = timecode & 0xff;
  39. int frame = fields_per_frame ? field / fields_per_frame : field;
  40. int second = (timecode >> 8) & 0xff;
  41. int minute = (timecode >> 16) & 0xff;
  42. int hour = (timecode >> 24) & 0x1f;
  43. int drop = (timecode >> 29) & 1;
  44. // bit 30: color_frame, unused
  45. // ignore invalid time code
  46. if (timecode >> 31)
  47. return 0;
  48. snprintf(tmp, sizeof(tmp), "%02d:%02d:%02d%c%02d",
  49. hour, minute, second, drop ? ';' : ':', frame);
  50. return av_dict_set(pm, key, tmp, 0);
  51. }
  52. /**
  53. * @brief parses a packet header, extracting type and length
  54. * @param pb AVIOContext to read header from
  55. * @param type detected packet type is stored here
  56. * @param length detected packet length, excluding header is stored here
  57. * @return 0 if header not found or contains invalid data, 1 otherwise
  58. */
  59. static int parse_packet_header(AVIOContext *pb, GXFPktType *type, int *length) {
  60. if (avio_rb32(pb))
  61. return 0;
  62. if (avio_r8(pb) != 1)
  63. return 0;
  64. *type = avio_r8(pb);
  65. *length = avio_rb32(pb);
  66. if ((*length >> 24) || *length < 16)
  67. return 0;
  68. *length -= 16;
  69. if (avio_rb32(pb))
  70. return 0;
  71. if (avio_r8(pb) != 0xe1)
  72. return 0;
  73. if (avio_r8(pb) != 0xe2)
  74. return 0;
  75. return 1;
  76. }
  77. /**
  78. * @brief check if file starts with a PKT_MAP header
  79. */
  80. static int gxf_probe(AVProbeData *p) {
  81. static const uint8_t startcode[] = {0, 0, 0, 0, 1, 0xbc}; // start with map packet
  82. static const uint8_t endcode[] = {0, 0, 0, 0, 0xe1, 0xe2};
  83. if (!memcmp(p->buf, startcode, sizeof(startcode)) &&
  84. !memcmp(&p->buf[16 - sizeof(endcode)], endcode, sizeof(endcode)))
  85. return AVPROBE_SCORE_MAX;
  86. return 0;
  87. }
  88. /**
  89. * @brief gets the stream index for the track with the specified id, creates new
  90. * stream if not found
  91. * @param id id of stream to find / add
  92. * @param format stream format identifier
  93. */
  94. static int get_sindex(AVFormatContext *s, int id, int format) {
  95. int i;
  96. AVStream *st = NULL;
  97. i = ff_find_stream_index(s, id);
  98. if (i >= 0)
  99. return i;
  100. st = avformat_new_stream(s, NULL);
  101. if (!st)
  102. return AVERROR(ENOMEM);
  103. st->id = id;
  104. switch (format) {
  105. case 3:
  106. case 4:
  107. st->codec->codec_type = AVMEDIA_TYPE_VIDEO;
  108. st->codec->codec_id = CODEC_ID_MJPEG;
  109. break;
  110. case 13:
  111. case 15:
  112. st->codec->codec_type = AVMEDIA_TYPE_VIDEO;
  113. st->codec->codec_id = CODEC_ID_DVVIDEO;
  114. break;
  115. case 14:
  116. case 16:
  117. st->codec->codec_type = AVMEDIA_TYPE_VIDEO;
  118. st->codec->codec_id = CODEC_ID_DVVIDEO;
  119. break;
  120. case 11:
  121. case 12:
  122. case 20:
  123. st->codec->codec_type = AVMEDIA_TYPE_VIDEO;
  124. st->codec->codec_id = CODEC_ID_MPEG2VIDEO;
  125. st->need_parsing = AVSTREAM_PARSE_HEADERS; //get keyframe flag etc.
  126. break;
  127. case 22:
  128. case 23:
  129. st->codec->codec_type = AVMEDIA_TYPE_VIDEO;
  130. st->codec->codec_id = CODEC_ID_MPEG1VIDEO;
  131. st->need_parsing = AVSTREAM_PARSE_HEADERS; //get keyframe flag etc.
  132. break;
  133. case 9:
  134. st->codec->codec_type = AVMEDIA_TYPE_AUDIO;
  135. st->codec->codec_id = CODEC_ID_PCM_S24LE;
  136. st->codec->channels = 1;
  137. st->codec->sample_rate = 48000;
  138. st->codec->bit_rate = 3 * 1 * 48000 * 8;
  139. st->codec->block_align = 3 * 1;
  140. st->codec->bits_per_coded_sample = 24;
  141. break;
  142. case 10:
  143. st->codec->codec_type = AVMEDIA_TYPE_AUDIO;
  144. st->codec->codec_id = CODEC_ID_PCM_S16LE;
  145. st->codec->channels = 1;
  146. st->codec->sample_rate = 48000;
  147. st->codec->bit_rate = 2 * 1 * 48000 * 8;
  148. st->codec->block_align = 2 * 1;
  149. st->codec->bits_per_coded_sample = 16;
  150. break;
  151. case 17:
  152. st->codec->codec_type = AVMEDIA_TYPE_AUDIO;
  153. st->codec->codec_id = CODEC_ID_AC3;
  154. st->codec->channels = 2;
  155. st->codec->sample_rate = 48000;
  156. break;
  157. // timecode tracks:
  158. case 7:
  159. case 8:
  160. case 24:
  161. st->codec->codec_type = AVMEDIA_TYPE_DATA;
  162. st->codec->codec_id = CODEC_ID_NONE;
  163. break;
  164. default:
  165. st->codec->codec_type = AVMEDIA_TYPE_UNKNOWN;
  166. st->codec->codec_id = CODEC_ID_NONE;
  167. break;
  168. }
  169. return s->nb_streams - 1;
  170. }
  171. /**
  172. * @brief filters out interesting tags from material information.
  173. * @param len length of tag section, will be adjusted to contain remaining bytes
  174. * @param si struct to store collected information into
  175. */
  176. static void gxf_material_tags(AVIOContext *pb, int *len, struct gxf_stream_info *si) {
  177. si->first_field = AV_NOPTS_VALUE;
  178. si->last_field = AV_NOPTS_VALUE;
  179. while (*len >= 2) {
  180. GXFMatTag tag = avio_r8(pb);
  181. int tlen = avio_r8(pb);
  182. *len -= 2;
  183. if (tlen > *len)
  184. return;
  185. *len -= tlen;
  186. if (tlen == 4) {
  187. uint32_t value = avio_rb32(pb);
  188. if (tag == MAT_FIRST_FIELD)
  189. si->first_field = value;
  190. else if (tag == MAT_LAST_FIELD)
  191. si->last_field = value;
  192. } else
  193. avio_skip(pb, tlen);
  194. }
  195. }
  196. /**
  197. * @brief convert fps tag value to AVRational fps
  198. * @param fps fps value from tag
  199. * @return fps as AVRational, or 0 / 0 if unknown
  200. */
  201. static AVRational fps_tag2avr(int32_t fps) {
  202. extern const AVRational avpriv_frame_rate_tab[];
  203. if (fps < 1 || fps > 9) fps = 9;
  204. return avpriv_frame_rate_tab[9 - fps]; // values have opposite order
  205. }
  206. /**
  207. * @brief convert UMF attributes flags to AVRational fps
  208. * @param flags UMF flags to convert
  209. * @return fps as AVRational, or 0 / 0 if unknown
  210. */
  211. static AVRational fps_umf2avr(uint32_t flags) {
  212. static const AVRational map[] = {{50, 1}, {60000, 1001}, {24, 1},
  213. {25, 1}, {30000, 1001}};
  214. int idx = av_log2((flags & 0x7c0) >> 6);
  215. return map[idx];
  216. }
  217. /**
  218. * @brief filters out interesting tags from track information.
  219. * @param len length of tag section, will be adjusted to contain remaining bytes
  220. * @param si struct to store collected information into
  221. */
  222. static void gxf_track_tags(AVIOContext *pb, int *len, struct gxf_stream_info *si) {
  223. si->frames_per_second = (AVRational){0, 0};
  224. si->fields_per_frame = 0;
  225. si->track_aux_data = 0x80000000;
  226. while (*len >= 2) {
  227. GXFTrackTag tag = avio_r8(pb);
  228. int tlen = avio_r8(pb);
  229. *len -= 2;
  230. if (tlen > *len)
  231. return;
  232. *len -= tlen;
  233. if (tlen == 4) {
  234. uint32_t value = avio_rb32(pb);
  235. if (tag == TRACK_FPS)
  236. si->frames_per_second = fps_tag2avr(value);
  237. else if (tag == TRACK_FPF && (value == 1 || value == 2))
  238. si->fields_per_frame = value;
  239. } else if (tlen == 8 && tag == TRACK_AUX)
  240. si->track_aux_data = avio_rl64(pb);
  241. else
  242. avio_skip(pb, tlen);
  243. }
  244. }
  245. /**
  246. * @brief read index from FLT packet into stream 0 av_index
  247. */
  248. static void gxf_read_index(AVFormatContext *s, int pkt_len) {
  249. AVIOContext *pb = s->pb;
  250. AVStream *st = s->streams[0];
  251. uint32_t fields_per_map = avio_rl32(pb);
  252. uint32_t map_cnt = avio_rl32(pb);
  253. int i;
  254. pkt_len -= 8;
  255. if (s->flags & AVFMT_FLAG_IGNIDX) {
  256. avio_skip(pb, pkt_len);
  257. return;
  258. }
  259. if (map_cnt > 1000) {
  260. av_log(s, AV_LOG_ERROR, "too many index entries %u (%x)\n", map_cnt, map_cnt);
  261. map_cnt = 1000;
  262. }
  263. if (pkt_len < 4 * map_cnt) {
  264. av_log(s, AV_LOG_ERROR, "invalid index length\n");
  265. avio_skip(pb, pkt_len);
  266. return;
  267. }
  268. pkt_len -= 4 * map_cnt;
  269. av_add_index_entry(st, 0, 0, 0, 0, 0);
  270. for (i = 0; i < map_cnt; i++)
  271. av_add_index_entry(st, (uint64_t)avio_rl32(pb) * 1024,
  272. i * (uint64_t)fields_per_map + 1, 0, 0, 0);
  273. avio_skip(pb, pkt_len);
  274. }
  275. static int gxf_header(AVFormatContext *s, AVFormatParameters *ap) {
  276. AVIOContext *pb = s->pb;
  277. GXFPktType pkt_type;
  278. int map_len;
  279. int len;
  280. AVRational main_timebase = {0, 0};
  281. struct gxf_stream_info *si = s->priv_data;
  282. int i;
  283. if (!parse_packet_header(pb, &pkt_type, &map_len) || pkt_type != PKT_MAP) {
  284. av_log(s, AV_LOG_ERROR, "map packet not found\n");
  285. return 0;
  286. }
  287. map_len -= 2;
  288. if (avio_r8(pb) != 0x0e0 || avio_r8(pb) != 0xff) {
  289. av_log(s, AV_LOG_ERROR, "unknown version or invalid map preamble\n");
  290. return 0;
  291. }
  292. map_len -= 2;
  293. len = avio_rb16(pb); // length of material data section
  294. if (len > map_len) {
  295. av_log(s, AV_LOG_ERROR, "material data longer than map data\n");
  296. return 0;
  297. }
  298. map_len -= len;
  299. gxf_material_tags(pb, &len, si);
  300. avio_skip(pb, len);
  301. map_len -= 2;
  302. len = avio_rb16(pb); // length of track description
  303. if (len > map_len) {
  304. av_log(s, AV_LOG_ERROR, "track description longer than map data\n");
  305. return 0;
  306. }
  307. map_len -= len;
  308. while (len > 0) {
  309. int track_type, track_id, track_len;
  310. AVStream *st;
  311. int idx;
  312. len -= 4;
  313. track_type = avio_r8(pb);
  314. track_id = avio_r8(pb);
  315. track_len = avio_rb16(pb);
  316. len -= track_len;
  317. if (!(track_type & 0x80)) {
  318. av_log(s, AV_LOG_ERROR, "invalid track type %x\n", track_type);
  319. continue;
  320. }
  321. track_type &= 0x7f;
  322. if ((track_id & 0xc0) != 0xc0) {
  323. av_log(s, AV_LOG_ERROR, "invalid track id %x\n", track_id);
  324. continue;
  325. }
  326. track_id &= 0x3f;
  327. gxf_track_tags(pb, &track_len, si);
  328. // check for timecode tracks
  329. if (track_type == 7 || track_type == 8 || track_type == 24) {
  330. add_timecode_metadata(&s->metadata, "timecode",
  331. si->track_aux_data & 0xffffffff,
  332. si->fields_per_frame);
  333. }
  334. avio_skip(pb, track_len);
  335. idx = get_sindex(s, track_id, track_type);
  336. if (idx < 0) continue;
  337. st = s->streams[idx];
  338. if (!main_timebase.num || !main_timebase.den) {
  339. main_timebase.num = si->frames_per_second.den;
  340. main_timebase.den = si->frames_per_second.num * 2;
  341. }
  342. st->start_time = si->first_field;
  343. if (si->first_field != AV_NOPTS_VALUE && si->last_field != AV_NOPTS_VALUE)
  344. st->duration = si->last_field - si->first_field;
  345. }
  346. if (len < 0)
  347. av_log(s, AV_LOG_ERROR, "invalid track description length specified\n");
  348. if (map_len)
  349. avio_skip(pb, map_len);
  350. if (!parse_packet_header(pb, &pkt_type, &len)) {
  351. av_log(s, AV_LOG_ERROR, "sync lost in header\n");
  352. return -1;
  353. }
  354. if (pkt_type == PKT_FLT) {
  355. gxf_read_index(s, len);
  356. if (!parse_packet_header(pb, &pkt_type, &len)) {
  357. av_log(s, AV_LOG_ERROR, "sync lost in header\n");
  358. return -1;
  359. }
  360. }
  361. if (pkt_type == PKT_UMF) {
  362. if (len >= 0x39) {
  363. AVRational fps;
  364. len -= 0x39;
  365. avio_skip(pb, 5); // preamble
  366. avio_skip(pb, 0x30); // payload description
  367. fps = fps_umf2avr(avio_rl32(pb));
  368. if (!main_timebase.num || !main_timebase.den) {
  369. av_log(s, AV_LOG_WARNING, "No FPS track tag, using UMF fps tag."
  370. " This might give wrong results.\n");
  371. // this may not always be correct, but simply the best we can get
  372. main_timebase.num = fps.den;
  373. main_timebase.den = fps.num * 2;
  374. }
  375. if (len >= 0x18) {
  376. len -= 0x18;
  377. avio_skip(pb, 0x10);
  378. add_timecode_metadata(&s->metadata, "timecode_at_mark_in",
  379. avio_rl32(pb), si->fields_per_frame);
  380. add_timecode_metadata(&s->metadata, "timecode_at_mark_out",
  381. avio_rl32(pb), si->fields_per_frame);
  382. }
  383. } else
  384. av_log(s, AV_LOG_INFO, "UMF packet too short\n");
  385. } else
  386. av_log(s, AV_LOG_INFO, "UMF packet missing\n");
  387. avio_skip(pb, len);
  388. // set a fallback value, 60000/1001 is specified for audio-only files
  389. // so use that regardless of why we do not know the video frame rate.
  390. if (!main_timebase.num || !main_timebase.den)
  391. main_timebase = (AVRational){1001, 60000};
  392. for (i = 0; i < s->nb_streams; i++) {
  393. AVStream *st = s->streams[i];
  394. avpriv_set_pts_info(st, 32, main_timebase.num, main_timebase.den);
  395. }
  396. return 0;
  397. }
  398. #define READ_ONE() \
  399. { \
  400. if (!max_interval-- || url_feof(pb)) \
  401. goto out; \
  402. tmp = tmp << 8 | avio_r8(pb); \
  403. }
  404. /**
  405. * @brief resync the stream on the next media packet with specified properties
  406. * @param max_interval how many bytes to search for matching packet at most
  407. * @param track track id the media packet must belong to, -1 for any
  408. * @param timestamp minimum timestamp (== field number) the packet must have, -1 for any
  409. * @return timestamp of packet found
  410. */
  411. static int64_t gxf_resync_media(AVFormatContext *s, uint64_t max_interval, int track, int timestamp) {
  412. uint32_t tmp;
  413. uint64_t last_pos;
  414. uint64_t last_found_pos = 0;
  415. int cur_track;
  416. int64_t cur_timestamp = AV_NOPTS_VALUE;
  417. int len;
  418. AVIOContext *pb = s->pb;
  419. GXFPktType type;
  420. tmp = avio_rb32(pb);
  421. start:
  422. while (tmp)
  423. READ_ONE();
  424. READ_ONE();
  425. if (tmp != 1)
  426. goto start;
  427. last_pos = avio_tell(pb);
  428. if (avio_seek(pb, -5, SEEK_CUR) < 0)
  429. goto out;
  430. if (!parse_packet_header(pb, &type, &len) || type != PKT_MEDIA) {
  431. if (avio_seek(pb, last_pos, SEEK_SET) < 0)
  432. goto out;
  433. goto start;
  434. }
  435. avio_r8(pb);
  436. cur_track = avio_r8(pb);
  437. cur_timestamp = avio_rb32(pb);
  438. last_found_pos = avio_tell(pb) - 16 - 6;
  439. if ((track >= 0 && track != cur_track) || (timestamp >= 0 && timestamp > cur_timestamp)) {
  440. if (avio_seek(pb, last_pos, SEEK_SET) >= 0)
  441. goto start;
  442. }
  443. out:
  444. if (last_found_pos)
  445. avio_seek(pb, last_found_pos, SEEK_SET);
  446. return cur_timestamp;
  447. }
  448. static int gxf_packet(AVFormatContext *s, AVPacket *pkt) {
  449. AVIOContext *pb = s->pb;
  450. GXFPktType pkt_type;
  451. int pkt_len;
  452. struct gxf_stream_info *si = s->priv_data;
  453. while (!pb->eof_reached) {
  454. AVStream *st;
  455. int track_type, track_id, ret;
  456. int field_nr, field_info, skip = 0;
  457. int stream_index;
  458. if (!parse_packet_header(pb, &pkt_type, &pkt_len)) {
  459. if (!url_feof(pb))
  460. av_log(s, AV_LOG_ERROR, "sync lost\n");
  461. return -1;
  462. }
  463. if (pkt_type == PKT_FLT) {
  464. gxf_read_index(s, pkt_len);
  465. continue;
  466. }
  467. if (pkt_type != PKT_MEDIA) {
  468. avio_skip(pb, pkt_len);
  469. continue;
  470. }
  471. if (pkt_len < 16) {
  472. av_log(s, AV_LOG_ERROR, "invalid media packet length\n");
  473. continue;
  474. }
  475. pkt_len -= 16;
  476. track_type = avio_r8(pb);
  477. track_id = avio_r8(pb);
  478. stream_index = get_sindex(s, track_id, track_type);
  479. if (stream_index < 0)
  480. return stream_index;
  481. st = s->streams[stream_index];
  482. field_nr = avio_rb32(pb);
  483. field_info = avio_rb32(pb);
  484. avio_rb32(pb); // "timeline" field number
  485. avio_r8(pb); // flags
  486. avio_r8(pb); // reserved
  487. if (st->codec->codec_id == CODEC_ID_PCM_S24LE ||
  488. st->codec->codec_id == CODEC_ID_PCM_S16LE) {
  489. int first = field_info >> 16;
  490. int last = field_info & 0xffff; // last is exclusive
  491. int bps = av_get_bits_per_sample(st->codec->codec_id)>>3;
  492. if (first <= last && last*bps <= pkt_len) {
  493. avio_skip(pb, first*bps);
  494. skip = pkt_len - last*bps;
  495. pkt_len = (last-first)*bps;
  496. } else
  497. av_log(s, AV_LOG_ERROR, "invalid first and last sample values\n");
  498. }
  499. ret = av_get_packet(pb, pkt, pkt_len);
  500. if (skip)
  501. avio_skip(pb, skip);
  502. pkt->stream_index = stream_index;
  503. pkt->dts = field_nr;
  504. //set duration manually for DV or else lavf misdetects the frame rate
  505. if (st->codec->codec_id == CODEC_ID_DVVIDEO)
  506. pkt->duration = si->fields_per_frame;
  507. return ret;
  508. }
  509. return AVERROR(EIO);
  510. }
  511. static int gxf_seek(AVFormatContext *s, int stream_index, int64_t timestamp, int flags) {
  512. int64_t res = 0;
  513. uint64_t pos;
  514. uint64_t maxlen = 100 * 1024 * 1024;
  515. AVStream *st = s->streams[0];
  516. int64_t start_time = s->streams[stream_index]->start_time;
  517. int64_t found;
  518. int idx;
  519. if (timestamp < start_time) timestamp = start_time;
  520. idx = av_index_search_timestamp(st, timestamp - start_time,
  521. AVSEEK_FLAG_ANY | AVSEEK_FLAG_BACKWARD);
  522. if (idx < 0)
  523. return -1;
  524. pos = st->index_entries[idx].pos;
  525. if (idx < st->nb_index_entries - 2)
  526. maxlen = st->index_entries[idx + 2].pos - pos;
  527. maxlen = FFMAX(maxlen, 200 * 1024);
  528. res = avio_seek(s->pb, pos, SEEK_SET);
  529. if (res < 0)
  530. return res;
  531. found = gxf_resync_media(s, maxlen, -1, timestamp);
  532. if (FFABS(found - timestamp) > 4)
  533. return -1;
  534. return 0;
  535. }
  536. static int64_t gxf_read_timestamp(AVFormatContext *s, int stream_index,
  537. int64_t *pos, int64_t pos_limit) {
  538. AVIOContext *pb = s->pb;
  539. int64_t res;
  540. if (avio_seek(pb, *pos, SEEK_SET) < 0)
  541. return AV_NOPTS_VALUE;
  542. res = gxf_resync_media(s, pos_limit - *pos, -1, -1);
  543. *pos = avio_tell(pb);
  544. return res;
  545. }
  546. AVInputFormat ff_gxf_demuxer = {
  547. .name = "gxf",
  548. .long_name = NULL_IF_CONFIG_SMALL("GXF format"),
  549. .priv_data_size = sizeof(struct gxf_stream_info),
  550. .read_probe = gxf_probe,
  551. .read_header = gxf_header,
  552. .read_packet = gxf_packet,
  553. .read_seek = gxf_seek,
  554. .read_timestamp = gxf_read_timestamp,
  555. };