This website works better with JavaScript.
Home
Help
Sign In
falkTX
/
FFmpeg
mirror of
https://github.com/falkTX/FFmpeg.git
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
338
Wiki
Activity
Browse Source
add necessary #includes in headers
Originally committed as revision 13043 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
Måns Rullgård
18 years ago
parent
690bfceb20
commit
7c43009358
4 changed files
with
7 additions
and
0 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-0
libavcodec/aac_ac3_parser.h
+2
-0
libavcodec/acelp_math.h
+3
-0
libavcodec/lsp.h
+1
-0
libavutil/fifo.h
+ 1
- 0
libavcodec/aac_ac3_parser.h
View File
@@ -25,6 +25,7 @@
#include <stdint.h>
#include "avcodec.h"
#include "parser.h"
typedef struct AACAC3ParseContext {
int frame_size;
+ 2
- 0
libavcodec/acelp_math.h
View File
@@ -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
+ 3
- 0
libavcodec/lsp.h
View File
@@ -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
*/
+ 1
- 0
libavutil/fifo.h
View File
@@ -25,6 +25,7 @@
#define FFMPEG_FIFO_H
#include <stdint.h>
#include "common.h"
typedef struct AVFifoBuffer {
uint8_t *buffer;
Write
Preview
Loading…
Cancel
Save