mirror of https://git.ffmpeg.org/ffmpeg.git
display line number when printing error
Originally committed as revision 8015 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
89cf4098aa
commit
492d0e4c12
|
@ -355,8 +355,8 @@ static int flic_decode_frame_8BPP(AVCodecContext *avctx,
|
||||||
pixels[pixel_ptr++] = palette_idx1;
|
pixels[pixel_ptr++] = palette_idx1;
|
||||||
pixel_countdown--;
|
pixel_countdown--;
|
||||||
if (pixel_countdown < 0)
|
if (pixel_countdown < 0)
|
||||||
av_log(avctx, AV_LOG_ERROR, "pixel_countdown < 0 (%d)\n",
|
av_log(avctx, AV_LOG_ERROR, "pixel_countdown < 0 (%d) at line %d\n",
|
||||||
pixel_countdown);
|
pixel_countdown, lines);
|
||||||
}
|
}
|
||||||
} else { /* copy bytes if byte_run < 0 */
|
} else { /* copy bytes if byte_run < 0 */
|
||||||
byte_run = -byte_run;
|
byte_run = -byte_run;
|
||||||
|
@ -366,8 +366,8 @@ static int flic_decode_frame_8BPP(AVCodecContext *avctx,
|
||||||
pixels[pixel_ptr++] = palette_idx1;
|
pixels[pixel_ptr++] = palette_idx1;
|
||||||
pixel_countdown--;
|
pixel_countdown--;
|
||||||
if (pixel_countdown < 0)
|
if (pixel_countdown < 0)
|
||||||
av_log(avctx, AV_LOG_ERROR, "pixel_countdown < 0 (%d)\n",
|
av_log(avctx, AV_LOG_ERROR, "pixel_countdown < 0 (%d) at line %d\n",
|
||||||
pixel_countdown);
|
pixel_countdown, lines);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -563,8 +563,8 @@ static int flic_decode_frame_15_16BPP(AVCodecContext *avctx,
|
||||||
pixels[pixel_ptr++] = palette_idx1;
|
pixels[pixel_ptr++] = palette_idx1;
|
||||||
pixel_countdown--;
|
pixel_countdown--;
|
||||||
if (pixel_countdown < 0)
|
if (pixel_countdown < 0)
|
||||||
av_log(avctx, AV_LOG_ERROR, "pixel_countdown < 0 (%d)\n",
|
av_log(avctx, AV_LOG_ERROR, "pixel_countdown < 0 (%d) (linea%d)\n",
|
||||||
pixel_countdown);
|
pixel_countdown, lines);
|
||||||
}
|
}
|
||||||
} else { /* copy bytes if byte_run < 0 */
|
} else { /* copy bytes if byte_run < 0 */
|
||||||
byte_run = -byte_run;
|
byte_run = -byte_run;
|
||||||
|
@ -574,8 +574,8 @@ static int flic_decode_frame_15_16BPP(AVCodecContext *avctx,
|
||||||
pixels[pixel_ptr++] = palette_idx1;
|
pixels[pixel_ptr++] = palette_idx1;
|
||||||
pixel_countdown--;
|
pixel_countdown--;
|
||||||
if (pixel_countdown < 0)
|
if (pixel_countdown < 0)
|
||||||
av_log(avctx, AV_LOG_ERROR, "pixel_countdown < 0 (%d)\n",
|
av_log(avctx, AV_LOG_ERROR, "pixel_countdown < 0 (%d) at line %d\n",
|
||||||
pixel_countdown);
|
pixel_countdown, lines);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue