]> git.sesse.net Git - ffmpeg/blobdiff - libavcodec/error_resilience.c
h264: fix invalid pointer arithmetic
[ffmpeg] / libavcodec / error_resilience.c
index 53e8bf971e918d8a90512bb6bde056d34d2f1254..ae9ef6861742c33c7cdb8e46755412b44c732461 100644 (file)
@@ -699,8 +699,6 @@ skip_last_mv:
                         fixed[mb_xy] = MV_UNCHANGED;
                 }
             }
-
-            // printf(".%d/%d", changed, score_sum); fflush(stdout);
         }
 
         if (none_left)
@@ -711,7 +709,6 @@ skip_last_mv:
             if (fixed[mb_xy])
                 fixed[mb_xy] = MV_FROZEN;
         }
-        // printf(":"); fflush(stdout);
     }
 }
 
@@ -789,7 +786,6 @@ static int is_intra_more_likely(MpegEncContext *s)
             }
         }
     }
-    // printf("is_intra_likely: %d type:%d\n", is_intra_likely, s->pict_type);
     return is_intra_likely > 0;
 }