From 37f89571814124f59b9fb8c84ff716d3c909e0b6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tim-Philipp=20M=C3=BCller?= Date: Wed, 21 Oct 2009 20:35:17 +0100 Subject: [PATCH] typefind: fix typo in previous mxf typefinder change --- gst/typefind/gsttypefindfunctions.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gst/typefind/gsttypefindfunctions.c b/gst/typefind/gsttypefindfunctions.c index d394de0061..f59bc69ebd 100644 --- a/gst/typefind/gsttypefindfunctions.c +++ b/gst/typefind/gsttypefindfunctions.c @@ -2705,7 +2705,7 @@ mxf_type_find (GstTypeFind * tf, gpointer ununsed) for (i = 0; i < 1024 - 16; i++) { /* Check first byte before calling more expensive memcmp function */ - if (G_UNLIKELY (c.data[0] == 0x06 + if (G_UNLIKELY (c.data[i] == 0x06 && memcmp (c.data + i, partition_pack_key, 13) == 0)) { /* Header partition pack? */ if (c.data[i + 13] != 0x02)