Mercurial > libavcodec.hg
comparison dv.c @ 1008:fb6cbb8a04a3 libavcodec
fixing DCTELEM != short
| author | michaelni |
|---|---|
| date | Wed, 15 Jan 2003 19:21:21 +0000 |
| parents | 693a0797398f |
| children | 1f9afd8b9131 |
comparison
equal
deleted
inserted
replaced
| 1007:b2cf2a1d9a51 | 1008:fb6cbb8a04a3 |
|---|---|
| 155 #error only works with ALT_BITSTREAM_READER | 155 #error only works with ALT_BITSTREAM_READER |
| 156 #endif | 156 #endif |
| 157 | 157 |
| 158 /* decode ac coefs */ | 158 /* decode ac coefs */ |
| 159 static void dv_decode_ac(DVVideoDecodeContext *s, | 159 static void dv_decode_ac(DVVideoDecodeContext *s, |
| 160 BlockInfo *mb, INT16 *block, int last_index) | 160 BlockInfo *mb, DCTELEM *block, int last_index) |
| 161 { | 161 { |
| 162 int last_re_index; | 162 int last_re_index; |
| 163 int shift_offset = mb->shift_offset; | 163 int shift_offset = mb->shift_offset; |
| 164 const UINT8 *scan_table = mb->scan_table; | 164 const UINT8 *scan_table = mb->scan_table; |
| 165 const UINT8 *shift_table = mb->shift_table; | 165 const UINT8 *shift_table = mb->shift_table; |
