summaryrefslogtreecommitdiffstats
path: root/gst/mxf/mxfdemux.c
diff options
context:
space:
mode:
authorSebastian Dröge <sebastian.droege@collabora.co.uk>2009-03-26 13:20:18 +0100
committerSebastian Dröge <sebastian.droege@collabora.co.uk>2009-03-26 13:20:18 +0100
commitf22494b6fe280cd789e3b3db210f963afc6cbf3d (patch)
treeeeee1280da8365a7b73829e7aecb7aa9e147d4e8 /gst/mxf/mxfdemux.c
parentc1c8b40d4201a4b6657b644bbe4a89e63b54bd0c (diff)
downloadgst-plugins-bad-f22494b6fe280cd789e3b3db210f963afc6cbf3d.tar.gz
gst-plugins-bad-f22494b6fe280cd789e3b3db210f963afc6cbf3d.tar.bz2
gst-plugins-bad-f22494b6fe280cd789e3b3db210f963afc6cbf3d.zip
mxf: Use mxf_u{l,uid}_is_equal() and friends instead of memcmp()
Diffstat (limited to 'gst/mxf/mxfdemux.c')
-rw-r--r--gst/mxf/mxfdemux.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gst/mxf/mxfdemux.c b/gst/mxf/mxfdemux.c
index 1333135e..b3af7919 100644
--- a/gst/mxf/mxfdemux.c
+++ b/gst/mxf/mxfdemux.c
@@ -659,7 +659,7 @@ gst_mxf_demux_choose_package (GstMXFDemux * demux)
}
done:
- if (memcmp (&ret->package_uid, &demux->current_package_uid, 32) != 0) {
+ if (mxf_umid_is_equal (&ret->package_uid, &demux->current_package_uid)) {
gchar current_package_string[96];
GstTagList *tags = gst_tag_list_new ();