Browse Source

Remove unused variables from slice_buffer_load_line() found by CSA.

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

+ 0
- 2
libavcodec/snow.c View File

@@ -526,7 +526,6 @@ static void slice_buffer_init(slice_buffer * buf, int line_count, int max_alloca

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

assert(buf->data_stack_top >= 0);
@@ -534,7 +533,6 @@ static IDWTELEM * slice_buffer_load_line(slice_buffer * buf, int line)
if (buf->line[line])
return buf->line[line];

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


Loading…
Cancel
Save