[FFmpeg-cvslog] ffmpeg: put the sizeof() second in av_malloc_array()

Michael Niedermayer git at videolan.org
Thu May 1 22:07:29 CEST 2014


ffmpeg | branch: master | Michael Niedermayer <michaelni at gmx.at> | Thu May  1 21:02:45 2014 +0200| [a3477fef2bd9d1741c21d9a98b07f11cebf9f0e1] | committer: Michael Niedermayer

ffmpeg: put the sizeof() second in av_malloc_array()

This is purely a cosmetic change
Suggested-by: Clément Bœsch <u at pkh.me>
Signed-off-by: Michael Niedermayer <michaelni at gmx.at>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=a3477fef2bd9d1741c21d9a98b07f11cebf9f0e1
---

 ffmpeg.c |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/ffmpeg.c b/ffmpeg.c
index 1237ba9..b2e39e8 100644
--- a/ffmpeg.c
+++ b/ffmpeg.c
@@ -2150,7 +2150,7 @@ static void print_sdp(void)
 {
     char sdp[16384];
     int i;
-    AVFormatContext **avc = av_malloc_array(sizeof(*avc), nb_output_files);
+    AVFormatContext **avc = av_malloc_array(nb_output_files, sizeof(*avc));
 
     if (!avc)
         exit_program(1);
@@ -2285,7 +2285,7 @@ static void parse_forced_key_frames(char *kf, OutputStream *ost,
         if (*p == ',')
             n++;
     size = n;
-    pts = av_malloc_array(sizeof(*pts), size);
+    pts = av_malloc_array(size, sizeof(*pts));
     if (!pts) {
         av_log(NULL, AV_LOG_FATAL, "Could not allocate forced key frames array.\n");
         exit_program(1);



More information about the ffmpeg-cvslog mailing list