diff options
author | Diego Biurrun <diego@biurrun.de> | 2011-05-15 13:12:47 +0200 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2011-05-15 13:12:47 +0200 |
commit | b1bb3b8d875900b6ea6a560d9336e4d4b3f8fb37 (patch) | |
tree | 4572480b38a90d5c355a76c60f6f49a443b3b212 | |
parent | c73b779d3576754f883ad5d5968cfae131752f40 (diff) | |
download | ffmpeg-b1bb3b8d875900b6ea6a560d9336e4d4b3f8fb37.tar.gz |
dfa: Remove unused variable.
This fixes the warning:
libavcodec/dfa.c:189: warning: unused variable ‘frame_end’
-rw-r--r-- | libavcodec/dfa.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/libavcodec/dfa.c b/libavcodec/dfa.c index 1556bc7acb..919375baf0 100644 --- a/libavcodec/dfa.c +++ b/libavcodec/dfa.c @@ -186,7 +186,6 @@ static int decode_dds1(uint8_t *frame, int width, int height, static int decode_bdlt(uint8_t *frame, int width, int height, const uint8_t *src, const uint8_t *src_end) { - const uint8_t *frame_end = frame + width * height; uint8_t *line_ptr; int count, lines, segments; |