[FFmpeg-cvslog] r13043 - in trunk: libavcodec/aac_ac3_parser.h libavcodec/acelp_math.h libavcodec/lsp.h libavutil/fifo.h
mru
subversion
Sat May 3 15:29:39 CEST 2008
Author: mru
Date: Sat May 3 15:29:39 2008
New Revision: 13043
Log:
add necessary #includes in headers
Modified:
trunk/libavcodec/aac_ac3_parser.h
trunk/libavcodec/acelp_math.h
trunk/libavcodec/lsp.h
trunk/libavutil/fifo.h
Modified: trunk/libavcodec/aac_ac3_parser.h
==============================================================================
--- trunk/libavcodec/aac_ac3_parser.h (original)
+++ trunk/libavcodec/aac_ac3_parser.h Sat May 3 15:29:39 2008
@@ -25,6 +25,7 @@
#include <stdint.h>
#include "avcodec.h"
+#include "parser.h"
typedef struct AACAC3ParseContext {
int frame_size;
Modified: trunk/libavcodec/acelp_math.h
==============================================================================
--- trunk/libavcodec/acelp_math.h (original)
+++ trunk/libavcodec/acelp_math.h Sat May 3 15:29:39 2008
@@ -23,6 +23,8 @@
#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
Modified: trunk/libavcodec/lsp.h
==============================================================================
--- trunk/libavcodec/lsp.h (original)
+++ trunk/libavcodec/lsp.h Sat May 3 15:29:39 2008
@@ -22,6 +22,9 @@
#ifndef FFMPEG_LSP_H
#define FFMPEG_LSP_H
+
+#include <stdint.h>
+
/**
(I.F) means fixed-point value with F fractional and I integer bits
*/
Modified: trunk/libavutil/fifo.h
==============================================================================
--- trunk/libavutil/fifo.h (original)
+++ trunk/libavutil/fifo.h Sat May 3 15:29:39 2008
@@ -25,6 +25,7 @@
#define FFMPEG_FIFO_H
#include <stdint.h>
+#include "common.h"
typedef struct AVFifoBuffer {
uint8_t *buffer;
More information about the ffmpeg-cvslog
mailing list