diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2014-05-01 21:02:45 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2014-05-01 22:01:38 +0200 |
commit | a3477fef2bd9d1741c21d9a98b07f11cebf9f0e1 (patch) | |
tree | 7973f298e9c277df71bd473480768c238583585e /ffmpeg.c | |
parent | 5b9bb4d9ec0e1170ae576657208f60278500aedd (diff) | |
download | ffmpeg-a3477fef2bd9d1741c21d9a98b07f11cebf9f0e1.tar.gz |
ffmpeg: put the sizeof() second in av_malloc_array()
This is purely a cosmetic change
Suggested-by: Clément Bœsch <u@pkh.me>
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'ffmpeg.c')
-rw-r--r-- | ffmpeg.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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); |