]> rtime.felk.cvut.cz Git - frescor/ffmpeg.git/commitdiff
removed useless header includes - use av memory functions
authorglantau <glantau@9553f0bf-9b14-0410-a0b8-cfaf0461ba5b>
Sat, 18 May 2002 23:03:29 +0000 (23:03 +0000)
committerglantau <glantau@9553f0bf-9b14-0410-a0b8-cfaf0461ba5b>
Sat, 18 May 2002 23:03:29 +0000 (23:03 +0000)
git-svn-id: file:///var/local/repositories/ffmpeg/trunk@522 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b

17 files changed:
libavcodec/ac3enc.c
libavcodec/common.c
libavcodec/dsputil.c
libavcodec/h263.c
libavcodec/h263dec.c
libavcodec/imgconvert.c
libavcodec/imgresample.c
libavcodec/mjpeg.c
libavcodec/mp3lameaudio.c
libavcodec/mpegaudio.c
libavcodec/mpegvideo.c
libavcodec/msmpeg4.c
libavcodec/pcm.c
libavcodec/ratecontrol.c
libavcodec/resample.c
libavcodec/rv10.c
libavcodec/simple_idct.c

index b9fe3756b8476d1fc6c9cab80a32c34b7f45201b..c4fef7b36510846eb02a99e19f5a40e03f2f7988 100644 (file)
@@ -19,7 +19,6 @@
 //#define DEBUG
 //#define DEBUG_BITALLOC
 #include "avcodec.h"
-#include <math.h>
 
 #include "ac3enc.h"
 #include "ac3tab.h"
index 19bf9621cb7f18f99a24889ca54b1c42c2bd285e..1bb6f3a35fa0b952fcdd3661cb5fa65960eff623 100644 (file)
@@ -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){
index b7c95cf0715c8a946698daaf74cf6028ce54a39f..7e389f00f033714a3aa2e1720f1fb04e45c15ffc 100644 (file)
@@ -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"
index e654e192813e69d4352063d698c632aef8995f19..82982a9f0ada3183fdb376e5bb5df08c5eaf3fcf 100644 (file)
@@ -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);
     }
 }
index ac882a06a44dae50bfaa1a2e55acdc1626203fde..be70eb3f42b94b18ee0001d11540dc59f9b1e43e 100644 (file)
  * 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
index b3f9a367bf195fe6abfec8975563648b7622e8a6..e120fc668d0f61357f23f364f671bae264a8a8d7 100644 (file)
@@ -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);
 }
 
 
index 8c69de2de17c044a2e57371e1e6a9bf4c6ce2cb7..9cf3b26375704bdee0e790bba0392c97e97c9345 100644 (file)
  * 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
index 1f18f4086bc2d631c776ec2bad2ba7c5cb2011e9..09885420edf1fc27ef12a415deeb07a4f77bcfc4 100644 (file)
 #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]);
index 44fc5a572006f4f02be7f7aa2fd1ef60c3ae33e5..79737bf3b59cb2da473da01ab61fce34268b9cc7 100644 (file)
@@ -18,7 +18,6 @@
  */
 
 #include "avcodec.h"
-#include <math.h>
 #include "mpegaudio.h"
 #include <lame/lame.h>
 
index d1040a405049e894424fe1ac758fa69dbc4dd882..c409aeea7ee56ab9a054e03f6b01d6d8567a275d 100644 (file)
@@ -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
index d4b22138b59fdd79667c58c0a2d34f4572ae5fff..f351c94062039cd855f63c003b9a197ed0b84b03 100644 (file)
  *
  * 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;
index 4321071f2244e6cffd4f11c3f6b1f629eec4fa0b..2809aee467111e3389ac88c50b19942de62ef9b1 100644 (file)
  * 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;
index 13cc9786157c248d86e7a6a1074121d35873b777..f7ecd80f2de35a7b04989335a2590bd543a580a9 100644 (file)
@@ -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 */
index d997dcca15598065c924ea1a6c215d33d2a46c08..59dd654dd11bdba604ef437a1dd8e76a094fbf60 100644 (file)
@@ -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);
 }
 
 //----------------------------------
index 78b4ad812667e7f91b16447d460a6a3cf4e87329..8c5e1fa8928320bd3067aeaf7eb6e1aff358d0e1 100644 (file)
@@ -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);
 }
index d358cb3d79bf7a3da81aa14b5fa5301cdfbd818e..d586683910f538822674ddc9c051db51df39249b 100644 (file)
  * 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
index fb756f1ea07a636f1fdc06dfc062bce1475f56e8..120906f91c9136f4b5b47b8f9ef522320314d1f2 100644 (file)
   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) */