diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2003-01-15 19:21:21 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2003-01-15 19:21:21 +0000 |
commit | 0e15384d9d154a1e4c5bc3a8d0f0e4618b6b5628 (patch) | |
tree | c1041c65ed3c9afd5c23e5d48f998fe2a33be197 /libavcodec/dv.c | |
parent | 3a87ac948f0cd95218e62d5a98b8b8d5e4c11366 (diff) | |
download | ffmpeg-0e15384d9d154a1e4c5bc3a8d0f0e4618b6b5628.tar.gz |
fixing DCTELEM != short
Originally committed as revision 1462 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/dv.c')
-rw-r--r-- | libavcodec/dv.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/dv.c b/libavcodec/dv.c index f436caf128..404f018f14 100644 --- a/libavcodec/dv.c +++ b/libavcodec/dv.c @@ -157,7 +157,7 @@ static const UINT16 block_sizes[6] = { /* decode ac coefs */ static void dv_decode_ac(DVVideoDecodeContext *s, - BlockInfo *mb, INT16 *block, int last_index) + BlockInfo *mb, DCTELEM *block, int last_index) { int last_re_index; int shift_offset = mb->shift_offset; |