diff mpegvideo.c @ 1328:ca3122e0a3cd libavcodec

2x100l
author michaelni
date Fri, 27 Jun 2003 12:58:40 +0000
parents 6cdd3b8f4fd3
children 338a2f6e6402
line wrap: on
line diff
--- a/mpegvideo.c	Thu Jun 26 11:31:34 2003 +0000
+++ b/mpegvideo.c	Fri Jun 27 12:58:40 2003 +0000
@@ -1025,7 +1025,7 @@
 {
     int i;
     /* draw edge for correct motion prediction if outside */
-    if(s->codec_id!=CODEC_ID_SVQ1){
+    if(s->codec_id!=CODEC_ID_SVQ1 && s->codec_id != CODEC_ID_MPEG1VIDEO){
         if (s->pict_type != B_TYPE && !s->intra_only && !(s->flags&CODEC_FLAG_EMU_EDGE)) {
             draw_edges(s->current_picture.data[0], s->linesize  , s->h_edge_pos   , s->v_edge_pos   , EDGE_WIDTH  );
             draw_edges(s->current_picture.data[1], s->uvlinesize, s->h_edge_pos>>1, s->v_edge_pos>>1, EDGE_WIDTH/2);