KKopyscinski commented on code in PR #1675:
URL: https://github.com/apache/mynewt-nimble/pull/1675#discussion_r1505462253


##########
nimble/host/include/host/ble_audio_codec.h:
##########
@@ -0,0 +1,201 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *  http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+
+#ifndef H_BLE_AUDIO_CODEC_
+#define H_BLE_AUDIO_CODEC_
+
+/**
+ * @file ble_audio_codec.h
+ *
+ * @brief Bluetooth LE Audio Codec
+ *
+ * This header file provides the public API for managing LE Audio Codecs
+ *
+ * @defgroup ble_audio_codec Bluetooth LE Audio Codec
+ * @ingroup bt_host
+ * @{
+ *
+ * This API allows to create and manage list of LE Audio codecs with their 
capabilities and
+ * metadata. This list can be used by higher level services, like PACS. Memory 
management of
+ * codec entries is left to application and neither static nor dynamic 
allocation is enforced.
+ *
+ */
+
+#include "stdint.h"
+#include "ble_audio_common.h"
+
+#define BLE_AUDIO_CODEC_FLAG_SOURCE                             0x01
+#define BLE_AUDIO_CODEC_FLAG_SINK                               0x02
+
+/** OP Codes for Codec events */
+enum ble_audio_codec_event_op {
+    /** Codec was registered */
+    BLE_AUDIO_CODEC_REGISTERED_EVENT,
+    /** Codec was unregistered */
+    BLE_AUDIO_CODEC_UNREGISTERED_EVENT
+};
+
+/** Codec list entry */
+struct ble_audio_codec_record {
+    /* Pointer to next codec list entry */
+    STAILQ_ENTRY(ble_audio_codec_record) next;
+
+    /* Codec ID */
+    struct ble_audio_codec_id codec_id;
+
+    /* Length of Codec Specific Capabilities */
+    uint8_t codec_spec_caps_len;
+
+    /* Codec Specific Capabilities data */
+    const uint8_t *codec_spec_caps;
+
+    /* Metadata length */
+    uint8_t metadata_len;
+
+    /* Metadata */
+    const uint8_t *metadata;
+
+    /* Codec entry flags. It is any combination of following flags:
+     *  - BLE_AUDIO_CODEC_FLAG_SOURCE
+     *  - BLE_AUDIO_CODEC_FLAG_SINK
+     */
+    uint8_t flags;

Review Comment:
   I'll change it to bits as in 
https://github.com/apache/mynewt-nimble/pull/1675#discussion_r1502183969 And I 
think it's good idea to change `ble_svc_audio_pacs_set` too: rename `flags` 
argument to direction, and change `switch` statement to ifs, so we can set both 
at the same time, if params are to be the same. That way, we can truly use bits 
for marking both directions



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to