trivial warning fixes

Originally committed as revision 9551 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Måns Rullgård
2007-07-08 23:15:08 +00:00
parent 4a64abdc63
commit 6785cae35c
4 changed files with 5 additions and 5 deletions

View File

@ -535,7 +535,7 @@ static int decode_frame(AVCodecContext *avctx, void *data, int *data_size, uint8
out[i * 3 + 0] = c->pal[(*src) * 3 + 0];
out[i * 3 + 1] = c->pal[(*src) * 3 + 1];
out[i * 3 + 2] = c->pal[(*src) * 3 + 2];
*src++;
src++;
}
out += c->pic.linesize[0];
}