OSDN Git Service

mpegvideo: remove commented out cruft from ff_MPV_frame_end()
authorAnton Khirnov <anton@khirnov.net>
Sat, 30 Nov 2013 10:35:50 +0000 (11:35 +0100)
committerAnton Khirnov <anton@khirnov.net>
Thu, 5 Dec 2013 12:25:15 +0000 (13:25 +0100)
libavcodec/mpegvideo.c

index 6301090..93d9bf9 100644 (file)
@@ -1694,24 +1694,6 @@ FF_ENABLE_DEPRECATION_WARNINGS
 
     emms_c();
 
-#if 0
-    /* copy back current_picture variables */
-    for (i = 0; i < MAX_PICTURE_COUNT; i++) {
-        if (s->picture[i].f.data[0] == s->current_picture.f.data[0]) {
-            s->picture[i] = s->current_picture;
-            break;
-        }
-    }
-    assert(i < MAX_PICTURE_COUNT);
-#endif
-
-    // clear copies, to avoid confusion
-#if 0
-    memset(&s->last_picture,    0, sizeof(Picture));
-    memset(&s->next_picture,    0, sizeof(Picture));
-    memset(&s->current_picture, 0, sizeof(Picture));
-#endif
-
     if (s->current_picture.reference)
         ff_thread_report_progress(&s->current_picture_ptr->tf, INT_MAX, 0);
 }