Module: libav
Branch: master
Commit: c92965dbfbb7e2b49df14db2fd0e23a29295730a

Author:    Vittorio Giovara <[email protected]>
Committer: Vittorio Giovara <[email protected]>
Date:      Tue Oct 14 16:46:48 2014 +0100

avconv: check return value

CC: [email protected]
Bug-Id: CID 1224275

---

 avconv.c |    4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/avconv.c b/avconv.c
index 972e62b..c94e8f8 100644
--- a/avconv.c
+++ b/avconv.c
@@ -1963,7 +1963,9 @@ static int transcode_init(void)
                 av_log(NULL, AV_LOG_WARNING, "The bitrate parameter is set too 
low."
                                              "It takes bits/s as argument, not 
kbits/s\n");
         } else {
-            av_opt_set_dict(ost->enc_ctx, &ost->encoder_opts);
+            ret = av_opt_set_dict(ost->enc_ctx, &ost->encoder_opts);
+            if (ret < 0)
+                return ret;
         }
 
         ret = avcodec_copy_context(ost->st->codec, ost->enc_ctx);

_______________________________________________
libav-commits mailing list
[email protected]
https://lists.libav.org/mailman/listinfo/libav-commits

Reply via email to