summaryrefslogtreecommitdiff
path: root/libavcodec/cavsdec.c
diff options
context:
space:
mode:
authorMåns Rullgård <mans@mansr.com>2010-08-03 20:59:00 +0000
committerMåns Rullgård <mans@mansr.com>2010-08-03 20:59:00 +0000
commitf079a64aea0d19dd7adfc045747cd4b4dfb6225c (patch)
treef02085b637c2b6386bc96ed92aac18e7b8450383 /libavcodec/cavsdec.c
parent61ee75bbf86cc2a69fb02c32e391c197ddd9fcf3 (diff)
Move cavs dsp functions to their own struct
Originally committed as revision 24685 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/cavsdec.c')
-rw-r--r--libavcodec/cavsdec.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/cavsdec.c b/libavcodec/cavsdec.c
index 9d6307c217..9845fb47fc 100644
--- a/libavcodec/cavsdec.c
+++ b/libavcodec/cavsdec.c
@@ -143,7 +143,7 @@ static int decode_residual_block(AVSContext *h, GetBitContext *gb,
if(dequant(h,level_buf, run_buf, block, ff_cavs_dequant_mul[qp],
ff_cavs_dequant_shift[qp], i))
return -1;
- h->s.dsp.cavs_idct8_add(dst,block,stride);
+ h->cdsp.cavs_idct8_add(dst,block,stride);
h->s.dsp.clear_block(block);
return 0;
}