comparison mpc.c @ 6763:f7cbb7733146 libavcodec

Use full path for #includes from another directory.
author diego
date Fri, 09 May 2008 11:56:36 +0000
parents 2cc044ac80d4
children 7a463923ecd1
comparison
equal deleted inserted replaced
6762:99966715fe75 6763:f7cbb7733146
23 * @file mpc.c Musepack decoder core 23 * @file mpc.c Musepack decoder core
24 * MPEG Audio Layer 1/2 -like codec with frames of 1152 samples 24 * MPEG Audio Layer 1/2 -like codec with frames of 1152 samples
25 * divided into 32 subbands. 25 * divided into 32 subbands.
26 */ 26 */
27 27
28 #include "libavutil/random.h"
28 #include "avcodec.h" 29 #include "avcodec.h"
29 #include "bitstream.h" 30 #include "bitstream.h"
30 #include "dsputil.h" 31 #include "dsputil.h"
31 #include "random.h"
32 32
33 #ifdef CONFIG_MPEGAUDIO_HP 33 #ifdef CONFIG_MPEGAUDIO_HP
34 #define USE_HIGHPRECISION 34 #define USE_HIGHPRECISION
35 #endif 35 #endif
36 #include "mpegaudio.h" 36 #include "mpegaudio.h"