Mercurial > libavcodec.hg
changeset 176:9ce215ee9216 libavcodec
unrestricted MC fixed - thanks to Michael Niedermayer for idea
author | arpi_esp |
---|---|
date | Sun, 16 Dec 2001 12:44:34 +0000 |
parents | bd77d3cbb233 |
children | 53da914d6f46 |
files | mpegvideo.c |
diffstat | 1 files changed, 6 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/mpegvideo.c Sun Dec 09 12:39:54 2001 +0000 +++ b/mpegvideo.c Sun Dec 16 12:44:34 2001 +0000 @@ -401,9 +401,15 @@ { /* draw edge for correct motion prediction if outside */ if (s->pict_type != B_TYPE) { +#if 1 + draw_edges(s->current_picture[0], s->linesize, s->mb_width*16, s->mb_height*16, EDGE_WIDTH); + draw_edges(s->current_picture[1], s->linesize/2, s->mb_width*8, s->mb_height*8, EDGE_WIDTH/2); + draw_edges(s->current_picture[2], s->linesize/2, s->mb_width*8, s->mb_height*8, EDGE_WIDTH/2); +#else draw_edges(s->current_picture[0], s->linesize, s->width, s->height, EDGE_WIDTH); draw_edges(s->current_picture[1], s->linesize/2, s->width/2, s->height/2, EDGE_WIDTH/2); draw_edges(s->current_picture[2], s->linesize/2, s->width/2, s->height/2, EDGE_WIDTH/2); +#endif } }