summaryrefslogtreecommitdiff
path: root/libavcodec/mpegvideo.c
diff options
context:
space:
mode:
authorLuca Barbato <lu_zero@gentoo.org>2015-09-02 13:55:47 +0200
committerLuca Barbato <lu_zero@gentoo.org>2015-09-03 13:39:34 +0200
commit5a1a9da8a7ae120f2543b8f2fa13dc8baac39f17 (patch)
tree92202461589ced5308e1f3c72f2b23edae3e4cf3 /libavcodec/mpegvideo.c
parentc45fcf30cfab687004ed1cdc06ebaa21f4262a0b (diff)
mpegvideo: Drop a stray error message
The condition is not a failure.
Diffstat (limited to 'libavcodec/mpegvideo.c')
-rw-r--r--libavcodec/mpegvideo.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/libavcodec/mpegvideo.c b/libavcodec/mpegvideo.c
index ae6fb7e9a5..c5e8040758 100644
--- a/libavcodec/mpegvideo.c
+++ b/libavcodec/mpegvideo.c
@@ -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]);
}
}