mirror of https://git.ffmpeg.org/ffmpeg.git
fftools/ffmpeg_mux: Fix use of uninitialized variable
Broken in a2fc86378a
.
Reviewed-by: Anton Khirnov <anton@khirnov.net>
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
This commit is contained in:
parent
ef917950f0
commit
906fc2b2e7
|
@ -506,14 +506,14 @@ int print_sdp(const char *filename);
|
|||
int print_sdp(const char *filename)
|
||||
{
|
||||
char sdp[16384];
|
||||
int j, ret;
|
||||
int j = 0, ret;
|
||||
AVIOContext *sdp_pb;
|
||||
AVFormatContext **avc;
|
||||
|
||||
avc = av_malloc_array(nb_output_files, sizeof(*avc));
|
||||
if (!avc)
|
||||
return AVERROR(ENOMEM);
|
||||
for (int i = 0, j = 0; i < nb_output_files; i++) {
|
||||
for (int i = 0; i < nb_output_files; i++) {
|
||||
if (!strcmp(output_files[i]->format->name, "rtp")) {
|
||||
avc[j] = mux_from_of(output_files[i])->fc;
|
||||
j++;
|
||||
|
|
Loading…
Reference in New Issue