mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
Fix 'make checkheaders', based on a patch by Diego Pettenò, flameeyes gmail com.
Originally committed as revision 15552 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
9971331dfb
commit
95137bbbb4
@ -23,6 +23,9 @@
|
|||||||
#define FFMPEG_CMDUTILS_H
|
#define FFMPEG_CMDUTILS_H
|
||||||
|
|
||||||
#include <inttypes.h>
|
#include <inttypes.h>
|
||||||
|
#include "libavcodec/avcodec.h"
|
||||||
|
#include "libavformat/avformat.h"
|
||||||
|
#include "libswscale/swscale.h"
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* program name, defined by the program for show_version().
|
* program name, defined by the program for show_version().
|
||||||
|
@ -24,7 +24,7 @@
|
|||||||
|
|
||||||
#include "avcodec.h"
|
#include "avcodec.h"
|
||||||
#include "aac.h"
|
#include "aac.h"
|
||||||
#include "lowpass.h"
|
//#include "lowpass.h"
|
||||||
|
|
||||||
enum AACPsyModelType{
|
enum AACPsyModelType{
|
||||||
AAC_PSY_TEST, ///< a sample model to exercise encoder
|
AAC_PSY_TEST, ///< a sample model to exercise encoder
|
||||||
|
@ -22,6 +22,8 @@
|
|||||||
#ifndef AVCODEC_RA288_H
|
#ifndef AVCODEC_RA288_H
|
||||||
#define AVCODEC_RA288_H
|
#define AVCODEC_RA288_H
|
||||||
|
|
||||||
|
#include <stdint.h>
|
||||||
|
|
||||||
static const float amptable[8]={
|
static const float amptable[8]={
|
||||||
0.515625, 0.90234375, 1.57910156, 2.76342773,
|
0.515625, 0.90234375, 1.57910156, 2.76342773,
|
||||||
-0.515625, -0.90234375, -1.57910156, -2.76342773
|
-0.515625, -0.90234375, -1.57910156, -2.76342773
|
||||||
|
@ -21,6 +21,8 @@
|
|||||||
#ifndef AVFORMAT_INTERNAL_H
|
#ifndef AVFORMAT_INTERNAL_H
|
||||||
#define AVFORMAT_INTERNAL_H
|
#define AVFORMAT_INTERNAL_H
|
||||||
|
|
||||||
|
#include <stdint.h>
|
||||||
|
|
||||||
char *ff_data_to_hex(char *buf, const uint8_t *src, int size);
|
char *ff_data_to_hex(char *buf, const uint8_t *src, int size);
|
||||||
|
|
||||||
#endif /* AVFORMAT_INTERNAL_H */
|
#endif /* AVFORMAT_INTERNAL_H */
|
||||||
|
@ -22,6 +22,10 @@
|
|||||||
#ifndef AVFORMAT_RDT_H
|
#ifndef AVFORMAT_RDT_H
|
||||||
#define AVFORMAT_RDT_H
|
#define AVFORMAT_RDT_H
|
||||||
|
|
||||||
|
#include <stdint.h>
|
||||||
|
#include "avformat.h"
|
||||||
|
#include "rtp.h"
|
||||||
|
|
||||||
typedef struct RDTDemuxContext RDTDemuxContext;
|
typedef struct RDTDemuxContext RDTDemuxContext;
|
||||||
|
|
||||||
RDTDemuxContext *ff_rdt_parse_open(AVFormatContext *ic, AVStream *st,
|
RDTDemuxContext *ff_rdt_parse_open(AVFormatContext *ic, AVStream *st,
|
||||||
|
Loading…
Reference in New Issue
Block a user