On Sun, Oct 18, 2015 at 12:07:34PM +0200, Marton Balint wrote:
> Signed-off-by: Marton Balint <c...@passwd.hu>
> ---
>  ffmpeg.c | 4 +++-
>  1 file changed, 3 insertions(+), 1 deletion(-)
> 
> diff --git a/ffmpeg.c b/ffmpeg.c
> index 36a68fb..252bc0d 100644
> --- a/ffmpeg.c
> +++ b/ffmpeg.c
> @@ -4104,7 +4104,9 @@ static int transcode(void)
>      /* write the trailer if needed and close file */
>      for (i = 0; i < nb_output_files; i++) {
>          os = output_files[i]->ctx;
> -        av_write_trailer(os);
> +        if ((ret = av_write_trailer(os)) < 0) {
> +            av_log(NULL, AV_LOG_ERROR, "Error writing trailer of %s: %s", 
> os->filename, av_err2str(ret));
> +        }
>      }

LGTM

thanks

[...]
-- 
Michael     GnuPG fingerprint: 9FF2128B147EF6730BADF133611EC787040B0FAB

During times of universal deceit, telling the truth becomes a
revolutionary act. -- George Orwell

Attachment: signature.asc
Description: Digital signature

_______________________________________________
ffmpeg-devel mailing list
ffmpeg-devel@ffmpeg.org
http://ffmpeg.org/mailman/listinfo/ffmpeg-devel

Reply via email to