OSDN Git Service

android/A2DP: Add stream suspend command/response struct
authorLuiz Augusto von Dentz <luiz.von.dentz@intel.com>
Fri, 27 Dec 2013 13:22:32 +0000 (15:22 +0200)
committerLuiz Augusto von Dentz <luiz.von.dentz@intel.com>
Tue, 7 Jan 2014 11:37:53 +0000 (13:37 +0200)
This adds the definitions to stream suspend command and response.

android/a2dp.c
android/audio-msg.h

index 5d540f3..b59c53d 100644 (file)
@@ -389,6 +389,13 @@ static void bt_stream_resume(const void *buf, uint16_t len)
        audio_ipc_send_rsp(AUDIO_OP_RESUME_STREAM, AUDIO_STATUS_FAILED);
 }
 
+static void bt_stream_suspend(const void *buf, uint16_t len)
+{
+       DBG("Not Implemented");
+
+       audio_ipc_send_rsp(AUDIO_OP_SUSPEND_STREAM, AUDIO_STATUS_FAILED);
+}
+
 static const struct ipc_handler audio_handlers[] = {
        /* AUDIO_OP_OPEN */
        { bt_audio_open, true, sizeof(struct audio_cmd_open) },
@@ -400,6 +407,8 @@ static const struct ipc_handler audio_handlers[] = {
        { bt_stream_close, false, sizeof(struct audio_cmd_close_stream) },
        /* AUDIO_OP_RESUME_STREAM */
        { bt_stream_resume, false, sizeof(struct audio_cmd_resume_stream) },
+       /* AUDIO_OP_SUSPEND_STREAM */
+       { bt_stream_suspend, false, sizeof(struct audio_cmd_suspend_stream) },
 };
 
 bool bt_a2dp_register(const bdaddr_t *addr)
index 8f92413..438bc18 100644 (file)
@@ -77,3 +77,8 @@ struct audio_cmd_close_stream {
 struct audio_cmd_resume_stream {
        uint8_t id;
 } __attribute__((packed));
+
+#define AUDIO_OP_SUSPEND_STREAM                0x06
+struct audio_cmd_suspend_stream {
+       uint8_t id;
+} __attribute__((packed));