Commit 7c430093 authored by Måns Rullgård's avatar Måns Rullgård

add necessary #includes in headers

Originally committed as revision 13043 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 690bfceb
...@@ -25,6 +25,7 @@ ...@@ -25,6 +25,7 @@
#include <stdint.h> #include <stdint.h>
#include "avcodec.h" #include "avcodec.h"
#include "parser.h"
typedef struct AACAC3ParseContext { typedef struct AACAC3ParseContext {
int frame_size; int frame_size;
......
...@@ -23,6 +23,8 @@ ...@@ -23,6 +23,8 @@
#ifndef FFMPEG_ACELP_MATH_H #ifndef FFMPEG_ACELP_MATH_H
#define FFMPEG_ACELP_MATH_H #define FFMPEG_ACELP_MATH_H
#include <stdint.h>
/** /**
* \brief fixed-point implementation of cosine in [0; PI) domain * \brief fixed-point implementation of cosine in [0; PI) domain
* \param arg fixed-point cosine argument, 0 <= arg < 0x4000 * \param arg fixed-point cosine argument, 0 <= arg < 0x4000
......
...@@ -22,6 +22,9 @@ ...@@ -22,6 +22,9 @@
#ifndef FFMPEG_LSP_H #ifndef FFMPEG_LSP_H
#define FFMPEG_LSP_H #define FFMPEG_LSP_H
#include <stdint.h>
/** /**
(I.F) means fixed-point value with F fractional and I integer bits (I.F) means fixed-point value with F fractional and I integer bits
*/ */
......
...@@ -25,6 +25,7 @@ ...@@ -25,6 +25,7 @@
#define FFMPEG_FIFO_H #define FFMPEG_FIFO_H
#include <stdint.h> #include <stdint.h>
#include "common.h"
typedef struct AVFifoBuffer { typedef struct AVFifoBuffer {
uint8_t *buffer; uint8_t *buffer;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment