From 88491ff2e7822c5ad09b648dd4bae0844ac22946 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Philip=20J=C3=A4genstedt?= Date: Tue, 26 Apr 2011 22:20:29 +0200 Subject: [PATCH] typefind: extract SOF marker in jpeg typefinder The SOF types are defined by http://www.w3.org/Graphics/JPEG/itu-t81.pdf This is needed to make sure that we plug a jpeg decoder that can handle the type of JPEG we have (e.g. lossless JPEG) https://bugzilla.gnome.org/show_bug.cgi?id=556648 --- gst/typefind/gsttypefindfunctions.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/gst/typefind/gsttypefindfunctions.c b/gst/typefind/gsttypefindfunctions.c index 2e2a56702a..1675addd0c 100644 --- a/gst/typefind/gsttypefindfunctions.c +++ b/gst/typefind/gsttypefindfunctions.c @@ -3012,7 +3012,9 @@ jpeg_type_find (GstTypeFind * tf, gpointer unused) prob = GST_TYPE_FIND_LIKELY; gst_caps_set_simple (caps, "width", G_TYPE_INT, w, - "height", G_TYPE_INT, h, NULL); + "height", G_TYPE_INT, h, "sof-marker", G_TYPE_INT, marker & 0xf, + NULL); + break; } else { GST_WARNING ("bad length or unexpected JPEG marker 0xff 0x%02x", marker);