From 9a5d7f1a0b1c481ff285c0c482842f9c7a316071 Mon Sep 17 00:00:00 2001 From: Roman Donchenko Date: Tue, 15 Mar 2016 14:13:31 +0300 Subject: [PATCH] Backport PR #3813 to 2.4 It has already been partially backported by #6199; this commit completes the backport. --- modules/highgui/src/cap_ffmpeg_impl.hpp | 4 ---- 1 file changed, 4 deletions(-) diff --git a/modules/highgui/src/cap_ffmpeg_impl.hpp b/modules/highgui/src/cap_ffmpeg_impl.hpp index 6df542afc0..f761638966 100644 --- a/modules/highgui/src/cap_ffmpeg_impl.hpp +++ b/modules/highgui/src/cap_ffmpeg_impl.hpp @@ -853,8 +853,6 @@ bool CvCapture_FFMPEG::grabFrame() frame_number > ic->streams[video_stream]->nb_frames ) return false; - av_free_packet (&packet); - picture_pts = AV_NOPTS_VALUE_; // get the next frame @@ -917,8 +915,6 @@ bool CvCapture_FFMPEG::grabFrame() if (count_errs > max_number_of_attempts) break; } - - av_free_packet (&packet); } if( valid && first_frame_number < 0 )