⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 test.bat

📁 最新的ITU-T的宽带语音编解码标准G.729.1,是对原先的G.729的最好的调整.码流输出速率可以进行自适应调整.满足未来通信要求.希望对大家有所帮助.
💻 BAT
字号:
@echo off
REM -------------------------------------------------------
REM  ITU-T G.729EV Optimization/Characterization Candidate 
REM               Preliminary Testvectors
REM -------------------------------------------------------
REM  Usage :
REM  ~~~~~~
REM   - put the binaries encoder.exe and decoder.exe in "testvectors" folder.
REM   - run test.bat
REM   - check that no differences are found between the reference files and the processed files *.p*
REM
REM  The testvectors (in folder "TV") are the following ones :
REM    *.in   - 16kHz binary input files
REM    *.bXX  - bit stream files (where XX is the bitrate)
REM    *.oXX  - reference output files
REM    *.pbXX - processed bit stream files : encoder output
REM    *.poXX - processed output files : decoder output


REM Processing testvectors

encoder.exe .\TV\test1.in test1.pb32

decoder.exe .\TV\test1.b8 test1.po8
decoder.exe .\TV\test1.b12 test1.po12
decoder.exe .\TV\test1.b14 test1.po14
decoder.exe .\TV\test1.b16 test1.po16
decoder.exe .\TV\test1.b18 test1.po18
decoder.exe .\TV\test1.b32 test1.po32

decoder.exe .\TV\test1FEC.b8 test1FEC.po8
decoder.exe .\TV\test1FEC.b12 test1FEC.po12
decoder.exe .\TV\test1FEC.b14 test1FEC.po14
decoder.exe .\TV\test1FEC.b16 test1FEC.po16
decoder.exe .\TV\test1FEC.b32 test1FEC.po32

decoder.exe .\TV\test1SWITCH.bsw test1SWITCH.psw



REM comparing processed testvectors with references

FC /B .\TV\test1.b32 test1.pb32

FC /B .\TV\test1.o8 test1.po8
FC /B .\TV\test1.o12 test1.po12
FC /B .\TV\test1.o14 test1.po14
FC /B .\TV\test1.o16 test1.po16
FC /B .\TV\test1.o18 test1.po18
FC /B .\TV\test1.o32 test1.po32

FC /B .\TV\test1FEC.o8 test1FEC.po8
FC /B .\TV\test1FEC.o12 test1FEC.po12
FC /B .\TV\test1FEC.o14 test1FEC.po14
FC /B .\TV\test1FEC.o16 test1FEC.po16
FC /B .\TV\test1FEC.o32 test1FEC.po32

FC /B .\TV\test1SWITCH.osw test1SWITCH.psw

PAUSE

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -