mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-22 17:51:16 +00:00
v4l2codecs: alphadecoder: Explicitly pass 64 bit integers as such through varargs
Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/6452>
This commit is contained in:
parent
276329dd5d
commit
cee05343f0
1 changed files with 4 additions and 4 deletions
|
@ -172,10 +172,10 @@ gst_v4l2_codec_alpha_decode_bin_constructed (GObject * obj)
|
|||
gst_ghost_pad_set_target (GST_GHOST_PAD (src_gpad), src_pad);
|
||||
gst_object_unref (src_pad);
|
||||
|
||||
g_object_set (queue, "max-size-bytes", 0, "max-size-time", 0,
|
||||
"max-size-buffers", 1, NULL);
|
||||
g_object_set (alpha_queue, "max-size-bytes", 0, "max-size-time", 0,
|
||||
"max-size-buffers", 1, NULL);
|
||||
g_object_set (queue, "max-size-bytes", 0, "max-size-time",
|
||||
G_GUINT64_CONSTANT (0), "max-size-buffers", 1, NULL);
|
||||
g_object_set (alpha_queue, "max-size-bytes", 0, "max-size-time",
|
||||
G_GUINT64_CONSTANT (0), "max-size-buffers", 1, NULL);
|
||||
|
||||
/* signal success, we will handle this in NULL->READY transition */
|
||||
priv->constructed = TRUE;
|
||||
|
|
Loading…
Reference in a new issue