comparison vp6.c @ 12417:9f06475db098 libavcodec

Move vp6_filter_diag4() from DSPContext to VP56DSPContext.
author rbultje
date Wed, 25 Aug 2010 13:42:28 +0000
parents 7c54834209f6
children
comparison
equal deleted inserted replaced
12416:87e6af0a6a5a 12417:9f06475db098
557 vp6_block_copy_filter[select][x8]); 557 vp6_block_copy_filter[select][x8]);
558 } else if (!x8) { /* above or below combine */ 558 } else if (!x8) { /* above or below combine */
559 vp6_filter_hv4(dst, src+offset1, stride, stride, 559 vp6_filter_hv4(dst, src+offset1, stride, stride,
560 vp6_block_copy_filter[select][y8]); 560 vp6_block_copy_filter[select][y8]);
561 } else { 561 } else {
562 s->dsp.vp6_filter_diag4(dst, src+offset1+((mv.x^mv.y)>>31), stride, 562 s->vp56dsp.vp6_filter_diag4(dst, src+offset1+((mv.x^mv.y)>>31), stride,
563 vp6_block_copy_filter[select][x8], 563 vp6_block_copy_filter[select][x8],
564 vp6_block_copy_filter[select][y8]); 564 vp6_block_copy_filter[select][y8]);
565 } 565 }
566 } else { 566 } else {
567 if (!x8 || !y8) { 567 if (!x8 || !y8) {