mpegvideo: Drop a stray error message

The condition is not a failure.
This commit is contained in:
Luca Barbato 2015-09-02 13:55:47 +02:00
parent c45fcf30cf
commit 5a1a9da8a7
1 changed files with 0 additions and 3 deletions

View File

@ -1068,9 +1068,6 @@ int ff_mpv_frame_start(MpegEncContext *s, AVCodecContext *avctx)
if (&s->picture[i] != s->last_picture_ptr &&
&s->picture[i] != s->next_picture_ptr &&
s->picture[i].reference && !s->picture[i].needs_realloc) {
if (!(avctx->active_thread_type & FF_THREAD_FRAME))
av_log(avctx, AV_LOG_ERROR,
"releasing zombie picture\n");
ff_mpeg_unref_picture(s->avctx, &s->picture[i]);
}
}