Browse Source

Remove unused variable from slice_buffer_release() found by CSA.

Originally committed as revision 18570 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.6
Michael Niedermayer 17 years ago
parent
commit
29322398fc
1 changed files with 0 additions and 2 deletions
  1. +0
    -2
      libavcodec/snow.c

+ 0
- 2
libavcodec/snow.c View File

@@ -542,13 +542,11 @@ static IDWTELEM * slice_buffer_load_line(slice_buffer * buf, int line)

static void slice_buffer_release(slice_buffer * buf, int line)
{
int offset;
IDWTELEM * buffer;

assert(line >= 0 && line < buf->line_count);
assert(buf->line[line]);

offset = buf->line_width * line;
buffer = buf->line[line];
buf->data_stack_top++;
buf->data_stack[buf->data_stack_top] = buffer;


Loading…
Cancel
Save