Module: libav Branch: master Commit: 4bb0b31f762c422ad15bee68da7bcf76940cc9fa
Author: Alex Converse <[email protected]> Committer: Alex Converse <[email protected]> Date: Tue Sep 27 15:27:18 2011 -0700 avconv: Initialize return value for codec copy path. --- avconv.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/avconv.c b/avconv.c index fa39e6b..d6003dd 100644 --- a/avconv.c +++ b/avconv.c @@ -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; _______________________________________________ libav-commits mailing list [email protected] https://lists.libav.org/mailman/listinfo/libav-commits
