diff options
author | Justin Ruggles <justin.ruggles@gmail.com> | 2011-09-07 23:08:57 -0400 |
---|---|---|
committer | Justin Ruggles <justin.ruggles@gmail.com> | 2011-09-29 16:54:00 -0400 |
commit | 5a9ed7c110d78ddcced94525b5181a2463dc009f (patch) | |
tree | 3b45aa2b52abccdb0b1a9184f5fc229b4ba52796 /libavcodec/adpcm.c | |
parent | fcbe421cee55e06c62d1d5d1f3cc7c522e7210a4 (diff) | |
download | ffmpeg-5a9ed7c110d78ddcced94525b5181a2463dc009f.tar.gz |
adpcm: pretty-print tables
Diffstat (limited to 'libavcodec/adpcm.c')
-rw-r--r-- | libavcodec/adpcm.c | 17 |
1 files changed, 10 insertions, 7 deletions
diff --git a/libavcodec/adpcm.c b/libavcodec/adpcm.c index 5e83e4b37a..25432f6160 100644 --- a/libavcodec/adpcm.c +++ b/libavcodec/adpcm.c @@ -57,16 +57,19 @@ /* These are for CD-ROM XA ADPCM */ static const int xa_adpcm_table[5][2] = { - { 0, 0 }, - { 60, 0 }, - { 115, -52 }, - { 98, -55 }, - { 122, -60 } + { 0, 0 }, + { 60, 0 }, + { 115, -52 }, + { 98, -55 }, + { 122, -60 } }; static const int ea_adpcm_table[] = { - 0, 240, 460, 392, 0, 0, -208, -220, 0, 1, - 3, 4, 7, 8, 10, 11, 0, -1, -3, -4 + 0, 240, 460, 392, + 0, 0, -208, -220, + 0, 1, 3, 4, + 7, 8, 10, 11, + 0, -1, -3, -4 }; // padded to zero where table size is less then 16 |