From 321123623f31d51ce79885218e94a17e7fb7a043 Mon Sep 17 00:00:00 2001 From: reimar Date: Tue, 13 Oct 2009 20:48:51 +0000 Subject: [PATCH] Print a warning message when avcodec_default_free_buffers finds unreleased buffers, this hopefully should help detect codecs that do not release all buffers e.g. in the decode_end function. git-svn-id: file:///var/local/repositories/ffmpeg/trunk@20230 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b --- libavcodec/utils.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/libavcodec/utils.c b/libavcodec/utils.c index 1077fd7fc7..548f9474a4 100644 --- a/libavcodec/utils.c +++ b/libavcodec/utils.c @@ -946,6 +946,8 @@ void avcodec_default_free_buffers(AVCodecContext *s){ if(s->internal_buffer==NULL) return; + if (s->internal_buffer_count) + av_log(s, AV_LOG_WARNING, "Found %i unreleased buffers!\n", s->internal_buffer_count); for(i=0; iinternal_buffer)[i]; for(j=0; j<4; j++){ -- 2.11.4.GIT