diff options
author | Sebastian Dröge <sebastian.droege@collabora.co.uk> | 2009-01-26 14:33:02 +0100 |
---|---|---|
committer | Sebastian Dröge <sebastian.droege@collabora.co.uk> | 2009-01-31 11:02:24 +0100 |
commit | 264e30abb9387cef3c072298ac530c67bb708e43 (patch) | |
tree | 28a975910e9d3ff1b4fb62af2e757c8a7386fb4b /gst/mxf/mxftypes.h | |
parent | 6a0a9fc01e2aec4020b8f35b4a4ce5df8e60e9d7 (diff) | |
download | gst-plugins-bad-264e30abb9387cef3c072298ac530c67bb708e43.tar.gz gst-plugins-bad-264e30abb9387cef3c072298ac530c67bb708e43.tar.bz2 gst-plugins-bad-264e30abb9387cef3c072298ac530c67bb708e43.zip |
Improve detection of the end of the header metadata
Header metadata is finished after partition.header_byte_count
bytes after the first byte of the primer pack are handled.
After this there can only be index table segments, filler packets,
essence or the start of the next partition.
This fixes playback of some files that have non-standard metadata
packets in the header metadata.
Diffstat (limited to 'gst/mxf/mxftypes.h')
-rw-r--r-- | gst/mxf/mxftypes.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gst/mxf/mxftypes.h b/gst/mxf/mxftypes.h index 791c6710..73f4a834 100644 --- a/gst/mxf/mxftypes.h +++ b/gst/mxf/mxftypes.h @@ -112,6 +112,7 @@ typedef struct { /* SMPTE 377M 8.1 */ typedef struct { + guint64 offset; GHashTable *mappings; } MXFPrimerPack; |