qcc51xx如何配置spdif输入

 qcc51xx如何配置spdif输入

/*
Copyright (c) 2005 - 2018 Qualcomm Technologies International, Ltd.
*/
/**
\file
\ingroup sink_app
\brief
    This file handles all Synchronous connection messages
 
*/
 
 
/****************************************************************************
    Header files
*/
#ifdef ENABLE_GAA
#include <sink2gaa.h>
#endif /* ENABLE_GAA */
#include "sink_private_data.h"
#include "sink_main_task.h"
#include "sink_audio.h"
#include "sink_hfp_data.h"
#include "sink_statemanager.h"
#include "sink_powermanager.h"
#include "sink_pio.h"
#include "sink_link_policy.h"
#include "sink_tones.h"
#include "sink_volume.h"
#include "sink_speech_recognition.h"
#include "sink_wired.h"
#include "sink_display.h"
#include "sink_audio_routing.h"
#include "sink_peer.h"
#include "sink_swat.h"
#include "sink_ba.h"
#include "sink_ba_broadcaster.h"
#include "sink_ble.h"
#include "sink_callmanager.h"
#include "sink_malloc_debug.h"
#include "sink_usb.h"
 
#include <audio_plugin_voice_variants.h>
#include <audio_plugin_output_variants.h>
#include <connection.h>
#include <hfp.h>
#include <stdlib.h>
#include <audio.h>
#include <audio_plugin_if.h>
#include <sink.h>
#include <bdaddr.h>
#include <inquiry.h>
#include "sink_sc.h"
#include "sink_gaia.h"
 
/* Audio params used for second SCO */
const hfp_audio_params multipoint_params = {8000, 7, sync_air_coding_cvsd, sync_retx_power_usage};
 
#define ALLOWANCE_FOR_TRANSITION_IN_HFP_CALL_STATE        1000
 
#ifdef DEBUG_AUDIO
 
#define AUD_DEBUG(x) DEBUG(x)
#else
#define AUD_DEBUG(x)
#endif
 
/****************************************************************************
NAME
    audioPriorLatency
 
DESCRIPTION
    Return initial latency estimate for given endpoint codec
 
RETURNS
    Predicted latency in milliseconds
*/
uint16 audioPriorLatency(uint8 seid)
{
    uint16 latency_ms;
 
#if defined ENABLE_PEER && defined PEER_TWS
    if (peerIsThisDeviceTwsSlave())
    {
        /* TWS Master will send time-to-play values when it relays, hence target latency on slave should be zero */
        latency_ms = AUDIO_LATENCY_TWS_NULL;
    }
    else
#endif /* defined ENABLE_PEER && defined PEER_TWS */
    {
        switch (seid & BASE_SEID_MASK)
        {
        case FASTSTREAM_SEID:
        case APTX_SPRINT_SEID:
        case APTX_LL_SEID:
            latency_ms = AUDIO_LATENCY_SHORT_MS;
            break;
 
        case APTXHD_SEID:
            latency_ms = AUDIO_LATENCY_LONG_MS;
            break;
 
        case AAC_SEID:
            /* Use the same latency for AAC regardless of whether we are in TWS or non-TWS use case
              * This will only work if the AAC decoder is capable of latency this high in non-TWS cases
              */
            latency_ms = AUDIO_LATENCY_AAC_MS;
            break;
 
        case APTX_SEID:
            latency_ms = AUDIO_LATENCY_APTX_MS;
            break;
 
        case SBC_SEID:
            latency_ms = AUDIO_LATENCY_SBC_MS;
            break;
 
        case MP3_SEID:
            latency_ms = AUDIO_LATENCY_MP3_MS;
            break;
 
        default:
            latency_ms = AUDIO_LATENCY_NORMAL_MS;
            break;
        }
    }
 
    AUD_DEBUG(("AUD: seid=%u latency=%u\n", seid, latency_ms));
    return latency_ms;
}
/****************************************************************************
NAME
    getScoPriorityFromHfpPriority
 
DESCRIPTION
    obtain the current sco priority level of the AG priority passed in
 
RETURNS
    current sco priority level, if any, may not have a sco
*/
audio_priority getScoPriorityFromHfpPriority(hfp_link_priority priority)
{
    AUD_DEBUG(("AUD: GetScoPriority - %d=%d\n",priority,sinkHfpDataGetScoPriority(PROFILE_INDEX(OTHER_PROFILE(priority))))) ;
    return sinkHfpDataGetScoPriority(PROFILE_INDEX(OTHER_PROFILE(priority)));
}
 
/****************************************************************************
NAME
    setScoPriorityFromHfpPriority
 
DESCRIPTION
    sets the current sco priority level of the AG priority passed in
 
RETURNS
    nothing
*/
void setScoPriorityFromHfpPriority(hfp_link_priority priority, audio_priority level)
{
    AUD_DEBUG(("AUD: SetScoPriority - %d=%d\n",priority,level)) ;
    if(priority != hfp_invalid_link)
      sinkHfpDataSetScoPriority(level,PROFILE_INDEX(OTHER_PROFILE(priority)));
}
 
 
/****************************************************************************
NAME
    audioGetLinkPriority
 
DESCRIPTION
    Common method of getting the link we want to manipulate audio settings on
 
RETURNS
 
*/
hfp_link_priority audioGetLinkPriority ( bool audio )
{
    hfp_link_priority priority;
 
    /* See if we can get a link from the device audio sink... */
    priority = HfpLinkPriorityFromAudioSink(sinkAudioGetRoutedVoiceSink());
 
    /* if the call is in outgoing call state */
    if(!priority)
        priority = HfpLinkPriorityFromCallState(hfp_call_state_outgoing);
 
    /* If that fails see if we have an active call... */
    if(priority == hfp_invalid_link)
        priority = HfpLinkPriorityWithActiveCall(audio);
 
    /* if there is an incoming call [get first incoming] */
    if(priority == hfp_invalid_link)
        priority = HfpGetFirstIncomingCallPriority();
 
    /* If we got something return it, otherwise return primary link */
    return ((priority != hfp_invalid_link) ? priority : hfp_primary_link);
}
 
/****************************************************************************
NAME
    audioSwapMediaChannel
 
DESCRIPTION
    attempt to swap between media channels if two channels exist and one of them
    is currentyl being routed to the speaker.
RETURNS
    successful or not status
*/
bool audioSwapMediaChannel(void)
{
    a2dp_stream_state a2dpStatePri = a2dp_stream_idle;
    a2dp_stream_state a2dpStateSec = a2dp_stream_idle;
    Sink a2dpSinkPri = 0;
    Sink a2dpSinkSec = 0;
 
    /* if a2dp connected obtain the current streaming state for primary a2dp connection */
    getA2dpStreamData(a2dp_primary, &a2dpSinkPri, &a2dpStatePri);
 
    /* if a2dp connected obtain the current streaming state for secondary a2dp connection */
    getA2dpStreamData(a2dp_secondary, &a2dpSinkSec, &a2dpStateSec);
 
    /* check whether a2dp pri is currently being routed and a2dp sec is available */
    if((sinkAudioGetRoutedAudioSink() == a2dpSinkPri)&&(a2dpSinkSec)&&(a2dpStateSec == a2dp_stream_streaming))
    {
        /* swap to a2dp secondary */
        audioDisconnectRoutedAudio();
        audioRouteSpecificA2dpSource(audio_source_a2dp_2);
        return TRUE;
    }
    /* check whether a2dp sec is currently being routed and swap to a2dp pri */
    else if((sinkAudioGetRoutedAudioSink() == a2dpSinkSec)&&(a2dpSinkPri)&&(a2dpStatePri == a2dp_stream_streaming))
    {
        audioDisconnectRoutedAudio();
        audioRouteSpecificA2dpSource(audio_source_a2dp_1);
        return TRUE;
    }
    /* not possible to swap media channels */
    return FALSE;
}
 
/****************************************************************************
NAME
    audioShutDownForUpgrade
 
DESCRIPTION
    Disconnects any routed voice/audio sources and once the audio busy 
    pointer is cleared, messages sink_upgrade to proceed
 
RETURNS
    void
*/
void audioShutDownForUpgrade(Task task, MessageId id)
{
    audioDisconnectRoutedVoice();
    audioSuspendDisconnectAudioSource();
 
    MessageSendConditionallyOnTask(task, id, NULL, AudioBusyPtr());
}
 
/****************************************************************************
NAME
    audioGetSettings
 

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/pingmian/20450.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

图像处理ASIC设计方法 笔记27 红外非均匀校正的两点定标校正算法

非均匀性校正(Non-Uniformity Correction, NUC)是一种在图像处理和传感器校准中常用的技术,用于改善图像传感器(如CCD或CMOS相机)的输出质量。这种校正主要针对传感器在不同像素之间可能存在的响应差异,这些差异可能是由于制造过程中的微小不完美导致的。 基本原理: 响应…

MAB规范(2):Introduction 介绍

Chapter1 Introduction 1.1 指南目的 MathWorks咨询委员会&#xff08;MAB&#xff09;指南规定了Simulink和Stateflow建模的重要基本规则。这些建模指南的总体目的是让建模者和控制系统模型的使用者能够简单、共同地理解。 指南的主要目标是&#xff1a; • 可读性  提高…

CentOS8安装opensips 3.5

环境&#xff1a;阿里云 操作系统CentOS8.5 依赖包安装&#xff1a; libmicrohttpd cd /usr/local/src wget https://ftp.gnu.org/gnu/libmicrohttpd/libmicrohttpd-latest.tar.gz tar vzxf libmicrohttpd-latest.tar.gz cd libmicrohttpd-1.0.1/./configure make make …

联芸科技偏高的关联交易:业绩波动性明显,海康威视曾拥有一票否决

《港湾商业观察》施子夫 5月31日&#xff0c;上交所上市审核委员会将召开2024年第14次审议会议&#xff0c;届时将审议联芸科技&#xff08;杭州&#xff09;股份有限公司招股书&#xff08;以下简称&#xff0c;联芸科技&#xff09;的首发上会事项。 据悉&#xff0c;此次系…

Github 2024-05-31 Java开源项目日报 Top10

根据Github Trendings的统计,今日(2024-05-31统计)共有10个项目上榜。根据开发语言中项目的数量,汇总情况如下: 开发语言项目数量Java项目10TypeScript项目1JavaGuide - Java 程序员学习和面试指南 创建周期:2118 天开发语言:Java协议类型:Apache License 2.0Star数量:1…

Rust 第三方库创建和导入(cargo --lib)

前言 日常开发过程中&#xff0c;难免会有一些工具方法&#xff0c;多个项目之间可能会重复使用。 所以将这些方法集成到一个第三方包中方便后期维护和管理&#xff0c; 比如工具函数如果需要修改&#xff0c;多个项目可能每个都需要改代码&#xff0c; 抽离到单独的包中只需要…

SG7050EEN差分晶体振荡器:为5G路由器提供卓越的时钟源

随着5G技术的快速发展&#xff0c;5G路由器作为连接高速网络的重要设备&#xff0c;正迅速普及。为了确保5G路由器在高宽带和低延迟的网络环境中表现出色&#xff0c;选择一款高性能的晶体振荡器至关重要。爱普生推出的SG7050EEN差分晶体振荡器&#xff0c;以其高精度、低相位噪…

【linux软件基础知识】链表数据结构

双向循环链表 新链表是用LIST_HEAD(list_name)宏创建的。如上图中的(b)空链表所示,它申明类型为 list head的变量name,该变量作为新链表头的占位符。LIST_HEAD(list_name)宏还初始化 list head数据结构的 prev和next 字段,让它们指向list_name 变量本身。代码如下 #define…

0基础学习Elasticsearch-Quick start

文章目录 1 背景2 前言3 快速部署ES4 快速部署Kibana5 发送请求给ES5.1 打开Kibana控制台5.2 通过REST API发送请求5.3 通过curl发送请求5.4 添加数据5.4.1 添加单个document5.4.2 添加多个document 5.5 搜索数据5.5.1 搜索所有documents5.5.2 match查询 6 总结 1 背景 因电商项…

Facebook代理商Facebook三不限户、二不限户、BM户的区别

随着全球化的发展&#xff0c;人们之间的交流和交易越来越频繁&#xff0c;越来越多的人开始使用互联网来处理自己的事务。这其中&#xff0c;Facebook&#xff08;脸书&#xff09;作为全球最大的社交媒体平台之一&#xff0c;拥有海内外两种不同类型的账户——Facebook海外户…

【算法】模拟算法——外观数组(medium)

题解&#xff1a;模拟算法——外观数组(medium) 目录 1.题目2.题解3.参考代码4.总结 1.题目 题目链接&#xff1a;LINK 2.题解 首先应该理解题意&#xff1a; 就是开始给你一个字符串&#xff0c;然后你对其进行描述。 描述规则是&#xff1a;连续的数字为一组&#xff0c;…

一、大模型推理

https://github.com/hiyouga/LLaMA-Factory/blob/main/README_zh.md https://github.com/hiyouga/LLaMA-Factory/blob/main/examples/README_zh.md 安装 v7.1 https://github.com/hiyouga/LLaMA-Factory/releases/tag/v0.7.1 git clone --depth 1 https://github.com/hiyoug…

docker 快速搭建django项目环境(DockerFile)文件基础搭建

首先需要搭建好docker环境&#xff0c;docker环境就不在这里叙述&#xff0c;如果想学在评论区留言小编后期更新由linux系统到docker的安装做一个详细的教程。 下面我们开始今天的重点&#xff1a; 1、第一步&#xff1a;我们在任意&#xff08;linux&#xff09;路径下创建Do…

Python Flask是什么:深入解析与实用指南

Python Flask是什么&#xff1a;深入解析与实用指南 在当今的Web开发领域中&#xff0c;Flask作为一个轻量级的Python Web框架&#xff0c;逐渐受到广大开发者的青睐。然而&#xff0c;对于许多初学者而言&#xff0c;Flask可能还是一个充满困惑和未知的领域。那么&#xff0c…

C++(11): set与multiset

目录 1. 简述 2. std::set 3. API &#xff08;1&#xff09;元素插入 &#xff08;2&#xff09;元素删除 &#xff08;3&#xff09;特定元素查找 &#xff08;4&#xff09;清空元素 &#xff08;5&#xff09;元素个数 &#xff08;6&#xff09;set能够容纳的最大…

Python中ignore用法的深度解析

Python中ignore用法的深度解析 在Python编程中&#xff0c;ignore这个词汇常常与多种功能关联&#xff0c;包括但不限于异常处理、文件读写时的忽略特定字符或行&#xff0c;以及正则表达式中的忽略大小写等。本文将深入剖析Python中ignore的各种用法&#xff0c;旨在帮助读者…

【设计模式深度剖析】【B】【结构型】【对比】| 主要区别包装的不同

&#x1f448;️上一篇:享元模式 回 顾&#xff1a;结构型设计模式 1.代理模式&#x1f448;️ 2.装饰器模式&#x1f448;️ 3.适配器模式&#x1f448;️ 4.组合模式&#x1f448;️ 5.桥接模式&#x1f448;️ 6.外观模式&#x1f448;️ 7.享元模式&#x…

jmeter性能测试用例提取

性能测试用例提取参考(根据单、混合场景、模块、运行时间、优先级)去考虑 Tips&#xff1a;用例提取和用例设计不一样 后期可以结合性能测试用例设计(设置线程数、时间、循环、同步定时器等等&#xff09;来做性能测试

Python 字符串的修剪、拆分与合并

一、字符串的修剪 在Python中&#xff0c;字符串的修剪&#xff08;去除字符串两端的空格或特定字符&#xff09;可以通过以下方法实现&#xff1a; 1、strip(): strip() 方法用于去除字符串两端的空格或指定字符&#xff08;默认为空格&#xff09;。例&#xff1a; s &qu…

使用Go和Node.js构建用静态脚本进行数据解析的TCP服务器

在本文中&#xff0c;我们将介绍如何使用Go编程语言构建一个TCP服务器&#xff0c;该服务器接收客户端发送的数据&#xff0c;使用Node.js脚本处理数据&#xff0c;然后将处理后的数据返回给客户端。 程序概述 该程序包含以下主要部分: processWithJS函数&#xff0c;用于调…