[FFmpeg-cvslog] txd: Remove write-only variable in txd_decode_frame().

Diego Biurrun git at videolan.org
Mon May 7 23:06:27 CEST 2012


ffmpeg | branch: master | Diego Biurrun <diego at biurrun.de> | Thu Apr 19 14:55:06 2012 +0200| [ea1405064284a9a67793076c8048747480f01a96] | committer: Diego Biurrun

txd: Remove write-only variable in txd_decode_frame().

libavcodec/txd.c:49:60: warning: variable ‘mipmap_count’ set but not used

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=ea1405064284a9a67793076c8048747480f01a96
---

 libavcodec/txd.c |    5 ++---
 1 files changed, 2 insertions(+), 3 deletions(-)

diff --git a/libavcodec/txd.c b/libavcodec/txd.c
index bfb2bb6..d69f9fa 100644
--- a/libavcodec/txd.c
+++ b/libavcodec/txd.c
@@ -46,7 +46,7 @@ static int txd_decode_frame(AVCodecContext *avctx, void *data, int *data_size,
     GetByteContext gb;
     AVFrame *picture = data;
     AVFrame * const p = &s->picture;
-    unsigned int version, w, h, d3d_format, depth, stride, mipmap_count, flags;
+    unsigned int version, w, h, d3d_format, depth, stride, flags;
     unsigned int y, v;
     uint8_t *ptr;
     uint32_t *pal;
@@ -58,8 +58,7 @@ static int txd_decode_frame(AVCodecContext *avctx, void *data, int *data_size,
     w               = bytestream2_get_le16(&gb);
     h               = bytestream2_get_le16(&gb);
     depth           = bytestream2_get_byte(&gb);
-    mipmap_count    = bytestream2_get_byte(&gb);
-    bytestream2_skip(&gb, 1);
+    bytestream2_skip(&gb, 2);
     flags           = bytestream2_get_byte(&gb);
 
     if (version < 8 || version > 9) {



More information about the ffmpeg-cvslog mailing list