Browse code

lavc/adpcm_data: fix const misplacement

Signed-off-by: Lukasz Marek <lukasz.m.luki@gmail.com>

Lukasz Marek authored on 2014/02/08 00:42:17
Showing 2 changed files
... ...
@@ -47,7 +47,7 @@ static const int8_t adpcm_index_table5[32] = {
47 47
     -1, -1, -1, -1, -1, -1, -1, -1, 1, 2, 4, 6, 8, 10, 13, 16,
48 48
 };
49 49
 
50
-const int8_t const *ff_adpcm_index_tables[4] = {
50
+const int8_t * const ff_adpcm_index_tables[4] = {
51 51
     &adpcm_index_table2[0],
52 52
     &adpcm_index_table3[0],
53 53
     &ff_adpcm_index_table[0],
... ...
@@ -31,7 +31,7 @@
31 31
 static const uint8_t ff_adpcm_ima_block_sizes[4]   = {  4, 12, 4, 20 };
32 32
 static const uint8_t ff_adpcm_ima_block_samples[4] = { 16, 32, 8, 32 };
33 33
 
34
-extern const int8_t const *ff_adpcm_index_tables[4];
34
+extern const int8_t * const ff_adpcm_index_tables[4];
35 35
 extern const int8_t  ff_adpcm_index_table[16];
36 36
 extern const int16_t ff_adpcm_step_table[89];
37 37
 extern const int16_t ff_adpcm_oki_step_table[49];