From c8e45e67bdea6b0acdd3a7bcbb47d8088cb537aa Mon Sep 17 00:00:00 2001 From: dec05eba Date: Mon, 10 Apr 2023 06:17:45 +0200 Subject: Cleanup of aframe if same pts --- src/main.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'src/main.cpp') diff --git a/src/main.cpp b/src/main.cpp index 9920aaa..c197b19 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -1959,8 +1959,10 @@ int main(int argc, char **argv) { aframe->pts = (this_audio_frame_time - record_start_time) * (double)AV_TIME_BASE; const bool same_pts = aframe->pts == audio_prev_pts; audio_prev_pts = aframe->pts; - if(same_pts) + if(same_pts) { + av_frame_unref(aframe); continue; + } } err = avcodec_send_frame(audio_track.codec_context, aframe); -- cgit v1.2.3