diff options
author | Anton Khirnov <anton@khirnov.net> | 2015-01-18 12:31:11 +0100 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2015-01-27 09:09:29 +0100 |
commit | ecab21ac47d0d4ca604bebf494017ae5090853a8 (patch) | |
tree | ed1e7197cc16e9c2b474e840a3c1244b38263f30 | |
parent | 9404a47a2d1df418946a338938eb6cdb3afed474 (diff) | |
download | ffmpeg-ecab21ac47d0d4ca604bebf494017ae5090853a8.tar.gz |
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.
-rw-r--r-- | libavcodec/h264.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/libavcodec/h264.c b/libavcodec/h264.c index 593a23df7c..2aea35e09d 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; |