diff options
author | Justin Ruggles <justin.ruggles@gmail.com> | 2009-03-04 23:24:44 +0000 |
---|---|---|
committer | Justin Ruggles <justin.ruggles@gmail.com> | 2009-03-04 23:24:44 +0000 |
commit | c51997297a2e8df8339874b14115329bbff576a7 (patch) | |
tree | 9b227d73e296b998fd7f8d089c2ef6e4796861fd /libavcodec/flacdec.c | |
parent | 549bccdbe43b97f19d276078e6c742549d616aad (diff) | |
download | ffmpeg-c51997297a2e8df8339874b14115329bbff576a7.tar.gz |
flacdec: cosmetics: Use a more descriptive variable name for the number
of bytes read, instead of reusing 'i'.
Originally committed as revision 17815 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/flacdec.c')
-rw-r--r-- | libavcodec/flacdec.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/libavcodec/flacdec.c b/libavcodec/flacdec.c index ab2be93442..61062b2a84 100644 --- a/libavcodec/flacdec.c +++ b/libavcodec/flacdec.c @@ -598,7 +598,7 @@ static int flac_decode_frame(AVCodecContext *avctx, const uint8_t *buf, int buf_size) { FLACContext *s = avctx->priv_data; - int tmp = 0, i, j = 0, input_buf_size = 0; + int tmp = 0, i, j = 0, input_buf_size = 0, bytes_read = 0; int16_t *samples_16 = data; int32_t *samples_32 = data; int alloc_data_size= *data_size; @@ -700,20 +700,20 @@ static int flac_decode_frame(AVCodecContext *avctx, *data_size = s->blocksize * s->channels * (s->is32 ? 4 : 2); end: - i= (get_bits_count(&s->gb)+7)/8; - if (i > buf_size) { - av_log(s->avctx, AV_LOG_ERROR, "overread: %d\n", i - buf_size); + bytes_read = (get_bits_count(&s->gb)+7)/8; + if (bytes_read > buf_size) { + av_log(s->avctx, AV_LOG_ERROR, "overread: %d\n", bytes_read - buf_size); s->bitstream_size=0; s->bitstream_index=0; return -1; } if (s->bitstream_size) { - s->bitstream_index += i; - s->bitstream_size -= i; + s->bitstream_index += bytes_read; + s->bitstream_size -= bytes_read; return input_buf_size; } else - return i; + return bytes_read; } static av_cold int flac_decode_close(AVCodecContext *avctx) |