comparison cavsdec.c @ 12356:1241c824de46 libavcodec

Move cavs dsp functions to their own struct
author mru
date Tue, 03 Aug 2010 20:59:00 +0000
parents 7dd2a45249a9
children
comparison
equal deleted inserted replaced
12355:e25a985a550c 12356:1241c824de46
141 run_buf[i] = run; 141 run_buf[i] = run;
142 } 142 }
143 if(dequant(h,level_buf, run_buf, block, ff_cavs_dequant_mul[qp], 143 if(dequant(h,level_buf, run_buf, block, ff_cavs_dequant_mul[qp],
144 ff_cavs_dequant_shift[qp], i)) 144 ff_cavs_dequant_shift[qp], i))
145 return -1; 145 return -1;
146 h->s.dsp.cavs_idct8_add(dst,block,stride); 146 h->cdsp.cavs_idct8_add(dst,block,stride);
147 h->s.dsp.clear_block(block); 147 h->s.dsp.clear_block(block);
148 return 0; 148 return 0;
149 } 149 }
150 150
151 151