diff options
Diffstat (limited to 'audio/gsta2dpsendersink.h')
-rw-r--r-- | audio/gsta2dpsendersink.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/audio/gsta2dpsendersink.h b/audio/gsta2dpsendersink.h index 863ef6cb..f23c86b2 100644 --- a/audio/gsta2dpsendersink.h +++ b/audio/gsta2dpsendersink.h @@ -56,6 +56,11 @@ struct _GstA2dpSenderSink { struct bluetooth_data *data; GIOChannel *server; + /* mp3 stream data (outside caps data)*/ + gboolean mpeg_stream_changed; + gint mp3_using_crc; + gint channel_mode; + /* stream connection data */ GstCaps *stream_caps; @@ -85,6 +90,12 @@ gchar *gst_a2dp_sender_sink_get_device(GstA2dpSenderSink *sink); gboolean gst_a2dp_sender_sink_plugin_init(GstPlugin *plugin); +void gst_a2dp_sender_sink_set_crc(GstA2dpSenderSink *self, gboolean crc); + +void gst_a2dp_sender_sink_set_channel_mode(GstA2dpSenderSink *self, + const gchar *mode); + + G_END_DECLS #endif /* __GST_A2DP_SENDER_SINK_H */ |