Commit ea09f691 authored by Reimar Döffinger's avatar Reimar Döffinger

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.

Originally committed as revision 20230 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 4a49ab77
...@@ -946,6 +946,8 @@ void avcodec_default_free_buffers(AVCodecContext *s){ ...@@ -946,6 +946,8 @@ void avcodec_default_free_buffers(AVCodecContext *s){
if(s->internal_buffer==NULL) return; 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; i<INTERNAL_BUFFER_SIZE; i++){ for(i=0; i<INTERNAL_BUFFER_SIZE; i++){
InternalBuffer *buf= &((InternalBuffer*)s->internal_buffer)[i]; InternalBuffer *buf= &((InternalBuffer*)s->internal_buffer)[i];
for(j=0; j<4; j++){ for(j=0; j<4; j++){
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment