diff options
author | Alex Converse <alex.converse@gmail.com> | 2011-09-27 15:27:18 -0700 |
---|---|---|
committer | Alex Converse <alex.converse@gmail.com> | 2011-09-27 19:32:26 -0700 |
commit | 4bb0b31f762c422ad15bee68da7bcf76940cc9fa (patch) | |
tree | 2339d101bd2a6a9690d70654361dcf8a10f0c6ee /avconv.c | |
parent | dec4b4705fe0bcfc3f07959a79960cb97e895f8a (diff) | |
download | ffmpeg-4bb0b31f762c422ad15bee68da7bcf76940cc9fa.tar.gz |
avconv: Initialize return value for codec copy path.
Diffstat (limited to 'avconv.c')
-rw-r--r-- | avconv.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1518,7 +1518,7 @@ static int output_packet(InputStream *ist, int ist_index, { AVFormatContext *os; OutputStream *ost; - int ret, i; + int ret = 0, i; int got_output; void *buffer_to_free = NULL; static unsigned int samples_size= 0; |