Originally committed as revision 13043 to svn://svn.ffmpeg.org/ffmpeg/trunk
#include <stdint.h>
#include "avcodec.h"
+#include "parser.h"
typedef struct AACAC3ParseContext {
int frame_size;
#ifndef FFMPEG_ACELP_MATH_H
#define FFMPEG_ACELP_MATH_H
+#include <stdint.h>
+
/**
* \brief fixed-point implementation of cosine in [0; PI) domain
* \param arg fixed-point cosine argument, 0 <= arg < 0x4000
#ifndef FFMPEG_LSP_H
#define FFMPEG_LSP_H
+
+#include <stdint.h>
+
/**
(I.F) means fixed-point value with F fractional and I integer bits
*/
#define FFMPEG_FIFO_H
#include <stdint.h>
+#include "common.h"
typedef struct AVFifoBuffer {
uint8_t *buffer;