qtdemux: Fix parsing of RLE depth
authorSebastian Dröge <sebastian@centricular.com>
Thu, 13 Jul 2017 09:47:02 +0000 (12:47 +0300)
committerSebastian Dröge <sebastian@centricular.com>
Thu, 13 Jul 2017 09:47:27 +0000 (12:47 +0300)
Regression introduced by 86b427dc70562f891a551ffc9f96cefe1cafcddd

https://bugzilla.gnome.org/show_bug.cgi?id=784812

gst/isomp4/qtdemux.c

index 0a41b26..5679036 100644 (file)
@@ -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;
           }