mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-26 06:54:49 +00:00
qtdemux: Fix parsing of RLE depth
Regression introduced by 86b427dc70
https://bugzilla.gnome.org/show_bug.cgi?id=784812
This commit is contained in:
parent
c8204780b2
commit
c0318f3d60
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue