刘品
学以致用---博主简介:专注语音、视频数字信号处理方面的研究以及算法在手机平台上面的移植和优化。涉及语音/音频编解码,语音增强,语音识别,语音音质客观评估,VOIP语音引擎 Qos算法模块和声音变速不变调和变调不变速等功能实现。熟悉ARM 各个系列的CPU,用ARMv4,ARMv5,ARMv6 and Cortex Neon 汇编优化相关算法代码,争取perforamance 最优。目前主要Windows mobile and Android platform上做相关speech/audio算法以及应用开发, HEVC 编解码器PC 和手机上的开发与应用。(交流Email:liupin.2008@gmail.com)

24-Bit PCM

24-bit linear PCM is stored in blocks. Each block is divided into two parts. The first part contains the most significant two bytes of each channel for two samples in big endian order:

 < ---  sample 1 --- > < ---  sample 2 --- >
 T0 M0 T1 M1 ... Tx Mx T0 M0 T1 M1 ... Tx Mx

The second part contains all least significant bytes of each channel for the two samples in the same order:

 < sample 1 > < sample 2 >
 B0 B1 ... Bx B0 B1 ... Bx

The complete block looks like this:

 < ---  sample 1 --- > < ---  sample 2 --- > < sample 1 > < sample 2 >
 T0 M0 T1 M1 ... Tx Mx T0 M0 T1 M1 ... Tx Mx B0 B1 ... Bx B0 B1 ... Bx

 

  • T = top byte = bits 23..16
  • M = middle byte = bits 15..8
  • B = bottom byte = bits 7..0

 

linking :http://wiki.multimedia.cx/index.php?title=PCM

 

posted on 2012-06-15 17:36  liupin  阅读(708)  评论(0)    收藏  举报

-->