Difference between revisions of "Adaptive Differential Pulse Code Modulation"

From Hydrogenaudio Knowledgebase
Jump to: navigation, search
m
m ("linear")
 
(3 intermediate revisions by 2 users not shown)
Line 1: Line 1:
ADPCM (Adaptive Differential Pulse Code Modulation) is a very widely used lossy coding scheme.
+
'''Adaptive Differential Pulse Code Modulation''' ('''ADPCM''') is a very widely used lossy coding scheme.
  
The acronym refers to waveform codecs which instead of quantizing the sound signal directly, like [[PCM]] codecs, quantize the difference between the sound signal and a prediction that has been made of the sound signal. If the prediction is accurate then the difference between the real and predicted sound samples will have a lower variance than the real sound samples, and will be accurately quantized with fewer bits than would be needed to quantize the original sound samples. At the decoder the quantized difference signal is added to the predicted signal to give the reconstructed sound signal.
+
The acronym refers to waveform codecs which instead of quantizing the sound signal directly, like [[PCM|linear PCM]] codecs, quantize the difference between the sound signal and a prediction that has been made of the sound signal. If the prediction is accurate then the difference between the real and predicted sound samples will have a lower variance than the real sound samples, and will be accurately quantized with fewer bits than would be needed to quantize the original sound samples. At the decoder the quantized difference signal is added to the predicted signal to give the reconstructed sound signal.
  
 
Implementations come from a variety of vendors. Some are proprietary, other are open, and there are drastic variations among them with regards to flexibility and quality:
 
Implementations come from a variety of vendors. Some are proprietary, other are open, and there are drastic variations among them with regards to flexibility and quality:
Line 15: Line 15:
  
 
Several game vendors also implemented their own ADPCM variations: EA ADPCM, Sony XA ADPCM, Sierra Online DPCM, Interplay MVE DPCM, Id RoQ DPCM and so on.
 
Several game vendors also implemented their own ADPCM variations: EA ADPCM, Sony XA ADPCM, Sierra Online DPCM, Interplay MVE DPCM, Id RoQ DPCM and so on.
 +
 +
 +
[[Category:Technical]]

Latest revision as of 20:59, 1 January 2022

Adaptive Differential Pulse Code Modulation (ADPCM) is a very widely used lossy coding scheme.

The acronym refers to waveform codecs which instead of quantizing the sound signal directly, like linear PCM codecs, quantize the difference between the sound signal and a prediction that has been made of the sound signal. If the prediction is accurate then the difference between the real and predicted sound samples will have a lower variance than the real sound samples, and will be accurately quantized with fewer bits than would be needed to quantize the original sound samples. At the decoder the quantized difference signal is added to the predicted signal to give the reconstructed sound signal.

Implementations come from a variety of vendors. Some are proprietary, other are open, and there are drastic variations among them with regards to flexibility and quality:

  • IMA (International Multimedia Association) ADPCM
  • Microsoft ADPCM

(the aforementioned variations are, by far, the most popular ones, specially IMA)

Several game vendors also implemented their own ADPCM variations: EA ADPCM, Sony XA ADPCM, Sierra Online DPCM, Interplay MVE DPCM, Id RoQ DPCM and so on.