mirror of https://git.ffmpeg.org/ffmpeg.git
mmvideo.c: Remove unused variable in mm_decode_pal().
libavcodec/mmvideo.c:87:9: warning: variable ‘i’ set but not used
This commit is contained in:
parent
dbe6ba55a3
commit
246b050f51
|
@ -84,8 +84,7 @@ static int mm_decode_pal(MmContext *s)
|
||||||
*/
|
*/
|
||||||
static int mm_decode_intra(MmContext * s, int half_horiz, int half_vert)
|
static int mm_decode_intra(MmContext * s, int half_horiz, int half_vert)
|
||||||
{
|
{
|
||||||
int i, x, y;
|
int x = 0, y = 0;
|
||||||
i=0; x=0; y=0;
|
|
||||||
|
|
||||||
while (bytestream2_get_bytes_left(&s->gb) > 0) {
|
while (bytestream2_get_bytes_left(&s->gb) > 0) {
|
||||||
int run_length, color;
|
int run_length, color;
|
||||||
|
|
Loading…
Reference in New Issue