Commit a3477fef authored by Michael Niedermayer's avatar Michael Niedermayer

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

This is purely a cosmetic change
Suggested-by: 's avatarClément Bœsch <u@pkh.me>
Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 5b9bb4d9
...@@ -2150,7 +2150,7 @@ static void print_sdp(void) ...@@ -2150,7 +2150,7 @@ static void print_sdp(void)
{ {
char sdp[16384]; char sdp[16384];
int i; int i;
AVFormatContext **avc = av_malloc_array(sizeof(*avc), nb_output_files); AVFormatContext **avc = av_malloc_array(nb_output_files, sizeof(*avc));
if (!avc) if (!avc)
exit_program(1); exit_program(1);
...@@ -2285,7 +2285,7 @@ static void parse_forced_key_frames(char *kf, OutputStream *ost, ...@@ -2285,7 +2285,7 @@ static void parse_forced_key_frames(char *kf, OutputStream *ost,
if (*p == ',') if (*p == ',')
n++; n++;
size = n; size = n;
pts = av_malloc_array(sizeof(*pts), size); pts = av_malloc_array(size, sizeof(*pts));
if (!pts) { if (!pts) {
av_log(NULL, AV_LOG_FATAL, "Could not allocate forced key frames array.\n"); av_log(NULL, AV_LOG_FATAL, "Could not allocate forced key frames array.\n");
exit_program(1); exit_program(1);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment