Commit 211374fb authored by michael's avatar michael

Remove 2 unused variables from MPV_decode_mb_internal() found by CSA.


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@18559 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 329b995a
......@@ -1780,16 +1780,12 @@ static av_always_inline
void MPV_decode_mb_internal(MpegEncContext *s, DCTELEM block[12][64],
int lowres_flag, int is_mpeg12)
{
int mb_x, mb_y;
const int mb_xy = s->mb_y * s->mb_stride + s->mb_x;
if(CONFIG_MPEG_XVMC_DECODER && s->avctx->xvmc_acceleration){
ff_xvmc_decode_mb(s);//xvmc uses pblocks
return;
}
mb_x = s->mb_x;
mb_y = s->mb_y;
if(s->avctx->debug&FF_DEBUG_DCT_COEFF) {
/* save DCT coefficients */
int i,j;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment