Mercurial > libavcodec.hg
changeset 3708:a8d2bd2e1928 libavcodec
Fix edge emulation for bicubic MC in B frames
author | kostya |
---|---|
date | Tue, 12 Sep 2006 04:16:28 +0000 |
parents | e7f4366d9731 |
children | 44f5de5a7d03 |
files | vc1.c |
diffstat | 1 files changed, 5 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/vc1.c Tue Sep 12 04:13:00 2006 +0000 +++ b/vc1.c Tue Sep 12 04:16:28 2006 +0000 @@ -2028,7 +2028,8 @@ || (unsigned)src_y > s->v_edge_pos - (my&3) - 16){ uint8_t *uvbuf= s->edge_emu_buffer + 19 * s->linesize; - ff_emulated_edge_mc(s->edge_emu_buffer, srcY, s->linesize, 17, 17, + srcY -= s->mspel * (1 + s->linesize); + ff_emulated_edge_mc(s->edge_emu_buffer, srcY, s->linesize, 17+s->mspel*2, 17+s->mspel*2, src_x - s->mspel, src_y - s->mspel, s->h_edge_pos, s->v_edge_pos); srcY = s->edge_emu_buffer; ff_emulated_edge_mc(uvbuf , srcU, s->uvlinesize, 8+1, 8+1, @@ -2043,8 +2044,8 @@ uint8_t *src, *src2; src = srcY; - for(j = 0; j < 17; j++) { - for(i = 0; i < 17; i++) src[i] = ((src[i] - 128) >> 1) + 128; + for(j = 0; j < 17 + s->mspel*2; j++) { + for(i = 0; i < 17 + s->mspel*2; i++) src[i] = ((src[i] - 128) >> 1) + 128; src += s->linesize; } src = srcU; src2 = srcV; @@ -2057,6 +2058,7 @@ src2 += s->uvlinesize; } } + srcY += s->mspel * (1 + s->linesize); } if(v->fastuvmc) {