diff options
author | Sebastian Dröge <slomo@circular-chaos.org> | 2008-11-28 11:24:24 +0000 |
---|---|---|
committer | Sebastian Dröge <slomo@circular-chaos.org> | 2008-11-28 11:24:24 +0000 |
commit | 65587b80f51d6ab80bdc076ee4e375b61e7371c4 (patch) | |
tree | 134dc92a555e8721043be097321fbc0efee9b14f /gst/mxf/mxfparse.h | |
parent | 6ff76898aaba61d6e9c78d4545ff82e44b04c3b2 (diff) | |
download | gst-plugins-bad-65587b80f51d6ab80bdc076ee4e375b61e7371c4.tar.gz gst-plugins-bad-65587b80f51d6ab80bdc076ee4e375b61e7371c4.tar.bz2 gst-plugins-bad-65587b80f51d6ab80bdc076ee4e375b61e7371c4.zip |
gst/mxf/: Implement parsing of index table segments, which will later be used for seeking.
Original commit message from CVS:
* gst/mxf/mxfdemux.c: (gst_mxf_demux_reset),
(gst_mxf_demux_handle_index_table_segment):
* gst/mxf/mxfdemux.h:
* gst/mxf/mxfparse.c: (mxf_index_table_segment_parse),
(mxf_index_table_segment_reset):
* gst/mxf/mxfparse.h:
* gst/mxf/mxftypes.h:
Implement parsing of index table segments, which will later be
used for seeking.
Diffstat (limited to 'gst/mxf/mxfparse.h')
-rw-r--r-- | gst/mxf/mxfparse.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/gst/mxf/mxfparse.h b/gst/mxf/mxfparse.h index 6cace267..54b4c0dd 100644 --- a/gst/mxf/mxfparse.h +++ b/gst/mxf/mxfparse.h @@ -79,6 +79,9 @@ void mxf_primer_pack_reset (MXFPrimerPack *pack); gboolean mxf_random_index_pack_parse (const MXFUL *key, const guint8 *data, guint size, GArray **array); +gboolean mxf_index_table_segment_parse (const MXFUL *key, MXFIndexTableSegment *segment, const MXFPrimerPack *primer, const guint8 *data, guint size); +void mxf_index_table_segment_reset (MXFIndexTableSegment *segment); + gboolean mxf_local_tag_parse (const guint8 * data, guint size, guint16 * tag, guint16 * tag_size, const guint8 ** tag_data); void gst_mxf_local_tag_free (MXFLocalTag *tag); |