From e50039897b9550ff01901069cb17e923760c8600 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Dr=C3=B6ge?= Date: Wed, 11 Mar 2009 19:32:16 +0100 Subject: mxf: Add MXF muxer This muxer currently only supports OP1a and is probably not yet 100% complying to the standards. --- gst/mxf/mxftypes.h | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'gst/mxf/mxftypes.h') diff --git a/gst/mxf/mxftypes.h b/gst/mxf/mxftypes.h index dcbbd28d..f0878597 100644 --- a/gst/mxf/mxftypes.h +++ b/gst/mxf/mxftypes.h @@ -65,6 +65,8 @@ typedef struct { MXFUL key; guint16 size; guint8 *data; + + gboolean g_slice; /* TRUE if data was allocated by GSlice */ } MXFLocalTag; /* SMPTE 377M 11.1 */ @@ -114,6 +116,8 @@ typedef struct { typedef struct { guint64 offset; GHashTable *mappings; + GHashTable *reverse_mappings; + guint16 next_free_tag; } MXFPrimerPack; /* SMPTE 377M 10.2.3 */ -- cgit v1.2.1 From b409f71f4950f88dfc1f7590dbab41ef07168b39 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Dr=C3=B6ge?= Date: Thu, 19 Mar 2009 14:30:34 +0100 Subject: mxf: Start implementing a central UL database and add some helper functions and use them --- gst/mxf/mxftypes.h | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'gst/mxf/mxftypes.h') diff --git a/gst/mxf/mxftypes.h b/gst/mxf/mxftypes.h index f0878597..ffb40d9c 100644 --- a/gst/mxf/mxftypes.h +++ b/gst/mxf/mxftypes.h @@ -29,6 +29,10 @@ typedef struct { guint8 u[16]; } MXFUL; +typedef struct { + guint8 u[16]; +} MXFUUID; + /* SMPTE 377M 3.2 */ typedef struct { guint8 u[32]; -- cgit v1.2.1