mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-19 16:21:17 +00:00
mxf: Handle D10 "picture only" variant
Fixes https://gitlab.freedesktop.org/gstreamer/gst-plugins-bad/-/issues/80 Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-bad/-/merge_requests/2436>
This commit is contained in:
parent
c27a01233d
commit
b3504a0192
1 changed files with 1 additions and 1 deletions
|
@ -64,7 +64,7 @@ mxf_is_d10_essence_track (const MXFMetadataTimelineTrack * track)
|
||||||
if (mxf_is_generic_container_essence_container_label (key) &&
|
if (mxf_is_generic_container_essence_container_label (key) &&
|
||||||
key->u[12] == 0x02 && key->u[13] == 0x01 &&
|
key->u[12] == 0x02 && key->u[13] == 0x01 &&
|
||||||
(key->u[14] >= 0x01 && key->u[14] <= 0x06) &&
|
(key->u[14] >= 0x01 && key->u[14] <= 0x06) &&
|
||||||
(key->u[15] == 0x01 || key->u[15] == 0x02))
|
(key->u[15] == 0x01 || key->u[15] == 0x02 || key->u[15] == 0x7f))
|
||||||
return TRUE;
|
return TRUE;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue