avcodec/g2meet: remove redundant log message

Signed-off-by: Paul B Mahol <onemda@gmail.com>
This commit is contained in:
Paul B Mahol 2013-09-13 20:38:26 +00:00
parent 3dcd3e08f6
commit 23bd0335af
1 changed files with 1 additions and 3 deletions

View File

@ -802,10 +802,8 @@ static int g2m_decode_frame(AVCodecContext *avctx, void *data,
c->got_header = 1;
if (c->width && c->height && c->framebuf) {
if ((ret = ff_get_buffer(avctx, pic, 0)) < 0) {
av_log(avctx, AV_LOG_ERROR, "get_buffer() failed\n");
if ((ret = ff_get_buffer(avctx, pic, 0)) < 0)
return ret;
}
pic->key_frame = got_header;
pic->pict_type = got_header ? AV_PICTURE_TYPE_I : AV_PICTURE_TYPE_P;