mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-17 11:45:25 +00:00
This fixes the video4linux/video4linux2 debug output, which had one \n too much
Original commit message from CVS: This fixes the video4linux/video4linux2 debug output, which had one \n too much
This commit is contained in:
parent
4e4f3462a6
commit
a06baf38da
3 changed files with 3 additions and 3 deletions
|
@ -33,7 +33,7 @@
|
|||
#define DEBUG(format, args...) \
|
||||
GST_DEBUG_ELEMENT(GST_CAT_PLUGIN_INFO, \
|
||||
GST_ELEMENT(v4l2element), \
|
||||
"V4L2-overlay: " format "\n", ##args)
|
||||
"V4L2-overlay: " format, ##args)
|
||||
|
||||
|
||||
/******************************************************
|
||||
|
|
|
@ -33,7 +33,7 @@
|
|||
#define DEBUG(format, args...) \
|
||||
GST_DEBUG_ELEMENT(GST_CAT_PLUGIN_INFO, \
|
||||
GST_ELEMENT(v4l2element), \
|
||||
"V4L2: " format "\n", ##args)
|
||||
"V4L2: " format, ##args)
|
||||
|
||||
|
||||
/******************************************************
|
||||
|
|
|
@ -31,7 +31,7 @@
|
|||
#define DEBUG(format, args...) \
|
||||
GST_DEBUG_ELEMENT(GST_CAT_PLUGIN_INFO, \
|
||||
GST_ELEMENT(v4l2src), \
|
||||
"V4L2SRC: " format "\n", ##args)
|
||||
"V4L2SRC: " format, ##args)
|
||||
|
||||
#define MIN_BUFFERS_QUEUED 2
|
||||
|
||||
|
|
Loading…
Reference in a new issue