dfa: Remove unused variable.

This fixes the warning:
libavcodec/dfa.c:189: warning: unused variable ‘frame_end’
This commit is contained in:
Diego Biurrun 2011-05-15 13:12:47 +02:00
parent c73b779d35
commit b1bb3b8d87

View File

@ -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;