[FFmpeg-cvslog] h264: do not reset the ref lists in flush_change()
Anton Khirnov
git at videolan.org
Tue Jan 27 15:22:05 CET 2015
ffmpeg | branch: master | Anton Khirnov <anton at khirnov.net> | Sun Jan 18 12:31:11 2015 +0100| [ecab21ac47d0d4ca604bebf494017ae5090853a8] | committer: Anton Khirnov
h264: do not reset the ref lists in flush_change()
They are always constructed anew when needed, so there is no need to
reset them explicitly.
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=ecab21ac47d0d4ca604bebf494017ae5090853a8
---
libavcodec/h264.c | 4 ----
1 file changed, 4 deletions(-)
diff --git a/libavcodec/h264.c b/libavcodec/h264.c
index 593a23d..2aea35e 100644
--- a/libavcodec/h264.c
+++ b/libavcodec/h264.c
@@ -1057,10 +1057,6 @@ void ff_h264_flush_change(H264Context *h)
if (h->cur_pic_ptr)
h->cur_pic_ptr->reference = 0;
h->first_field = 0;
- memset(h->ref_list[0], 0, sizeof(h->ref_list[0]));
- memset(h->ref_list[1], 0, sizeof(h->ref_list[1]));
- memset(h->default_ref_list[0], 0, sizeof(h->default_ref_list[0]));
- memset(h->default_ref_list[1], 0, sizeof(h->default_ref_list[1]));
ff_h264_reset_sei(h);
h->recovery_frame = -1;
h->frame_recovered = 0;
More information about the ffmpeg-cvslog
mailing list