From 6c7c44ee7ae3be5dcef5bba685fa375493c0b1f2 Mon Sep 17 00:00:00 2001 From: Baptiste Coudurier Date: Tue, 20 Jan 2009 21:09:51 +0000 Subject: [PATCH] exit with error code if av_encode failed Originally committed as revision 16704 to svn://svn.ffmpeg.org/ffmpeg/trunk --- ffmpeg.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/ffmpeg.c b/ffmpeg.c index cdb5e20ca7..ee6b01784a 100644 --- a/ffmpeg.c +++ b/ffmpeg.c @@ -3918,8 +3918,9 @@ int main(int argc, char **argv) } ti = getutime(); - av_encode(output_files, nb_output_files, input_files, nb_input_files, - stream_maps, nb_stream_maps); + if (av_encode(output_files, nb_output_files, input_files, nb_input_files, + stream_maps, nb_stream_maps) < 0) + av_exit(1); ti = getutime() - ti; if (do_benchmark) { printf("bench: utime=%0.3fs\n", ti / 1000000.0);