ADTS格式解析

2021-08-27 00:14:01 字數 3185 閱讀 2926

adts介紹:

adts全稱是(audio data transport stream),是aac的一種傳輸格式。

adts aac

adts_header aac es adts_header aac es …adts_header aac es

2.adts內容及結構

adts 頭中相對有用的資訊 取樣率、聲道數、幀長度。想想也是,我要是解碼器的話,你給我一堆得aac音訊es流我也解不出來。每乙個帶adts頭資訊的aac流會清晰的告送解碼器他需要的這些資訊。

一般情況下adts的頭資訊都是7個位元組,分為2部分:

adts_fixed_header();

adts_variable_header();

「` struct adts_fixed_head

; syncword :同步頭 總是0xfff, all bits must be 1,代表著乙個adts幀的開始

id:mpeg version: 0 for mpeg-4, 1 for mpeg-2

layer:always: 『00』

profile:表示使用哪個級別的aac,有些晶元只支援aac lc 。在mpeg-2 aac中定義了3種:

index | profile

0 main profile

1 low complexity profie(lc)

2 scalable sampling rate profile(ssr)

3 (reserved)

sampling_frequency_index:表示使用的取樣率下標,通過這個下標在 sampling frequencies[ ]陣列中查詢得知取樣率的值。

there are 13 supported frequencies:

0: 96000 hz

1: 88200 hz

2: 64000 hz

3: 48000 hz

4: 44100 hz

5: 32000 hz

6: 24000 hz

7: 22050 hz

8: 16000 hz

9: 12000 hz

10: 11025 hz

11: 8000 hz

12: 7350 hz

13: reserved

14: reserved

15: frequency is written explictly

channel_configuration: 表示聲道數

0: defined in aot specifc config

1: 1 channel: front-center

2: 2 channels: front-left, front-right

3: 3 channels: front-center, front-left, front-right

4: 4 channels: front-center, front-left, front-right, back-center

5: 5 channels: front-center, front-left, front-right, back-left, back-right

6: 6 channels: front-center, front-left, front-right, back-left, back-right, lfe-channel

7: 8 channels: front-center, front-left, front-right, side-left, side-right, back-left, back-right, lfe-channel

8-15: reserved

adts_buffer_fullness:0x7ff 說明是位元速率可變的碼流

3.aac打包成adts格式

通過對adts格式的了解,把aac打包成adts,我們只需得到封裝格式裡面關於音訊取樣率、聲道數、元資料長度、aac格式型別等資訊。然後在每個aac原始流前面加上個adts頭就ok了。

ffmpeg中新增adts頭的**如下:

int ff_adts_write_frame_header(adtscontext *ctx,

uint8_t *buf, int size, int pce_size)

{ putbitcontext pb;

init_put_bits(&pb, buf, adts_header_size);  

/* adts_fixed_header */

put_bits(&pb, 12, 0xfff); /* syncword */

put_bits(&pb, 1, 0); /* id */

put_bits(&pb, 2, 0); /* layer */

put_bits(&pb, 1, 1); /* protection_absent */

put_bits(&pb, 2, ctx->objecttype); /* profile_objecttype */

put_bits(&pb, 4, ctx->sample_rate_index);

put_bits(&pb, 1, 0); /* private_bit */

put_bits(&pb, 3, ctx->channel_conf); /* channel_configuration */

put_bits(&pb, 1, 0); /* original_copy */

put_bits(&pb, 1, 0); /* home */

/* adts_variable_header */

put_bits(&pb, 13, adts_header_size + size + pce_size); /* aac_frame_length */

put_bits(&pb, 11, 0x7ff); /* adts_buffer_fullness */

put_bits(&pb, 2, 0); /* number_of_raw_data_blocks_in_frame */

flush_put_bits(&pb);

return 0;

AAC打包ADTS格式

adts全稱是 audio data transport stream 是aac的一種十分常見的傳輸格式。adts aac adts header aac es adts header aac es adts header aac es adts 頭中相對有用的資訊取樣率 聲道數 幀長度。想想也是,...

AAC音訊格式(把AAC打包成ADTS)

1 aac aac advanced audio coding 中文名 高階音訊 編碼,出現於1997年,基於mpeg 2的音訊編碼技術。由fraunhofer iis 杜比實驗室 at t sony等公司共同開發,目的是取代 格式。2000年,mpeg 4標準出現後,aac重新整合了其特性,加入了...

TIFF World File TFW 格式解析

tiff world file tfw 格式說明摘要 tfw檔案包含相關的tiff檔案的空間引數 spatial reference 資料。本文詳細描述了tfw檔案中定義的引數。概述 兩個檔案構成tfw格式。ascii 標頭檔案 圖象檔案 圖象檔案為tiff格式 未壓縮 詳細資料 tfw檔案的名字與...