summaryrefslogtreecommitdiff
path: root/ffmpeg.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2014-05-01 02:23:08 +0200
committerMichael Niedermayer <michaelni@gmx.at>2014-05-01 02:23:08 +0200
commitfeaa31d35499395ec292015ce02e2a5494c8283e (patch)
treeba6743ca40d4e416885cd00d84acc3d21f6c49a6 /ffmpeg.c
parent82ccefb904b0712047ddd8f0fc2f5e11c7fb1745 (diff)
ffmpeg: use av_malloc_array()
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'ffmpeg.c')
-rw-r--r--ffmpeg.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ffmpeg.c b/ffmpeg.c
index e7b42906a4..1237ba9f80 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(sizeof(*avc) * nb_output_files);
+ AVFormatContext **avc = av_malloc_array(sizeof(*avc), nb_output_files);
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(sizeof(*pts) * size);
+ pts = av_malloc_array(sizeof(*pts), size);
if (!pts) {
av_log(NULL, AV_LOG_FATAL, "Could not allocate forced key frames array.\n");
exit_program(1);