diff options
| author | Tim Redfern <tim@eclectronics.org> | 2013-12-29 12:19:38 +0000 |
|---|---|---|
| committer | Tim Redfern <tim@eclectronics.org> | 2013-12-29 12:19:38 +0000 |
| commit | f7813a5324be39d13ab536c245d15dfc602a7849 (patch) | |
| tree | fad99148b88823d34a5df2f0a25881a002eb291b /ffmpeg/libavcodec/adpcm_data.h | |
| parent | b7a5a477b8ff4d4e3028b9dfb9a9df0a41463f92 (diff) | |
basic type mechanism working
Diffstat (limited to 'ffmpeg/libavcodec/adpcm_data.h')
| -rw-r--r-- | ffmpeg/libavcodec/adpcm_data.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/ffmpeg/libavcodec/adpcm_data.h b/ffmpeg/libavcodec/adpcm_data.h index 0ebb7c3..a14d520 100644 --- a/ffmpeg/libavcodec/adpcm_data.h +++ b/ffmpeg/libavcodec/adpcm_data.h @@ -28,6 +28,10 @@ #include <stdint.h> +static const uint8_t ff_adpcm_ima_block_sizes[4] = { 4, 12, 4, 20 }; +static const uint8_t ff_adpcm_ima_block_samples[4] = { 16, 32, 8, 32 }; + +extern const int8_t const *ff_adpcm_index_tables[4]; extern const int8_t ff_adpcm_index_table[16]; extern const int16_t ff_adpcm_step_table[89]; extern const int16_t ff_adpcm_oki_step_table[49]; |
