Browse Source

lavfi/scale: remove unused variable out_link

Fix warning:
libavfilter/vf_scale.c: In function ‘start_frame’:
libavfilter/vf_scale.c:284:23: warning: unused variable ‘out_link’ [-Wunused-variable]
tags/n1.0
Stefano Sabatini 13 years ago
parent
commit
cb08b6efc9
1 changed files with 0 additions and 1 deletions
  1. +0
    -1
      libavfilter/vf_scale.c

+ 0
- 1
libavfilter/vf_scale.c View File

@@ -281,7 +281,6 @@ static void start_frame(AVFilterLink *link, AVFilterBufferRef *picref)
if( picref->video->w != link->w
|| picref->video->h != link->h
|| picref->format != link->format) {
AVFilterLink *out_link;
int ret;
snprintf(scale->w_expr, sizeof(scale->w_expr)-1, "%d", outlink->w);
snprintf(scale->h_expr, sizeof(scale->h_expr)-1, "%d", outlink->h);


Loading…
Cancel
Save