[FFmpeg-cvslog] h264: simplify code in flush_dpb()

Anton Khirnov git at videolan.org
Tue Jan 27 13:02:39 CET 2015


ffmpeg | branch: master | Anton Khirnov <anton at khirnov.net> | Thu Nov 20 07:40:34 2014 +0100| [f9f883af4fe615a832407a657752e248a96c6280] | committer: Anton Khirnov

h264: simplify code in flush_dpb()

There is no point in clearing reference explicitly, since that will be
done as a part of ff_h264_unref_picture() right below.

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=f9f883af4fe615a832407a657752e248a96c6280
---

 libavcodec/h264.c |    6 +-----
 1 file changed, 1 insertion(+), 5 deletions(-)

diff --git a/libavcodec/h264.c b/libavcodec/h264.c
index b902422..684c78f 100644
--- a/libavcodec/h264.c
+++ b/libavcodec/h264.c
@@ -1075,11 +1075,7 @@ static void flush_dpb(AVCodecContext *avctx)
     H264Context *h = avctx->priv_data;
     int i;
 
-    for (i = 0; i < MAX_DELAYED_PIC_COUNT; i++) {
-        if (h->delayed_pic[i])
-            h->delayed_pic[i]->reference = 0;
-        h->delayed_pic[i] = NULL;
-    }
+    memset(h->delayed_pic, 0, sizeof(h->delayed_pic));
 
     ff_h264_flush_change(h);
 



More information about the ffmpeg-cvslog mailing list