mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-18 22:36:33 +00:00
qtdemux: use correct type for channel-mask bitmask
Fixes crash on 32-bit systems.
This commit is contained in:
parent
69246dfef7
commit
bc79fe565c
1 changed files with 1 additions and 1 deletions
|
@ -5212,7 +5212,7 @@ gst_qtdemux_add_stream (GstQTDemux * qtdemux,
|
||||||
* correctly; this is just the minimum we can do - assume
|
* correctly; this is just the minimum we can do - assume
|
||||||
* we don't actually have any channel positions. */
|
* we don't actually have any channel positions. */
|
||||||
gst_caps_set_simple (stream->caps,
|
gst_caps_set_simple (stream->caps,
|
||||||
"channel-mask", GST_TYPE_BITMASK, 0, NULL);
|
"channel-mask", GST_TYPE_BITMASK, G_GUINT64_CONSTANT (0), NULL);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
qtdemux->n_audio_streams++;
|
qtdemux->n_audio_streams++;
|
||||||
|
|
Loading…
Reference in a new issue