summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--libavcodec/ac3enc.c1
-rw-r--r--libavcodec/common.c11
-rw-r--r--libavcodec/dsputil.c3
-rw-r--r--libavcodec/h263.c6
-rw-r--r--libavcodec/h263dec.c5
-rw-r--r--libavcodec/imgconvert.c4
-rw-r--r--libavcodec/imgresample.c12
-rw-r--r--libavcodec/mjpeg.c20
-rw-r--r--libavcodec/mp3lameaudio.c1
-rw-r--r--libavcodec/mpegaudio.c1
-rw-r--r--libavcodec/mpegvideo.c62
-rw-r--r--libavcodec/msmpeg4.c7
-rw-r--r--libavcodec/pcm.c8
-rw-r--r--libavcodec/ratecontrol.c8
-rw-r--r--libavcodec/resample.c23
-rw-r--r--libavcodec/rv10.c6
-rw-r--r--libavcodec/simple_idct.c3
17 files changed, 70 insertions, 111 deletions
diff --git a/libavcodec/ac3enc.c b/libavcodec/ac3enc.c
index b9fe3756b8..c4fef7b365 100644
--- a/libavcodec/ac3enc.c
+++ b/libavcodec/ac3enc.c
@@ -19,7 +19,6 @@
//#define DEBUG
//#define DEBUG_BITALLOC
#include "avcodec.h"
-#include <math.h>
#include "ac3enc.h"
#include "ac3tab.h"
diff --git a/libavcodec/common.c b/libavcodec/common.c
index 19bf9621cb..1bb6f3a35f 100644
--- a/libavcodec/common.c
+++ b/libavcodec/common.c
@@ -19,7 +19,6 @@
* alternative bitstream reader & writer by Michael Niedermayer <michaelni@gmx.at>
*/
#include "common.h"
-#include <math.h>
void init_put_bits(PutBitContext *s,
UINT8 *buffer, int buffer_size,
@@ -444,10 +443,8 @@ int init_vlc(VLC *vlc, int nb_bits, int nb_codes,
bits, bits_wrap, bits_size,
codes, codes_wrap, codes_size,
0, 0) < 0) {
- if (vlc->table_bits)
- free(vlc->table_bits);
- if (vlc->table_codes)
- free(vlc->table_codes);
+ av_free(vlc->table_bits);
+ av_free(vlc->table_codes);
return -1;
}
return 0;
@@ -456,8 +453,8 @@ int init_vlc(VLC *vlc, int nb_bits, int nb_codes,
void free_vlc(VLC *vlc)
{
- free(vlc->table_bits);
- free(vlc->table_codes);
+ av_free(vlc->table_bits);
+ av_free(vlc->table_codes);
}
int ff_gcd(int a, int b){
diff --git a/libavcodec/dsputil.c b/libavcodec/dsputil.c
index b7c95cf071..7e389f00f0 100644
--- a/libavcodec/dsputil.c
+++ b/libavcodec/dsputil.c
@@ -18,9 +18,6 @@
*
* gmc & q-pel & 32/64 bit based MC by Michael Niedermayer <michaelni@gmx.at>
*/
-#include <stdlib.h>
-#include <stdio.h>
-#include <math.h>
#include "avcodec.h"
#include "dsputil.h"
#include "simple_idct.h"
diff --git a/libavcodec/h263.c b/libavcodec/h263.c
index e654e19281..82982a9f0a 100644
--- a/libavcodec/h263.c
+++ b/libavcodec/h263.c
@@ -1553,11 +1553,11 @@ void init_rl(RLTable *rl)
if (run > max_run[level])
max_run[level] = run;
}
- rl->max_level[last] = malloc(MAX_RUN + 1);
+ rl->max_level[last] = av_malloc(MAX_RUN + 1);
memcpy(rl->max_level[last], max_level, MAX_RUN + 1);
- rl->max_run[last] = malloc(MAX_LEVEL + 1);
+ rl->max_run[last] = av_malloc(MAX_LEVEL + 1);
memcpy(rl->max_run[last], max_run, MAX_LEVEL + 1);
- rl->index_run[last] = malloc(MAX_RUN + 1);
+ rl->index_run[last] = av_malloc(MAX_RUN + 1);
memcpy(rl->index_run[last], index_run, MAX_RUN + 1);
}
}
diff --git a/libavcodec/h263dec.c b/libavcodec/h263dec.c
index ac882a06a4..be70eb3f42 100644
--- a/libavcodec/h263dec.c
+++ b/libavcodec/h263dec.c
@@ -16,11 +16,8 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
-#include <stdlib.h>
-#include <stdio.h>
-#include <string.h>
-#include "dsputil.h"
#include "avcodec.h"
+#include "dsputil.h"
#include "mpegvideo.h"
//#define DEBUG
diff --git a/libavcodec/imgconvert.c b/libavcodec/imgconvert.c
index b3f9a367bf..e120fc668d 100644
--- a/libavcodec/imgconvert.c
+++ b/libavcodec/imgconvert.c
@@ -481,7 +481,7 @@ static void deinterlace_bottom_field(UINT8 *dst, int dst_wrap,
int y, y1, i;
UINT8 *buf;
- buf= (UINT8*) malloc(5 * width);
+ buf = (UINT8*)av_malloc(5 * width);
src = src1;
for(y=0;y<height;y+=2) {
@@ -511,7 +511,7 @@ static void deinterlace_bottom_field(UINT8 *dst, int dst_wrap,
dst += dst_wrap;
src += (2 + 1) * src_wrap;
}
- free(buf);
+ av_free(buf);
}
diff --git a/libavcodec/imgresample.c b/libavcodec/imgresample.c
index 8c69de2de1..9cf3b26375 100644
--- a/libavcodec/imgresample.c
+++ b/libavcodec/imgresample.c
@@ -16,12 +16,8 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
-#include <stdlib.h>
-#include <stdio.h>
-#include <string.h>
-#include <math.h>
-#include "dsputil.h"
#include "avcodec.h"
+#include "dsputil.h"
#ifdef USE_FASTMEMCPY
#include "fastmemcpy.h"
@@ -454,7 +450,7 @@ ImgReSampleContext *img_resample_init(int owidth, int oheight,
return s;
fail:
- free(s);
+ av_free(s);
return NULL;
}
@@ -474,8 +470,8 @@ void img_resample(ImgReSampleContext *s,
void img_resample_close(ImgReSampleContext *s)
{
- free(s->line_buf);
- free(s);
+ av_free(s->line_buf);
+ av_free(s);
}
#ifdef TEST
diff --git a/libavcodec/mjpeg.c b/libavcodec/mjpeg.c
index 1f18f4086b..09885420ed 100644
--- a/libavcodec/mjpeg.c
+++ b/libavcodec/mjpeg.c
@@ -23,10 +23,6 @@
#include "avcodec.h"
#include "dsputil.h"
#include "mpegvideo.h"
-#include "common.h"
-
-#include <string.h>
-#include <stdio.h>
#ifdef USE_FASTMEMCPY
#include "fastmemcpy.h"
@@ -246,7 +242,7 @@ int mjpeg_init(MpegEncContext *s)
{
MJpegContext *m;
- m = malloc(sizeof(MJpegContext));
+ m = av_malloc(sizeof(MJpegContext));
if (!m)
return -1;
@@ -278,7 +274,7 @@ int mjpeg_init(MpegEncContext *s)
void mjpeg_close(MpegEncContext *s)
{
- free(s->mjpeg_ctx);
+ av_free(s->mjpeg_ctx);
}
static inline void put_marker(PutBitContext *p, int code)
@@ -777,10 +773,8 @@ static int mjpeg_decode_sof0(MJpegDecodeContext *s,
/* if different size, realloc/alloc picture */
/* XXX: also check h_count and v_count */
if (width != s->width || height != s->height) {
- for(i=0;i<MAX_COMPONENTS;i++) {
- free(s->current_picture[i]);
- s->current_picture[i] = NULL;
- }
+ for(i=0;i<MAX_COMPONENTS;i++)
+ av_freep(&s->current_picture[i]);
s->width = width;
s->height = height;
/* test interlaced mode */
@@ -1128,7 +1122,7 @@ static int mjpeg_decode_com(MJpegDecodeContext *s,
/* XXX: verify len field validity */
len = get_bits(&s->gb, 16)-2;
- cbuf = malloc(len+1);
+ cbuf = av_malloc(len+1);
for (i = 0; i < len; i++)
cbuf[i] = get_bits(&s->gb, 8);
@@ -1147,7 +1141,7 @@ static int mjpeg_decode_com(MJpegDecodeContext *s,
printf("mjpeg: workarounding buggy AVID\n");
}
- free(cbuf);
+ av_free(cbuf);
return 0;
}
@@ -1332,7 +1326,7 @@ static int mjpeg_decode_end(AVCodecContext *avctx)
int i, j;
for(i=0;i<MAX_COMPONENTS;i++)
- free(s->current_picture[i]);
+ av_free(s->current_picture[i]);
for(i=0;i<2;i++) {
for(j=0;j<4;j++)
free_vlc(&s->vlcs[i][j]);
diff --git a/libavcodec/mp3lameaudio.c b/libavcodec/mp3lameaudio.c
index 44fc5a5720..79737bf3b5 100644
--- a/libavcodec/mp3lameaudio.c
+++ b/libavcodec/mp3lameaudio.c
@@ -18,7 +18,6 @@
*/
#include "avcodec.h"
-#include <math.h>
#include "mpegaudio.h"
#include <lame/lame.h>
diff --git a/libavcodec/mpegaudio.c b/libavcodec/mpegaudio.c
index d1040a4050..c409aeea7e 100644
--- a/libavcodec/mpegaudio.c
+++ b/libavcodec/mpegaudio.c
@@ -17,7 +17,6 @@
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
#include "avcodec.h"
-#include <math.h>
#include "mpegaudio.h"
/* currently, cannot change these constants (need to modify
diff --git a/libavcodec/mpegvideo.c b/libavcodec/mpegvideo.c
index d4b22138b5..f351c94062 100644
--- a/libavcodec/mpegvideo.c
+++ b/libavcodec/mpegvideo.c
@@ -18,10 +18,6 @@
*
* 4MV & hq & b-frame encoding stuff by Michael Niedermayer <michaelni@gmx.at>
*/
-#include <stdlib.h>
-#include <stdio.h>
-#include <math.h>
-#include <string.h>
#include "avcodec.h"
#include "dsputil.h"
#include "mpegvideo.h"
@@ -264,7 +260,7 @@ int MPV_common_init(MpegEncContext *s)
int size;
/* MV prediction */
size = (2 * s->mb_width + 2) * (2 * s->mb_height + 2);
- s->motion_val = malloc(size * 2 * sizeof(INT16));
+ s->motion_val = av_malloc(size * 2 * sizeof(INT16));
if (s->motion_val == NULL)
goto fail;
memset(s->motion_val, 0, size * 2 * sizeof(INT16));
@@ -278,7 +274,7 @@ int MPV_common_init(MpegEncContext *s)
y_size = (2 * s->mb_width + 2) * (2 * s->mb_height + 2);
c_size = (s->mb_width + 2) * (s->mb_height + 2);
size = y_size + 2 * c_size;
- s->dc_val[0] = malloc(size * sizeof(INT16));
+ s->dc_val[0] = av_malloc(size * sizeof(INT16));
if (s->dc_val[0] == NULL)
goto fail;
s->dc_val[1] = s->dc_val[0] + y_size;
@@ -326,44 +322,38 @@ int MPV_common_init(MpegEncContext *s)
return -1;
}
-#define CHECK_FREE(p)\
-{\
- if(p) free(p);\
- p= NULL;\
-}
-
/* init common structure for both encoder and decoder */
void MPV_common_end(MpegEncContext *s)
{
int i;
- CHECK_FREE(s->mb_type);
- CHECK_FREE(s->mb_var);
- CHECK_FREE(s->p_mv_table);
- CHECK_FREE(s->last_p_mv_table);
- CHECK_FREE(s->b_forw_mv_table);
- CHECK_FREE(s->b_back_mv_table);
- CHECK_FREE(s->b_bidir_forw_mv_table);
- CHECK_FREE(s->b_bidir_back_mv_table);
- CHECK_FREE(s->b_direct_forw_mv_table);
- CHECK_FREE(s->b_direct_back_mv_table);
- CHECK_FREE(s->b_direct_mv_table);
- CHECK_FREE(s->motion_val);
- CHECK_FREE(s->dc_val[0]);
- CHECK_FREE(s->ac_val[0]);
- CHECK_FREE(s->coded_block);
- CHECK_FREE(s->mbintra_table);
- CHECK_FREE(s->me_scratchpad);
-
- CHECK_FREE(s->mbskip_table);
- CHECK_FREE(s->bitstream_buffer);
+ av_freep(&s->mb_type);
+ av_freep(&s->mb_var);
+ av_freep(&s->p_mv_table);
+ av_freep(&s->last_p_mv_table);
+ av_freep(&s->b_forw_mv_table);
+ av_freep(&s->b_back_mv_table);
+ av_freep(&s->b_bidir_forw_mv_table);
+ av_freep(&s->b_bidir_back_mv_table);
+ av_freep(&s->b_direct_forw_mv_table);
+ av_freep(&s->b_direct_back_mv_table);
+ av_freep(&s->b_direct_mv_table);
+ av_freep(&s->motion_val);
+ av_freep(&s->dc_val[0]);
+ av_freep(&s->ac_val[0]);
+ av_freep(&s->coded_block);
+ av_freep(&s->mbintra_table);
+ av_freep(&s->me_scratchpad);
+
+ av_freep(&s->mbskip_table);
+ av_freep(&s->bitstream_buffer);
for(i=0;i<3;i++) {
int j;
- CHECK_FREE(s->last_picture_base[i]);
- CHECK_FREE(s->next_picture_base[i]);
- CHECK_FREE(s->aux_picture_base[i]);
+ av_freep(&s->last_picture_base[i]);
+ av_freep(&s->next_picture_base[i]);
+ av_freep(&s->aux_picture_base[i]);
for(j=0; j<REORDER_BUFFER_SIZE; j++){
- CHECK_FREE(s->picture_buffer[j][i]);
+ av_freep(&s->picture_buffer[j][i]);
}
}
s->context_initialized = 0;
diff --git a/libavcodec/msmpeg4.c b/libavcodec/msmpeg4.c
index 4321071f22..2809aee467 100644
--- a/libavcodec/msmpeg4.c
+++ b/libavcodec/msmpeg4.c
@@ -16,12 +16,9 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
-#include <stdlib.h>
-#include <stdio.h>
-#include "common.h"
+#include "avcodec.h"
#include "dsputil.h"
#include "mpegvideo.h"
-#include "avcodec.h"
/*
* You can also call this codec : MPEG4 with a twist !
@@ -137,7 +134,7 @@ static void init_mv_table(MVTable *tab)
{
int i, x, y;
- tab->table_mv_index = malloc(sizeof(UINT16) * 4096);
+ tab->table_mv_index = av_malloc(sizeof(UINT16) * 4096);
/* mark all entries as not used */
for(i=0;i<4096;i++)
tab->table_mv_index[i] = tab->n;
diff --git a/libavcodec/pcm.c b/libavcodec/pcm.c
index 13cc978615..f7ecd80f2d 100644
--- a/libavcodec/pcm.c
+++ b/libavcodec/pcm.c
@@ -109,7 +109,7 @@ static int encode_init(AVCodecContext *avctx)
switch(avctx->codec->id) {
case CODEC_ID_PCM_ALAW:
if (linear_to_alaw_ref == 0) {
- linear_to_alaw = malloc(16384);
+ linear_to_alaw = av_malloc(16384);
if (!linear_to_alaw)
return -1;
build_xlaw_table(linear_to_alaw, alaw2linear, 0xd5);
@@ -118,7 +118,7 @@ static int encode_init(AVCodecContext *avctx)
break;
case CODEC_ID_PCM_MULAW:
if (linear_to_ulaw_ref == 0) {
- linear_to_ulaw = malloc(16384);
+ linear_to_ulaw = av_malloc(16384);
if (!linear_to_ulaw)
return -1;
build_xlaw_table(linear_to_ulaw, ulaw2linear, 0xff);
@@ -136,11 +136,11 @@ static int encode_close(AVCodecContext *avctx)
switch(avctx->codec->id) {
case CODEC_ID_PCM_ALAW:
if (--linear_to_alaw_ref == 0)
- free(linear_to_alaw);
+ av_free(linear_to_alaw);
break;
case CODEC_ID_PCM_MULAW:
if (--linear_to_ulaw_ref == 0)
- free(linear_to_ulaw);
+ av_free(linear_to_ulaw);
break;
default:
/* nothing to free */
diff --git a/libavcodec/ratecontrol.c b/libavcodec/ratecontrol.c
index d997dcca15..59dd654dd1 100644
--- a/libavcodec/ratecontrol.c
+++ b/libavcodec/ratecontrol.c
@@ -106,10 +106,10 @@ void ff_rate_control_uninit(MpegEncContext *s)
RateControlContext *rcc= &s->rc_context;
emms_c();
- if(rcc->stats_file) fclose(rcc->stats_file);
- if(rcc->entry) free(rcc->entry);
- rcc->stats_file= NULL;
- rcc->entry= NULL;
+ if(rcc->stats_file)
+ fclose(rcc->stats_file);
+ rcc->stats_file = NULL;
+ av_freep(&rcc->entry);
}
//----------------------------------
diff --git a/libavcodec/resample.c b/libavcodec/resample.c
index 78b4ad8126..8c5e1fa892 100644
--- a/libavcodec/resample.c
+++ b/libavcodec/resample.c
@@ -17,7 +17,6 @@
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
#include "avcodec.h"
-#include <math.h>
typedef struct {
/* fractional resampling */
@@ -193,7 +192,7 @@ static int mono_resample(ReSampleChannelContext *s, short *output, short *input,
short *buf1;
short *buftmp;
- buf1= (short*) malloc( nb_samples * sizeof(short) );
+ buf1= (short*)av_malloc( nb_samples * sizeof(short) );
/* first downsample by an integer factor with averaging filter */
if (s->iratio > 1) {
@@ -209,7 +208,7 @@ static int mono_resample(ReSampleChannelContext *s, short *output, short *input,
} else {
memcpy(output, buftmp, nb_samples * sizeof(short));
}
- free(buf1);
+ av_free(buf1);
return nb_samples;
}
@@ -260,13 +259,13 @@ int audio_resample(ReSampleContext *s, short *output, short *input, int nb_sampl
}
/* XXX: move those malloc to resample init code */
- bufin[0]= (short*) malloc( nb_samples * sizeof(short) );
- bufin[1]= (short*) malloc( nb_samples * sizeof(short) );
+ bufin[0]= (short*) av_malloc( nb_samples * sizeof(short) );
+ bufin[1]= (short*) av_malloc( nb_samples * sizeof(short) );
/* make some zoom to avoid round pb */
lenout= (int)(nb_samples * s->ratio) + 16;
- bufout[0]= (short*) malloc( lenout * sizeof(short) );
- bufout[1]= (short*) malloc( lenout * sizeof(short) );
+ bufout[0]= (short*) av_malloc( lenout * sizeof(short) );
+ bufout[1]= (short*) av_malloc( lenout * sizeof(short) );
if (s->input_channels == 2 &&
s->output_channels == 1) {
@@ -299,15 +298,15 @@ int audio_resample(ReSampleContext *s, short *output, short *input, int nb_sampl
stereo_mux(output, buftmp3[0], buftmp3[1], nb_samples1);
}
- free(bufin[0]);
- free(bufin[1]);
+ av_free(bufin[0]);
+ av_free(bufin[1]);
- free(bufout[0]);
- free(bufout[1]);
+ av_free(bufout[0]);
+ av_free(bufout[1]);
return nb_samples1;
}
void audio_resample_close(ReSampleContext *s)
{
- free(s);
+ av_free(s);
}
diff --git a/libavcodec/rv10.c b/libavcodec/rv10.c
index d358cb3d79..d586683910 100644
--- a/libavcodec/rv10.c
+++ b/libavcodec/rv10.c
@@ -16,12 +16,8 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
-#include <stdlib.h>
-#include <stdio.h>
-#include <string.h>
-#include "common.h"
-#include "dsputil.h"
#include "avcodec.h"
+#include "dsputil.h"
#include "mpegvideo.h"
//#define DEBUG
diff --git a/libavcodec/simple_idct.c b/libavcodec/simple_idct.c
index fb756f1ea0..120906f91c 100644
--- a/libavcodec/simple_idct.c
+++ b/libavcodec/simple_idct.c
@@ -20,10 +20,9 @@
based upon some outcommented c code from mpeg2dec (idct_mmx.c written by Aaron Holtzman <aholtzma@ess.engr.uvic.ca>)
*/
-#include <inttypes.h>
+#include "avcodec.h"
#include "simple_idct.h"
-#include "../config.h"
#if 0
#define W1 2841 /* 2048*sqrt (2)*cos (1*pi/16) */