當(dāng)前位置:首頁 > 芯聞號 > 充電吧
[導(dǎo)讀]一. 介紹 ????? ALSA 標(biāo)準(zhǔn)是一個先進(jìn)的linux聲音體系。它包含內(nèi)核驅(qū)動集合,API庫和工具對Linux聲音進(jìn)行支持。ALSA 包含一系列內(nèi)核驅(qū)動對不同的聲卡進(jìn)行支持,還提供了libaso

一. 介紹

????? ALSA 標(biāo)準(zhǔn)是一個先進(jìn)的linux聲音體系。它包含內(nèi)核驅(qū)動集合,API庫和工具對Linux聲音進(jìn)行支持。ALSA 包含一系列內(nèi)核驅(qū)動對不同的聲卡進(jìn)行支持,還提供了libasound的API庫。用這些進(jìn)行寫程序不需要打開設(shè)備等操作,所以編程人員在寫程序的時候不會被底層的東西困擾。與此相反OSS/Free 驅(qū)動在內(nèi)核層次調(diào)用,需要指定設(shè)備名和調(diào)用ioctl。為提供向后兼容, ALSA 提供內(nèi)核模塊模仿 OSS/Free 驅(qū)動,所以大多數(shù)的程序不需要改動。 ALSA 擁有調(diào)用插件的能力對新設(shè)備提供擴(kuò)展,包括那些用軟件模擬出來的虛擬設(shè)備。 ALSA 還提供一組命令行工具包括? mixer, sound file player 和工具控制一些特別的聲卡的特別的作用。

?

二.ALSA 體系:

ALSA API 被主要分為以下幾種接口:

l???????? 控制接口:提供靈活的方式管理注冊的聲卡和對存在的聲卡進(jìn)行查詢。

l???????? PCM接口:提供管理數(shù)字音頻的捕捉和回放。

l???????? 原始 MIDI 接口: 支持 MIDI (Musical Instrument Digital Interface), 一種標(biāo)準(zhǔn)電子音樂指令集。 這些 API 提供訪問聲卡上的 MIDI 總線。這些原始借口直接工作在 The? MIDI 事件上,程序員只需要管理協(xié)議和時間。

l???????? 記時接口: 為支持聲音的同步事件提供訪問聲卡上的定時器。

l???????? 音序器接口:一個比原始MIDI接口高級的MIDI編程和聲音同步高層接口。它可以處理很多的MIDI協(xié)議和定時器。

l???????? 混音器接口:控制發(fā)送信號和控制聲音大小的聲卡上的設(shè)備。

?

三.聲卡的緩存和數(shù)據(jù)的傳輸:

????? 一塊聲卡有一個聲卡內(nèi)存用來存儲記錄的樣本。當(dāng)它被寫滿時就產(chǎn)生中斷。內(nèi)核驅(qū)動就使用DMA將數(shù)據(jù)傳輸?shù)絻?nèi)存中。同樣地,當(dāng)在播放時就將內(nèi)存中的聲音樣本使用DMA傳到聲卡的內(nèi)存中!

????? 聲卡的緩存是環(huán)狀的,這里只討論應(yīng)用程序中的內(nèi)存結(jié)構(gòu):ALSA將數(shù)據(jù)分成連續(xù)的片段然后傳到按單元片段傳輸。

?

四:典型的聲音程序結(jié)構(gòu):

??????? open interface for capture or playback

??????? set hardware parameters

??????? (access mode, data format, channels, rate, etc.)

??????? while there is data to be processed:

??????? read PCM data (capture)

?????? ?or write PCM data (playback)

??????? close interface

?

五.一些例子: 1.顯示一些PCM的類型和格式:

?

#include

#include

?

int main()

{

?????? std::cout << "ALSA library version: " << SND_LIB_VERSION_STR << std::endl;

?

?????? std::cout << "PCM stream types: " << std::endl;

?

?????? for (int val=0; val <= SND_PCM_STREAM_LAST; ++val)

????????????? std::cout << snd_pcm_stream_name((snd_pcm_stream_t)val) << std::endl;

?????? std::cout << std::endl;

?

?????? std::cout << "PCM access types: " << std::endl;

?????? for (int val=0; val <= SND_PCM_ACCESS_LAST; ++val)

????????????? std::cout << snd_pcm_access_name((snd_pcm_access_t)val) << std::endl;

?????? std::cout << std::endl;

?

?????? std::cout << "PCM subformats: " << std::endl;

?????? for (int val=0; val <= SND_PCM_SUBFORMAT_LAST; ++val)

????????????? std::cout << snd_pcm_subformat_name((snd_pcm_subformat_t)val) << " (" << snd_pcm_subformat_description((snd_pcm_subformat_t)val) << ")" << std::endl;

?????? std::cout << std::endl;

?

?????? std::cout << "PCM states: " << std::endl;

?????? for (int val=0; val <= SND_PCM_STATE_LAST; ++val)

????????????? std::cout << snd_pcm_state_name((snd_pcm_state_t)val) << std::endl;

?????? std::cout << std::endl;

?

?

?????? std::cout << "PCM formats: " << std::endl;

?????? for (int val=0; val <= SND_PCM_FORMAT_LAST; ++val)

????????????? std::cout << snd_pcm_format_name((snd_pcm_format_t)val) << " (" << snd_pcm_format_description((snd_pcm_format_t)val) << ")" << std::endl;

?????? std::cout << std::endl;

??????

}

?

2.打開PCM設(shè)備和設(shè)置參數(shù)

?

#include

#include

?

int main()

{

?????? int ????????????????????????????? rc;

?????? snd_pcm_t*???????????????????????? handle;

?????? snd_pcm_hw_params_t*????? params;

?????? unsigned int????????????????? val, val2;

?????? int ????????????????????????????? dir;

?????? snd_pcm_uframes_t???????????? frames;

?

?????? if ( (rc = snd_pcm_open(&handle, "default", SND_PCM_STREAM_PLAYBACK, 0)) < 0)

?????? {

????????????? std::cerr << "unable to open pcm devices: " << snd_strerror(rc) << std::endl;

????????????? exit(1);

?????? }

?

?????? snd_pcm_hw_params_alloca(¶ms);

?

?????? snd_pcm_hw_params_any(handle, params);

?

?????? snd_pcm_hw_params_set_access(handle, params, SND_PCM_ACCESS_RW_INTERLEAVED);

?

?????? snd_pcm_hw_params_set_format(handle, params, SND_PCM_FORMAT_S16_LE);

?

?????? snd_pcm_hw_params_set_channels(handle, params, 2);

?

?????? val = 44100;

?

?????? snd_pcm_hw_params_set_rate_near(handle, params, &val, &dir);

?

?????? if ( (rc = snd_pcm_hw_params(handle, params)) < 0)

?????? {

????????????? std::cerr << "unable to set hw parameters: " << snd_strerror(rc) << std::endl;

????????????? exit(1);

?????? }

?

?????? std::cout << "PCM handle name = " << snd_pcm_name(handle) << std::endl;

?

?????? std::cout << "PCM state = " << snd_pcm_state_name(snd_pcm_state(handle)) << std::endl;

?

?????? snd_pcm_hw_params_get_access(params, (snd_pcm_access_t *)&val);

?

?????? std::cout << "access type = " << snd_pcm_access_name((snd_pcm_access_t)val) << std::endl;

?

?????? snd_pcm_hw_params_get_format(params, (snd_pcm_format_t*)(&val));

??????

?????? std::cout << "format = '" << snd_pcm_format_name((snd_pcm_format_t)val) << "' (" << snd_pcm_format_description((snd_pcm_format_t)val) << ")" << std::endl;

?

? ??? snd_pcm_hw_params_get_subformat(params, (snd_pcm_subformat_t *)&val);

? ??? std::cout << "subformat = '" <<

??? snd_pcm_subformat_name((snd_pcm_subformat_t)val) << "' (" << snd_pcm_subformat_description((snd_pcm_subformat_t)val) << ")" << std::endl;

?

? ??? snd_pcm_hw_params_get_channels(params, &val);

? ??? std::cout << "channels = " << val << std::endl;

?

????? snd_pcm_hw_params_get_rate(params, &val, &dir);

? ??? std::cout << "rate = " << val << " bps" << std::endl;

?

?????? snd_pcm_hw_params_get_period_time(params, &val, &dir);

? ??? std::cout << "period time = " << val << " us" << std::endl;

?

? ??? snd_pcm_hw_params_get_period_size(params, &frames, &dir);

? ??? std::cout << "period size = " << static_cast(frames) << " frames" << std::endl;

?

?????? snd_pcm_hw_params_get_buffer_time(params, &val, &dir);

? ??? std::cout << "buffer time = " << val << " us" << std::endl;

??????

?????? snd_pcm_hw_params_get_buffer_size(params, (snd_pcm_uframes_t *) &val);

? ??? std::cout << "buffer size = " << val << " frames" << std::endl;

?

? ??? snd_pcm_hw_params_get_periods(params, &val, &dir);

? ??? std::cout << "periods per buffer = " << val << " frames" << std::endl;

?

?????? snd_pcm_hw_params_get_rate_numden(params, &val, &val2);

? ??? std::cout << "exact rate = " << val/val2 << " bps" << std::endl;

??????

? ??? val = snd_pcm_hw_params_get_sbits(params);

? ??? std::cout << "significant bits = " << val << std::endl;

?

? ??? snd_pcm_hw_params_get_tick_time(params, &val, &dir);

? ??? std::cout << "tick time = " << val << " us" << std::endl;

?

? ??? val = snd_pcm_hw_params_is_batch(params);

? ??? std::cout << "is batch = " << val << std::endl;

?

? ??? val = snd_pcm_hw_params_is_block_transfer(params);

? ??? std::cout << "is block transfer = " << val << std::endl;

?

? ??? val = snd_pcm_hw_params_is_double(params);

? ??? std::cout << "is double = " << val << std::endl;

?

?????? val = snd_pcm_hw_params_is_half_duplex(params);

? ??? std::cout << "is half duplex = " << val << std::endl;

?

?????? val = snd_pcm_hw_params_is_joint_duplex(params);

? ??? std::cout << "is joint duplex = " << val << std::endl;

?

?????? val = snd_pcm_hw_params_can_overrange(params);

? ??? std::cout << "can overrange = " << val << std::endl;

?

? ??? val = snd_pcm_hw_params_can_mmap_sample_resolution(params);

? ??? std::cout << "can mmap = " << val << std::endl;

?

? ??? val = snd_pcm_hw_params_can_pause(params);

? ??? std::cout << "can pause = " << val << std::endl;

?

?????? val = snd_pcm_hw_params_can_resume(params);

? ??? std::cout << "can resume = " << val << std::endl;

?

? ??? val = snd_pcm_hw_params_can_sync_start(params);

? ??? std::cout << "can sync start = " << val << std::endl;

?

????? snd_pcm_close(handle);

?

? ??? return 0;

}

?

3.一個簡單的聲音播放程序

?

#include

#include

?

int main()

{

?????? long???????????????????????????? loops;

?????? int ????????????????????????????? rc;

?????? int?????????????????????????????????????? size;

?????? snd_pcm_t*???????????????????????? handle;

?????? snd_pcm_hw_params_t*????? params;

?????? unsigned int????????????????? val;

?????? int ????????????????????????????? dir;

?????? snd_pcm_uframes_t???????????? frames;

?????? char*????????????????????????????????? buffer;

?

?????? if ( (rc = snd_pcm_open(&handle, "default", SND_PCM_STREAM_PLAYBACK, 0)) < 0)

?????? {

????????????? std::cerr << "unable to open pcm device: " << snd_strerror(rc) << std::endl;

????????????? exit(1);

?????? }

?

?????? snd_pcm_hw_params_alloca(¶ms);

?

?????? snd_pcm_hw_params_any(handle, params);

?

?????? snd_pcm_hw_params_set_access(handle, params, SND_PCM_ACCESS_RW_INTERLEAVED);

?

?????? snd_pcm_hw_params_set_format(handle, params, SND_PCM_FORMAT_S16_LE);

?

?????? snd_pcm_hw_params_set_channels(handle, params, 2);

?

?????? val = 44100;

?

?????? snd_pcm_hw_params_set_rate_near(handle, params, &val, &dir);

?

?????? frames = 32;

?????? snd_pcm_hw_params_set_period_size_near(handle, params, &frames, &dir);

?

?????? if ( (rc = snd_pcm_hw_params(handle, params)) < 0)

?????? {

????????????? std::cerr << "unable to set hw paramseters: " << snd_strerror(rc) << std::endl;

????????????? exit(1);

?????? }

?

?????? snd_pcm_hw_params_get_period_size(params, &frames, &dir);

?????? size = frames * 4;

?????? buffer = new char[size];

?

?????? snd_pcm_hw_params_get_period_time(params, &val, &dir);

?

?????? loops = 5000000 / val;

?

?????? while (loops > 0) {

????????????? loops--;

????????????? if ( (rc = read(0, buffer, size)) == 0)

????????????? {

???????????????????? std::cerr << "end of file on input" << std::endl;

???????????????????? break;

????????????? }

????????????? else if (rc != size)

???????????????????? std::cerr << "short read: read " << rc << " bytes" << std::endl;

?

????????????? if ( (rc = snd_pcm_writei(handle, buffer, frames)) == -EPIPE)

????????????? {

???????????????????? std::cerr << "underrun occurred" << std::endl;

???????????????????? snd_pcm_prepare(handle);

????????????? }

????????????? else if (rc < 0)

???????????????????? std::cerr << "error from writei: " << snd_strerror(rc) << std::endl;

????????????? else if (rc != (int)frames)

???????????????????? std::cerr << "short write, write " << rc << " frames" << std::endl;

?????? }

?

?????? snd_pcm_drain(handle);

?????? snd_pcm_close(handle);

?????? free(buffer);

?

?????? return 0;

}

4.一個簡單的記錄聲音的程序

?

#include

#include

?

int main()

{

?????? long???????????????????????????? loops;

?????? int?????????????????????????????????????? rc;

?????? int?????????????????????????????????????? size;

?????? snd_pcm_t*???????????????????????? handle;

?????? snd_pcm_hw_params_t*????? params;

?????? unsigned int????????????????? val;

?????? int?????????????????????????????????????? dir;

?????? snd_pcm_uframes_t???????????? frames;

?????? char*????????????????????????????????? buffer;

?

?????? if ( (rc = snd_pcm_open(&handle, "default", SND_PCM_STREAM_CAPTURE, 0)) < 0)

?????? {

????????????? std::cerr << "unable to open pcm device: " << snd_strerror(rc) << std::endl;

????????????? exit(1);

?????? }

?

?????? snd_pcm_hw_params_alloca(¶ms);

?

?????? snd_pcm_hw_params_any(handle, params);

?

?????? snd_pcm_hw_params_set_access(handle, params, SND_PCM_ACCESS_RW_INTERLEAVED);

?

?????? snd_pcm_hw_params_set_format(handle, params, SND_PCM_FORMAT_S16_LE);

?

?????? snd_pcm_hw_params_set_channels(handle, params, 2);

?

?????? val = 44100;

?????? snd_pcm_hw_params_set_period_size_near(handle, params, &frames, &dir);

?

?????? if ( (rc = snd_pcm_hw_params(handle, params)) < 0)

?????? {

????????????? std::cerr << "unable to set hw parameters: " << snd_strerror(rc) << std::endl;

????????????? exit(1);

?????? }

?

?????? snd_pcm_hw_params_get_period_size(params, &frames, &dir);

?

?????? size = frames * 4;

?????? buffer = new char[size];

?

?????? snd_pcm_hw_params_get_period_time(params, &val, &dir);

?

?????? loops = 5000000 / val;

?

?????? while (loops > 0)

?????? {

????????????? loops --;

????????????? rc = snd_pcm_readi(handle, buffer, frames);

????????????? if (rc == -EPIPE)

????????????? {

???????????????????? std::cerr << "overrun occurred" << std::endl;

???????????????????? snd_pcm_prepare(handle);

????????????? }

????????????? else if (rc < 0)

???????????????????? std::cerr << "error from read: " << snd_strerror(rc) << std::endl;

?????? ?????? else if ( rc != (int)frames)

???????????????????? std::cerr << "short read, read " << rc << " frames" << std::endl;

????????????? rc = write(1, buffer, size);

????????????? if (rc != size)

???????????????????? std::cerr << "short write: wrote " << rc << " bytes" << std::endl;

?????? }

?

?????? snd_pcm_drain(handle);

?????? snd_pcm_close(handle);

?????? free(buffer);

??????

?????? return 0;

}

?

編譯的參數(shù):g++ xxx.cpp -o xxx -lasound


本站聲明: 本文章由作者或相關(guān)機(jī)構(gòu)授權(quán)發(fā)布,目的在于傳遞更多信息,并不代表本站贊同其觀點(diǎn),本站亦不保證或承諾內(nèi)容真實性等。需要轉(zhuǎn)載請聯(lián)系該專欄作者,如若文章內(nèi)容侵犯您的權(quán)益,請及時聯(lián)系本站刪除。
換一批
延伸閱讀

9月2日消息,不造車的華為或?qū)⒋呱龈蟮莫?dú)角獸公司,隨著阿維塔和賽力斯的入局,華為引望愈發(fā)顯得引人矚目。

關(guān)鍵字: 阿維塔 塞力斯 華為

加利福尼亞州圣克拉拉縣2024年8月30日 /美通社/ -- 數(shù)字化轉(zhuǎn)型技術(shù)解決方案公司Trianz今天宣布,該公司與Amazon Web Services (AWS)簽訂了...

關(guān)鍵字: AWS AN BSP 數(shù)字化

倫敦2024年8月29日 /美通社/ -- 英國汽車技術(shù)公司SODA.Auto推出其旗艦產(chǎn)品SODA V,這是全球首款涵蓋汽車工程師從創(chuàng)意到認(rèn)證的所有需求的工具,可用于創(chuàng)建軟件定義汽車。 SODA V工具的開發(fā)耗時1.5...

關(guān)鍵字: 汽車 人工智能 智能驅(qū)動 BSP

北京2024年8月28日 /美通社/ -- 越來越多用戶希望企業(yè)業(yè)務(wù)能7×24不間斷運(yùn)行,同時企業(yè)卻面臨越來越多業(yè)務(wù)中斷的風(fēng)險,如企業(yè)系統(tǒng)復(fù)雜性的增加,頻繁的功能更新和發(fā)布等。如何確保業(yè)務(wù)連續(xù)性,提升韌性,成...

關(guān)鍵字: 亞馬遜 解密 控制平面 BSP

8月30日消息,據(jù)媒體報道,騰訊和網(wǎng)易近期正在縮減他們對日本游戲市場的投資。

關(guān)鍵字: 騰訊 編碼器 CPU

8月28日消息,今天上午,2024中國國際大數(shù)據(jù)產(chǎn)業(yè)博覽會開幕式在貴陽舉行,華為董事、質(zhì)量流程IT總裁陶景文發(fā)表了演講。

關(guān)鍵字: 華為 12nm EDA 半導(dǎo)體

8月28日消息,在2024中國國際大數(shù)據(jù)產(chǎn)業(yè)博覽會上,華為常務(wù)董事、華為云CEO張平安發(fā)表演講稱,數(shù)字世界的話語權(quán)最終是由生態(tài)的繁榮決定的。

關(guān)鍵字: 華為 12nm 手機(jī) 衛(wèi)星通信

要點(diǎn): 有效應(yīng)對環(huán)境變化,經(jīng)營業(yè)績穩(wěn)中有升 落實提質(zhì)增效舉措,毛利潤率延續(xù)升勢 戰(zhàn)略布局成效顯著,戰(zhàn)新業(yè)務(wù)引領(lǐng)增長 以科技創(chuàng)新為引領(lǐng),提升企業(yè)核心競爭力 堅持高質(zhì)量發(fā)展策略,塑強(qiáng)核心競爭優(yōu)勢...

關(guān)鍵字: 通信 BSP 電信運(yùn)營商 數(shù)字經(jīng)濟(jì)

北京2024年8月27日 /美通社/ -- 8月21日,由中央廣播電視總臺與中國電影電視技術(shù)學(xué)會聯(lián)合牽頭組建的NVI技術(shù)創(chuàng)新聯(lián)盟在BIRTV2024超高清全產(chǎn)業(yè)鏈發(fā)展研討會上宣布正式成立。 活動現(xiàn)場 NVI技術(shù)創(chuàng)新聯(lián)...

關(guān)鍵字: VI 傳輸協(xié)議 音頻 BSP

北京2024年8月27日 /美通社/ -- 在8月23日舉辦的2024年長三角生態(tài)綠色一體化發(fā)展示范區(qū)聯(lián)合招商會上,軟通動力信息技術(shù)(集團(tuán))股份有限公司(以下簡稱"軟通動力")與長三角投資(上海)有限...

關(guān)鍵字: BSP 信息技術(shù)
關(guān)閉
關(guān)閉