summaryrefslogtreecommitdiff
path: root/libavcodec/mpegaudio.h
diff options
context:
space:
mode:
authorAurelien Jacobs <aurel@gnuage.org>2007-05-20 22:50:29 +0000
committerAurelien Jacobs <aurel@gnuage.org>2007-05-20 22:50:29 +0000
commit08aa2c9bd2a3b5d26693ee3a58c38eedc9ee3246 (patch)
treece95a465fcf9cdd89a5100c7ccc6b683b5d1c2a5 /libavcodec/mpegaudio.h
parentca6e50afc13acdd764527c0fcfe13d1ea90b4d98 (diff)
remove dependency of mpeg audio encoder over mpeg audio decoder
Originally committed as revision 9082 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/mpegaudio.h')
-rw-r--r--libavcodec/mpegaudio.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/libavcodec/mpegaudio.h b/libavcodec/mpegaudio.h
index f8a689ab98..8a830e25a9 100644
--- a/libavcodec/mpegaudio.h
+++ b/libavcodec/mpegaudio.h
@@ -26,6 +26,7 @@
#ifndef MPEGAUDIO_H
#define MPEGAUDIO_H
+#include "avcodec.h"
#include "bitstream.h"
#include "dsputil.h"
@@ -115,7 +116,7 @@ typedef struct MPADecodeContext {
AVCodecContext* avctx;
} MPADecodeContext;
-int l2_select_table(int bitrate, int nb_channels, int freq, int lsf);
+int ff_mpa_l2_select_table(int bitrate, int nb_channels, int freq, int lsf);
int ff_mpa_decode_header(AVCodecContext *avctx, uint32_t head, int *sample_rate);
void ff_mpa_synth_init(MPA_INT *window);
void ff_mpa_synth_filter(MPA_INT *synth_buf_ptr, int *synth_buf_offset,