Skip to content
Snippets Groups Projects
Commit d10319d8 authored by Diego Biurrun's avatar Diego Biurrun
Browse files

avcodec_default_reget_buffer(): fix compilation in DEBUG mode

parent 273f4b39
No related branches found
No related tags found
No related merge requests found
...@@ -553,7 +553,7 @@ int avcodec_default_reget_buffer(AVCodecContext *s, AVFrame *pic){ ...@@ -553,7 +553,7 @@ int avcodec_default_reget_buffer(AVCodecContext *s, AVFrame *pic){
return s->get_buffer(s, pic); return s->get_buffer(s, pic);
} }
assert(s->pix_fmt == pic->pix_fmt); assert(s->pix_fmt == pic->format);
/* If internal buffer type return the same buffer */ /* If internal buffer type return the same buffer */
if(pic->type == FF_BUFFER_TYPE_INTERNAL) { if(pic->type == FF_BUFFER_TYPE_INTERNAL) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment