mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-02-14 22:22:59 +02:00
Move 'chksum' declaration to the only block where that variable is used
Originally committed as revision 21753 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
f7d649185b
commit
94dde5c1ec
@ -601,7 +601,6 @@ static int decode_band(IVI5DecContext *ctx, int plane_num,
|
|||||||
{
|
{
|
||||||
int result, i, t, idx1, idx2;
|
int result, i, t, idx1, idx2;
|
||||||
IVITile *tile;
|
IVITile *tile;
|
||||||
uint16_t chksum;
|
|
||||||
|
|
||||||
band->buf = band->bufs[ctx->dst_buf];
|
band->buf = band->bufs[ctx->dst_buf];
|
||||||
band->ref_buf = band->bufs[ctx->ref_buf];
|
band->ref_buf = band->bufs[ctx->ref_buf];
|
||||||
@ -674,7 +673,7 @@ static int decode_band(IVI5DecContext *ctx, int plane_num,
|
|||||||
|
|
||||||
#if IVI_DEBUG
|
#if IVI_DEBUG
|
||||||
if (band->checksum_present) {
|
if (band->checksum_present) {
|
||||||
chksum = ivi_calc_band_checksum(band);
|
uint16_t chksum = ivi_calc_band_checksum(band);
|
||||||
if (chksum != band->checksum) {
|
if (chksum != band->checksum) {
|
||||||
av_log(avctx, AV_LOG_ERROR,
|
av_log(avctx, AV_LOG_ERROR,
|
||||||
"Band checksum mismatch! Plane %d, band %d, received: %x, calculated: %x\n",
|
"Band checksum mismatch! Plane %d, band %d, received: %x, calculated: %x\n",
|
||||||
|
Loading…
x
Reference in New Issue
Block a user