diff options
author | Paul B Mahol <onemda@gmail.com> | 2014-08-19 13:35:44 +0000 |
---|---|---|
committer | Paul B Mahol <onemda@gmail.com> | 2014-08-19 13:35:44 +0000 |
commit | 9a07c15f4893a014ea5f154196a78735f2cb1d24 (patch) | |
tree | 9a92690b56c8e5c056104ebee058ac15927c2f69 | |
parent | 02dc75f218e9ad445ebc054abadfbb5e441af72c (diff) | |
download | ffmpeg-9a07c15f4893a014ea5f154196a78735f2cb1d24.tar.gz |
avcodec/pafaudio: use paf.h instead
Signed-off-by: Paul B Mahol <onemda@gmail.com>
-rw-r--r-- | libavcodec/pafaudio.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/libavcodec/pafaudio.c b/libavcodec/pafaudio.c index 9b485335ec..aaaef5e9c8 100644 --- a/libavcodec/pafaudio.c +++ b/libavcodec/pafaudio.c @@ -24,9 +24,7 @@ #include "avcodec.h" #include "internal.h" #include "mathops.h" - -#define PAF_SOUND_SAMPLES 2205 -#define PAF_SOUND_FRAME_SIZE ((256 + PAF_SOUND_SAMPLES) * 2) +#include "paf.h" static av_cold int paf_audio_init(AVCodecContext *avctx) { |