1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-04-14 00:58:38 +02:00

add necessary #includes in headers

Originally committed as revision 13043 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Måns Rullgård 2008-05-03 13:29:39 +00:00
parent 690bfceb20
commit 7c43009358
4 changed files with 7 additions and 0 deletions

View File

@ -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;

View File

@ -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

View File

@ -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
*/ */

View File

@ -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;