diff options
author | Sebastian Dröge <sebastian@centricular.com> | 2016-01-29 17:02:01 +0100 |
---|---|---|
committer | Sebastian Dröge <sebastian@centricular.com> | 2016-01-29 17:02:32 +0100 |
commit | 5f3e444aff3eaf357edbf9184fe2f5d45c7cd15a (patch) | |
tree | 50a8b4cd0e2e6794c378f180a609e018965d3058 | |
parent | cd17ea1070df09aaca68be2abc445beef4053951 (diff) | |
download | gstreamer-plugins-bad-5f3e444aff3eaf357edbf9184fe2f5d45c7cd15a.tar.gz |
mxfmux: Use IndexSID of 2 instead of 1
Some tools complain if essence and index have the same SID.
-rw-r--r-- | gst/mxf/mxfmux.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gst/mxf/mxfmux.c b/gst/mxf/mxfmux.c index d9ceb96e8..afb86d801 100644 --- a/gst/mxf/mxfmux.c +++ b/gst/mxf/mxfmux.c @@ -1035,7 +1035,7 @@ gst_mxf_mux_create_metadata (GstMXFMux * mux) cstorage->essence_container_data[0]->linked_package = MXF_METADATA_SOURCE_PACKAGE (cstorage->packages[1]); - cstorage->essence_container_data[0]->index_sid = 1; + cstorage->essence_container_data[0]->index_sid = 2; cstorage->essence_container_data[0]->body_sid = 1; } |