You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

605 lines
20KB

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