mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-25 01:30:38 +00:00
bluez: First attempt in fixing compiler warnings (still needs cleanup)
This commit is contained in:
parent
8b5d0aba41
commit
441a82cb6b
3 changed files with 8 additions and 5 deletions
|
@ -30,6 +30,8 @@
|
||||||
|
|
||||||
#include "gsta2dpsink.h"
|
#include "gsta2dpsink.h"
|
||||||
|
|
||||||
|
GType gst_avdtp_sink_get_type (void);
|
||||||
|
|
||||||
GST_DEBUG_CATEGORY_STATIC (gst_a2dp_sink_debug);
|
GST_DEBUG_CATEGORY_STATIC (gst_a2dp_sink_debug);
|
||||||
#define GST_CAT_DEFAULT gst_a2dp_sink_debug
|
#define GST_CAT_DEFAULT gst_a2dp_sink_debug
|
||||||
|
|
||||||
|
|
|
@ -21,13 +21,13 @@
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
#ifndef __GST_A2DP_SINK_H__
|
||||||
|
#define __GST_A2DP_SINK_H__
|
||||||
|
|
||||||
#include <gst/gst.h>
|
#include <gst/gst.h>
|
||||||
#include <gst/rtp/gstbasertppayload.h>
|
#include <gst/rtp/gstbasertppayload.h>
|
||||||
#include "gstavdtpsink.h"
|
#include "gstavdtpsink.h"
|
||||||
|
|
||||||
#ifndef __GST_A2DP_SINK_H__
|
|
||||||
#define __GST_A2DP_SINK_H__
|
|
||||||
|
|
||||||
G_BEGIN_DECLS
|
G_BEGIN_DECLS
|
||||||
|
|
||||||
#define GST_TYPE_A2DP_SINK \
|
#define GST_TYPE_A2DP_SINK \
|
||||||
|
@ -72,7 +72,8 @@ struct _GstA2dpSinkClass {
|
||||||
GstBinClass parent_class;
|
GstBinClass parent_class;
|
||||||
};
|
};
|
||||||
|
|
||||||
GType gst_a2dp_sink_get_type(void);
|
//GType gst_a2dp_sink_get_type(void);
|
||||||
|
|
||||||
gboolean gst_a2dp_sink_plugin_init (GstPlugin * plugin);
|
gboolean gst_a2dp_sink_plugin_init (GstPlugin * plugin);
|
||||||
|
|
||||||
GstCaps *gst_a2dp_sink_get_device_caps(GstA2dpSink *self);
|
GstCaps *gst_a2dp_sink_get_device_caps(GstA2dpSink *self);
|
||||||
|
|
|
@ -75,7 +75,7 @@ struct _GstAvdtpSinkClass {
|
||||||
GstBaseSinkClass parent_class;
|
GstBaseSinkClass parent_class;
|
||||||
};
|
};
|
||||||
|
|
||||||
GType gst_avdtp_sink_get_type(void);
|
//GType gst_avdtp_sink_get_type(void);
|
||||||
|
|
||||||
GstCaps *gst_avdtp_sink_get_device_caps(GstAvdtpSink *sink);
|
GstCaps *gst_avdtp_sink_get_device_caps(GstAvdtpSink *sink);
|
||||||
gboolean gst_avdtp_sink_set_device_caps(GstAvdtpSink *sink,
|
gboolean gst_avdtp_sink_set_device_caps(GstAvdtpSink *sink,
|
||||||
|
|
Loading…
Reference in a new issue