mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-11 09:55:36 +00:00
v4l2: Make gst_v4l2_get_capabilities static
It's not used outside of v4l2_calls.c
This commit is contained in:
parent
bec03858fa
commit
9b9cba3798
2 changed files with 1 additions and 3 deletions
|
@ -331,8 +331,6 @@ gboolean gst_v4l2_get_attribute (GstV4l2Object * v4l2object, int attribute
|
||||||
gboolean gst_v4l2_set_attribute (GstV4l2Object * v4l2object, int attribute, const int value);
|
gboolean gst_v4l2_set_attribute (GstV4l2Object * v4l2object, int attribute, const int value);
|
||||||
gboolean gst_v4l2_set_controls (GstV4l2Object * v4l2object, GstStructure * controls);
|
gboolean gst_v4l2_set_controls (GstV4l2Object * v4l2object, GstStructure * controls);
|
||||||
|
|
||||||
gboolean gst_v4l2_get_capabilities (GstV4l2Object * v4l2object);
|
|
||||||
|
|
||||||
G_END_DECLS
|
G_END_DECLS
|
||||||
|
|
||||||
#endif /* __GST_V4L2_OBJECT_H__ */
|
#endif /* __GST_V4L2_OBJECT_H__ */
|
||||||
|
|
|
@ -56,7 +56,7 @@ GST_DEBUG_CATEGORY_EXTERN (v4l2_debug);
|
||||||
* get the device's capturing capabilities
|
* get the device's capturing capabilities
|
||||||
* return value: TRUE on success, FALSE on error
|
* return value: TRUE on success, FALSE on error
|
||||||
******************************************************/
|
******************************************************/
|
||||||
gboolean
|
static gboolean
|
||||||
gst_v4l2_get_capabilities (GstV4l2Object * v4l2object)
|
gst_v4l2_get_capabilities (GstV4l2Object * v4l2object)
|
||||||
{
|
{
|
||||||
GstElement *e;
|
GstElement *e;
|
||||||
|
|
Loading…
Reference in a new issue