mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-19 14:56:36 +00:00
v4l2src: fix v4l2_std_id logging
input.std is of type v4l2_std_id which is defined as 64-bit unsigned integer. Casting to uint means the higher bits, wich are used for the private video standards of the TI video capture/display driver for example, are lost.
This commit is contained in:
parent
338286cedf
commit
65a28698db
1 changed files with 1 additions and 1 deletions
|
@ -145,7 +145,7 @@ gst_v4l2_fill_lists (GstV4l2Object * v4l2object)
|
|||
GST_LOG_OBJECT (e, " name: '%s'", input.name);
|
||||
GST_LOG_OBJECT (e, " type: %08x", input.type);
|
||||
GST_LOG_OBJECT (e, " audioset: %08x", input.audioset);
|
||||
GST_LOG_OBJECT (e, " std: %016x", (guint) input.std);
|
||||
GST_LOG_OBJECT (e, " std: %016" G_GINT64_MODIFIER "x", input.std);
|
||||
GST_LOG_OBJECT (e, " status: %08x", input.status);
|
||||
|
||||
v4l2channel = g_object_new (GST_TYPE_V4L2_TUNER_CHANNEL, NULL);
|
||||
|
|
Loading…
Reference in a new issue