Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
George Kiagiadakis
gst-plugins-good
Commits
3333683f
Commit
3333683f
authored
Feb 20, 2016
by
Tim-Philipp Müller
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
v4l2: don't use undeclared core debug category symbols
parent
f96c9eb6
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
sys/v4l2/gstv4l2bufferpool.c
sys/v4l2/gstv4l2bufferpool.c
+3
-3
No files found.
sys/v4l2/gstv4l2bufferpool.c
View file @
3333683f
...
...
@@ -47,7 +47,7 @@
#include <gst/glib-compat-private.h>
GST_DEBUG_CATEGORY_STATIC
(
v4l2bufferpool_debug
);
GST_DEBUG_CATEGORY_
EXTERN
(
GST_
CAT_PERFORMANCE
);
GST_DEBUG_CATEGORY_
STATIC
(
CAT_PERFORMANCE
);
#define GST_CAT_DEFAULT v4l2bufferpool_debug
#define GST_V4L2_IMPORT_QUARK gst_v4l2_buffer_pool_import_quark ()
...
...
@@ -152,8 +152,7 @@ gst_v4l2_buffer_pool_copy_buffer (GstV4l2BufferPool * pool, GstBuffer * dest,
gst_buffer_copy_into
(
dest
,
src
,
GST_BUFFER_COPY_FLAGS
|
GST_BUFFER_COPY_TIMESTAMPS
,
0
,
-
1
);
GST_CAT_LOG_OBJECT
(
GST_CAT_PERFORMANCE
,
pool
,
"slow copy into buffer %p"
,
dest
);
GST_CAT_LOG_OBJECT
(
CAT_PERFORMANCE
,
pool
,
"slow copy into buffer %p"
,
dest
);
return
GST_FLOW_OK
;
...
...
@@ -1548,6 +1547,7 @@ gst_v4l2_buffer_pool_class_init (GstV4l2BufferPoolClass * klass)
GST_DEBUG_CATEGORY_INIT
(
v4l2bufferpool_debug
,
"v4l2bufferpool"
,
0
,
"V4L2 Buffer Pool"
);
GST_DEBUG_CATEGORY_GET
(
CAT_PERFORMANCE
,
"GST_PERFORMANCE"
);
}
/**
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment