mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-20 04:56:24 +00:00
qtdemux: Ensure that size of the pasp atom is as much as we need
https://bugzilla.gnome.org/show_bug.cgi?id=775455
This commit is contained in:
parent
d46cc8df6c
commit
b79655d3c9
1 changed files with 8 additions and 2 deletions
|
@ -9762,9 +9762,15 @@ qtdemux_parse_trak (GstQTDemux * qtdemux, GNode * trak)
|
|||
|
||||
if (pasp) {
|
||||
const guint8 *pasp_data = (const guint8 *) pasp->data;
|
||||
gint len = QT_UINT32 (pasp_data);
|
||||
|
||||
stream->par_w = QT_UINT32 (pasp_data + 8);
|
||||
stream->par_h = QT_UINT32 (pasp_data + 12);
|
||||
if (len == 16) {
|
||||
stream->par_w = QT_UINT32 (pasp_data + 8);
|
||||
stream->par_h = QT_UINT32 (pasp_data + 12);
|
||||
} else {
|
||||
stream->par_w = 0;
|
||||
stream->par_h = 0;
|
||||
}
|
||||
} else {
|
||||
stream->par_w = 0;
|
||||
stream->par_h = 0;
|
||||
|
|
Loading…
Reference in a new issue