# HG changeset patch # User michaelni # Date 1023024708 0 # Node ID 3a7486d90b962104c39c5666930f51e07e3bc133 # Parent 2ae7a98300b7041b4bdfd71aa5795b4157762e8b divx5 bug workaround diff -r 2ae7a98300b7 -r 3a7486d90b96 mpegvideo.c --- a/mpegvideo.c Sun Jun 02 12:25:54 2002 +0000 +++ b/mpegvideo.c Sun Jun 02 13:31:48 2002 +0000 @@ -599,7 +599,7 @@ /* draw edge for correct motion prediction if outside */ if (s->pict_type != B_TYPE && !s->intra_only) { - if(s->avctx==NULL || s->avctx->codec->id!=CODEC_ID_MPEG4 || s->divx_version==500){ + if(s->avctx==NULL || s->avctx->codec->id!=CODEC_ID_MPEG4 || s->divx_version>=500){ 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);