Mercurial > libavcodec.hg
changeset 5431:192360fa9b06 libavcodec
get rid of a useless variable
author | michael |
---|---|
date | Tue, 31 Jul 2007 21:00:17 +0000 |
parents | d248295bd595 |
children | e0624692025f |
files | mpeg12.c |
diffstat | 1 files changed, 1 insertions(+), 5 deletions(-) [+] |
line wrap: on
line diff
--- a/mpeg12.c Tue Jul 31 20:52:49 2007 +0000 +++ b/mpeg12.c Tue Jul 31 21:00:17 2007 +0000 @@ -1663,7 +1663,6 @@ { MpegEncContext *s = &s1->mpeg_enc_ctx; AVCodecContext *avctx= s->avctx; - int ret; const int field_pic= s->picture_structure != PICT_FRAME; const int lowres= s->avctx->lowres; @@ -1738,10 +1737,7 @@ XVMC_init_block(s);//set s->block #endif - ret = mpeg_decode_mb(s, s->block); - - dprintf(s->avctx, "ret=%d\n", ret); - if (ret < 0) + if(mpeg_decode_mb(s, s->block) < 0) return -1; if(s->current_picture.motion_val[0] && !s->encoding){ //note motion_val is normally NULL unless we want to extract the MVs