2018-01-15 11:47:23 +00:00
|
|
|
/*
|
|
|
|
This example code is in the Public Domain (or CC0 licensed, at your option.)
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, this
|
|
|
|
software is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
|
|
|
|
CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
*/
|
2017-04-12 08:42:14 +00:00
|
|
|
|
|
|
|
#ifndef __BT_APP_AV_H__
|
|
|
|
#define __BT_APP_AV_H__
|
|
|
|
|
|
|
|
#include <stdint.h>
|
|
|
|
#include "esp_a2dp_api.h"
|
|
|
|
#include "esp_avrc_api.h"
|
|
|
|
|
|
|
|
#define BT_AV_TAG "BT_AV"
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief callback function for A2DP sink
|
|
|
|
*/
|
|
|
|
void bt_app_a2d_cb(esp_a2d_cb_event_t event, esp_a2d_cb_param_t *param);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief callback function for A2DP sink audio data stream
|
|
|
|
*/
|
|
|
|
void bt_app_a2d_data_cb(const uint8_t *data, uint32_t len);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief callback function for AVRCP controller
|
|
|
|
*/
|
|
|
|
void bt_app_rc_ct_cb(esp_avrc_ct_cb_event_t event, esp_avrc_ct_cb_param_t *param);
|
|
|
|
|
|
|
|
#endif /* __BT_APP_AV_H__*/
|