qtdemux: Fix parsing of RLE depth

Regression introduced by 86b427dc70

https://bugzilla.gnome.org/show_bug.cgi?id=784812
This commit is contained in:
Sebastian Dröge 2017-07-13 12:47:02 +03:00
parent c8204780b2
commit c0318f3d60

View file

@ -10637,7 +10637,7 @@ qtdemux_parse_trak (GstQTDemux * qtdemux, GNode * trak)
case FOURCC_WRLE: case FOURCC_WRLE:
{ {
gst_caps_set_simple (entry->caps, 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); NULL);
break; break;
} }