summaryrefslogtreecommitdiff
path: root/src/libffmpeg/libavcodec/mpegaudiodec.c
diff options
context:
space:
mode:
authorMiguel Freitas <miguelfreitas@users.sourceforge.net>2004-04-25 18:57:04 +0000
committerMiguel Freitas <miguelfreitas@users.sourceforge.net>2004-04-25 18:57:04 +0000
commita2a44876712f079610f0396fb9a682ea47e05b6e (patch)
tree1f3e328dfe6a5f9fa7c79e7a23bf6310be2827fd /src/libffmpeg/libavcodec/mpegaudiodec.c
parentacb7dc0f256afc24e875a168da989ef25d86b7b7 (diff)
downloadxine-lib-a2a44876712f079610f0396fb9a682ea47e05b6e.tar.gz
xine-lib-a2a44876712f079610f0396fb9a682ea47e05b6e.tar.bz2
ffmpeg sync
CVS patchset: 6437 CVS date: 2004/04/25 18:57:04
Diffstat (limited to 'src/libffmpeg/libavcodec/mpegaudiodec.c')
-rw-r--r--src/libffmpeg/libavcodec/mpegaudiodec.c9
1 files changed, 4 insertions, 5 deletions
diff --git a/src/libffmpeg/libavcodec/mpegaudiodec.c b/src/libffmpeg/libavcodec/mpegaudiodec.c
index d01405f54..a9eed4e36 100644
--- a/src/libffmpeg/libavcodec/mpegaudiodec.c
+++ b/src/libffmpeg/libavcodec/mpegaudiodec.c
@@ -23,7 +23,6 @@
*/
//#define DEBUG
-#include <math.h>
#include "avcodec.h"
#include "mpegaudio.h"
#include "dsputil.h"
@@ -401,11 +400,11 @@ static int decode_init(AVCodecContext * avctx)
}
/* compute n ^ (4/3) and store it in mantissa/exp format */
- if (!av_mallocz_static(&table_4_3_exp,
- TABLE_4_3_SIZE * sizeof(table_4_3_exp[0])))
+ table_4_3_exp= av_mallocz_static(TABLE_4_3_SIZE * sizeof(table_4_3_exp[0]));
+ if(!table_4_3_exp)
return -1;
- if (!av_mallocz_static(&table_4_3_value,
- TABLE_4_3_SIZE * sizeof(table_4_3_value[0])))
+ table_4_3_value= av_mallocz_static(TABLE_4_3_SIZE * sizeof(table_4_3_value[0]));
+ if(!table_4_3_value)
return -1;
int_pow_init();