pinebuds/services/ibrt_core/inc/app_tws_ibrt_audio_analysis.h

88 lines
3.2 KiB
C
Raw Normal View History

2022-08-15 04:20:27 -05:00
/***************************************************************************
*
* Copyright 2015-2019 BES.
* All rights reserved. All unpublished rights reserved.
*
* No part of this work may be used or reproduced in any form or by any
* means, or stored in a database or retrieval system, without prior written
* permission of BES.
*
* Use of this work is governed by a license granted by BES.
* This work contains confidential and proprietary information of
* BES. which is protected by copyright, trade secret,
* trademark and other intellectual property rights.
*
****************************************************************************/
#ifndef __APP_TWS_IBRT_AUDIO_ANALYSIS_H__
#define __APP_TWS_IBRT_AUDIO_ANALYSIS_H__
#define AUDIO_ANALYSIS_INTERVAL (25)
#define AUDIO_ANALYSIS_CHECKER_INTERVEL_INVALID (1000)
typedef struct {
uint32_t timestamp;
uint16_t sequenceNumber;
uint16_t curSubSequenceNumber;
uint16_t totalSubSequenceNumber;
uint16_t frame_samples;
uint32_t decoded_frames;
uint8_t undecode_frames;
uint8_t undecode_min_frames;
uint8_t undecode_max_frames;
uint8_t average_frames;
uint32_t sample_rate;
#if A2DP_DECODER_CHECKER
uint32_t check_sum;
#endif
} APP_TWS_IBRT_AUDIO_ANALYSIS_PLAYBACK_INFO_T;
typedef struct {
APP_TWS_IBRT_AUDIO_ANALYSIS_PLAYBACK_INFO_T playback_info;
uint16_t mobile_cnt;
uint16_t bt_cnt;
uint32_t bt_clk;
uint32_t mobile_clk;
uint32_t handler_cnt;
int8_t compensate_cnt;
bool updated;
} APP_TWS_IBRT_AUDIO_ANALYSIS_INFO_T;
typedef struct {
uint32_t tws_diff_clk;
uint16_t tws_diff_bit;
int32_t tws_diff_us;
uint32_t mobile_diff_clk;
uint16_t mobile_diff_cnt;
int32_t mobile_diff_us;
} APP_TWS_IBRT_AUDIO_ANALYSIS_RESULT_T;
typedef enum {
AUDIO_ANALYSIS_STATUS_STOP,
AUDIO_ANALYSIS_STATUS_SUSPEND,
AUDIO_ANALYSIS_STATUS_START,
AUDIO_ANALYSIS_STATUS_DATA_VALID
}AUDIO_ANALYSIS_STATUS_E;
void app_tws_ibrt_audio_mobile_clkcnt_get(uint32_t btclk, uint16_t btcnt,
uint32_t *mobile_master_clk, uint16_t *mobile_master_cnt);
APP_TWS_IBRT_AUDIO_ANALYSIS_RESULT_T *app_tws_ibrt_audio_analysis_result_get(void);
APP_TWS_IBRT_AUDIO_ANALYSIS_INFO_T *app_tws_ibrt_audio_analysis_local_info_get(void);
APP_TWS_IBRT_AUDIO_ANALYSIS_INFO_T *app_tws_ibrt_audio_analysis_remote_info_get(void);
int app_tws_ibrt_audio_analysis_status_get(void);
int app_tws_ibrt_audio_analysis_init(void);
int app_tws_ibrt_audio_analysis_start(uint32_t start_offset, uint32_t checker_intervel);
int app_tws_ibrt_audio_analysis_stop(void);
int app_tws_ibrt_audio_analysis_suspend(void);
int app_tws_ibrt_audio_analysis_resume(void);
int app_tws_ibrt_audio_analysis_skipnext(void);
uint32_t app_tws_ibrt_audio_analysis_interval_get(void);
int app_tws_ibrt_audio_analysis_interval_set(uint32_t analysis_interval);
uint32_t app_tws_ibrt_audio_analysis_tick_get(void);
int app_tws_ibrt_audio_analysis(APP_TWS_IBRT_AUDIO_ANALYSIS_INFO_T *local_info ,
APP_TWS_IBRT_AUDIO_ANALYSIS_INFO_T *remote_info);
void app_tws_ibrt_audio_analysis_interrupt_tick(void);
void app_tws_ibrt_audio_analysis_audiohandler_tick(void);
#endif