From c0318f3d6070a944986f212c04becef32d18f5f3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Dr=C3=B6ge?= Date: Thu, 13 Jul 2017 12:47:02 +0300 Subject: [PATCH] qtdemux: Fix parsing of RLE depth Regression introduced by 86b427dc70562f891a551ffc9f96cefe1cafcddd https://bugzilla.gnome.org/show_bug.cgi?id=784812 --- gst/isomp4/qtdemux.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gst/isomp4/qtdemux.c b/gst/isomp4/qtdemux.c index 0a41b26f28..5679036e18 100644 --- a/gst/isomp4/qtdemux.c +++ b/gst/isomp4/qtdemux.c @@ -10637,7 +10637,7 @@ qtdemux_parse_trak (GstQTDemux * qtdemux, GNode * trak) case FOURCC_WRLE: { gst_caps_set_simple (entry->caps, - "depth", G_TYPE_INT, QT_UINT16 (stsd_entry_data + offset + 82), + "depth", G_TYPE_INT, QT_UINT16 (stsd_entry_data + offset + 66), NULL); break; }