Mercurial > libavcodec.hg
diff wmv2.c @ 1092:f59c3f66363b libavcodec
MpegEncContext.(i)dct_* -> DspContext.(i)dct_*
bitexact cleanup
| author | michaelni |
|---|---|
| date | Mon, 03 Mar 2003 14:54:00 +0000 |
| parents | 6da5ae9ee199 |
| children | 1e39f273ecd6 |
line wrap: on
line diff
--- a/wmv2.c Sat Mar 01 00:16:00 2003 +0000 +++ b/wmv2.c Mon Mar 03 14:54:00 2003 +0000 @@ -328,7 +328,7 @@ code = get_bits(&gb, 3); if(code==0) return -1; - + s->slice_height = s->mb_height / code; if(s->avctx->debug&FF_DEBUG_PICT_INFO){ @@ -582,7 +582,7 @@ switch(w->abt_type_table[n]){ case 0: if (s->block_last_index[n] >= 0) { - s->idct_add (dst, stride, block1); + s->dsp.idct_add (dst, stride, block1); } break; case 1:
