[FFmpeg-cvslog] tscc: Eliminate pointless variable indirections in decode_frame()
Diego Biurrun
git at videolan.org
Fri Aug 1 16:39:22 CEST 2014
ffmpeg | branch: master | Diego Biurrun <diego at biurrun.de> | Tue Jul 29 09:57:48 2014 -0700| [4da8cdbb91ddbac118b79076cad4dc28ba72e86f] | committer: Diego Biurrun
tscc: Eliminate pointless variable indirections in decode_frame()
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=4da8cdbb91ddbac118b79076cad4dc28ba72e86f
---
libavcodec/tscc.c | 22 ++++++++++------------
1 file changed, 10 insertions(+), 12 deletions(-)
diff --git a/libavcodec/tscc.c b/libavcodec/tscc.c
index c26853e..16d0770 100644
--- a/libavcodec/tscc.c
+++ b/libavcodec/tscc.c
@@ -67,34 +67,32 @@ static int decode_frame(AVCodecContext *avctx, void *data, int *got_frame,
const uint8_t *buf = avpkt->data;
int buf_size = avpkt->size;
CamtasiaContext * const c = avctx->priv_data;
- const unsigned char *encoded = buf;
AVFrame *frame = data;
- int zret; // Zlib return code
- int ret, len = buf_size;
+ int ret;
if ((ret = ff_get_buffer(avctx, frame, 0)) < 0){
av_log(avctx, AV_LOG_ERROR, "get_buffer() failed\n");
return ret;
}
- zret = inflateReset(&c->zstream);
- if (zret != Z_OK) {
- av_log(avctx, AV_LOG_ERROR, "Inflate reset error: %d\n", zret);
+ ret = inflateReset(&c->zstream);
+ if (ret != Z_OK) {
+ av_log(avctx, AV_LOG_ERROR, "Inflate reset error: %d\n", ret);
return AVERROR_UNKNOWN;
}
- c->zstream.next_in = encoded;
- c->zstream.avail_in = len;
+ c->zstream.next_in = buf;
+ c->zstream.avail_in = buf_size;
c->zstream.next_out = c->decomp_buf;
c->zstream.avail_out = c->decomp_size;
- zret = inflate(&c->zstream, Z_FINISH);
+ ret = inflate(&c->zstream, Z_FINISH);
// Z_DATA_ERROR means empty picture
- if ((zret != Z_OK) && (zret != Z_STREAM_END) && (zret != Z_DATA_ERROR)) {
- av_log(avctx, AV_LOG_ERROR, "Inflate error: %d\n", zret);
+ if ((ret != Z_OK) && (ret != Z_STREAM_END) && (ret != Z_DATA_ERROR)) {
+ av_log(avctx, AV_LOG_ERROR, "Inflate error: %d\n", ret);
return AVERROR_UNKNOWN;
}
- if (zret != Z_DATA_ERROR) {
+ if (ret != Z_DATA_ERROR) {
bytestream2_init(&c->gb, c->decomp_buf,
c->decomp_size - c->zstream.avail_out);
ff_msrle_decode(avctx, (AVPicture*)frame, c->bpp, &c->gb);
More information about the ffmpeg-cvslog
mailing list