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

📄 writeg7231stream.m

📁 ITU-T G.723.1 Speech Coder: Matlab implementation This package implements the speech coder and de
💻 M
字号:
function WriteG7231Stream (FName, QC)% Write a ITU-T G.7231 coder byte stream file, given% code values frame by frame.% $Id: WriteG7231Stream.m 1.2 2004/06/25 G.723.1-v2r1a $% Convert the codes to a byte streamByteStream = SetQCodes (QC);FID = fopen (FName, 'w');fprintf ('G.723.1 Bitstream file: %s\n', FullName (FName))NF = length (ByteStream);for (k = 1:NF)  fwrite (FID, ByteStream{k}, 'char');endfclose (FID);return

⌨️ 快捷键说明

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