Browse Source

af_join: initialize a variable to shut up gcc warning.

The warning silenced was:
libavfilter/af_join.c: In function ‘join_request_frame’:
libavfilter/af_join.c:451:9: warning: ‘nb_samples’ may be used uninitialized in this function [-Wuninitialized]
tags/n1.0
Anton Khirnov 13 years ago
parent
commit
fd2784c3b5
1 changed files with 2 additions and 1 deletions
  1. +2
    -1
      libavfilter/af_join.c

+ 2
- 1
libavfilter/af_join.c View File

@@ -419,7 +419,7 @@ static int join_request_frame(AVFilterLink *outlink)
JoinBufferPriv *priv;
int linesize = INT_MAX;
int perms = ~0;
int nb_samples;
int nb_samples = 0;
int i, j, ret;

/* get a frame on each input */
@@ -448,6 +448,7 @@ static int join_request_frame(AVFilterLink *outlink)
perms &= cur_buf->perms;
}

av_assert0(nb_samples > 0);
buf = avfilter_get_audio_buffer_ref_from_arrays(s->data, linesize, perms,
nb_samples, outlink->format,
outlink->channel_layout);


Loading…
Cancel
Save