Browse Source

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>
tags/n2.3
Michael Niedermayer 11 years ago
parent
commit
a3477fef2b
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      ffmpeg.c

+ 2
- 2
ffmpeg.c View File

@@ -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);


Loading…
Cancel
Save