summaryrefslogtreecommitdiffstats
path: root/gst/mxf/mxfparse.h
diff options
context:
space:
mode:
authorSebastian Dröge <sebastian.droege@collabora.co.uk>2009-03-11 19:32:16 +0100
committerSebastian Dröge <sebastian.droege@collabora.co.uk>2009-03-21 10:19:47 +0100
commite50039897b9550ff01901069cb17e923760c8600 (patch)
tree1c6d0ad6f2777d36403adc70695ec6ba25a180fe /gst/mxf/mxfparse.h
parent86719f194f17773979913e21cb0629c3eba06c05 (diff)
downloadgst-plugins-bad-e50039897b9550ff01901069cb17e923760c8600.tar.gz
gst-plugins-bad-e50039897b9550ff01901069cb17e923760c8600.tar.bz2
gst-plugins-bad-e50039897b9550ff01901069cb17e923760c8600.zip
mxf: Add MXF muxer
This muxer currently only supports OP1a and is probably not yet 100% complying to the standards.
Diffstat (limited to 'gst/mxf/mxfparse.h')
-rw-r--r--gst/mxf/mxfparse.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/gst/mxf/mxfparse.h b/gst/mxf/mxfparse.h
index 5a5e630e..4e4f7dc1 100644
--- a/gst/mxf/mxfparse.h
+++ b/gst/mxf/mxfparse.h
@@ -72,6 +72,7 @@ gchar * mxf_utf16_to_utf8 (const guint8 * data, guint size);
gboolean mxf_product_version_parse (MXFProductVersion * product_version,
const guint8 * data, guint size);
+gboolean mxf_product_version_is_valid (const MXFProductVersion *version);
gboolean mxf_fraction_parse (MXFFraction *fraction, const guint8 *data, guint size);
gdouble mxf_fraction_to_double (const MXFFraction *fraction);
@@ -96,11 +97,12 @@ 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);
+void mxf_local_tag_free (MXFLocalTag *tag);
gboolean mxf_local_tag_add_to_hash_table (const MXFPrimerPack *primer,
guint16 tag, const guint8 *tag_data, guint16 tag_size,
GHashTable **hash_table);
+gboolean mxf_local_tag_insert (MXFLocalTag *tag, GHashTable **hash_table);
void mxf_essence_element_handler_register (const MXFEssenceElementHandler *handler);
const MXFEssenceElementHandler * mxf_essence_element_handler_find (const MXFMetadataTimelineTrack *track);