From b9eb1404f615159e8e32c55491b29b5e7f8a4328 Mon Sep 17 00:00:00 2001 From: Joerg Bornkessel Date: Sat, 8 Nov 2014 18:32:29 +0100 Subject: missing () --- convert.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/convert.c b/convert.c index 28222fe..89adc08 100644 --- a/convert.c +++ b/convert.c @@ -128,7 +128,7 @@ void cConvert::decode_mpa_frame(mpeg_audio_frame *mpa_frame) AVCodecContext *decoder_ctx; - AVFrame *frame = avcodec_alloc_frame(); //av_frame_alloc # libav10 + AVFrame *frame = avcodec_alloc_frame(); //av_frame_alloc() # libav10 int got_output; int len = avcodec_decode_audio4(decoder_ctx, frame, &got_output, &avpkt); @@ -178,7 +178,7 @@ abuffer *cConvert::reencode_mpa_frame(mpeg_audio_frame *mpa_frame, // https://www.ffmpeg.org/doxygen/1.0/group__lavc__encoding.html#gf12a9da0d33f50ff406e03572fab4763 // https://www.ffmpeg.org/doxygen/1.0/decoding__encoding_8c-source.html#l00102 AVCodecContext *encoder_ctx; - AVFrame *frame = avcodec_alloc_frame; // libav10 av_frame_alloc + AVFrame *frame = avcodec_alloc_frame(); // libav10 av_frame_alloc() AVPacket avpkt; av_init_packet(&avpkt); avpkt.data = mpa_frame->data; -- cgit v1.2.3