Revision 80b39e1c
libavformat/caf.c | ||
---|---|---|
25 | 25 |
*/ |
26 | 26 |
|
27 | 27 |
#include "avformat.h" |
28 |
#include "riff.h"
|
|
28 |
#include "internal.h"
|
|
29 | 29 |
#include "caf.h" |
30 | 30 |
|
31 | 31 |
/** |
libavformat/caf.h | ||
---|---|---|
27 | 27 |
#ifndef AVFORMAT_CAF_H |
28 | 28 |
#define AVFORMAT_CAF_H |
29 | 29 |
|
30 |
#include "riff.h"
|
|
30 |
#include "internal.h"
|
|
31 | 31 |
|
32 | 32 |
extern const AVCodecTag ff_codec_caf_tags[]; |
33 | 33 |
|
libavformat/flvenc.c | ||
---|---|---|
20 | 20 |
*/ |
21 | 21 |
#include "avformat.h" |
22 | 22 |
#include "flv.h" |
23 |
#include "riff.h"
|
|
23 |
#include "internal.h"
|
|
24 | 24 |
#include "avc.h" |
25 | 25 |
|
26 | 26 |
#undef NDEBUG |
libavformat/internal.h | ||
---|---|---|
24 | 24 |
#include <stdint.h> |
25 | 25 |
#include "avformat.h" |
26 | 26 |
|
27 |
typedef struct AVCodecTag { |
|
28 |
enum CodecID id; |
|
29 |
unsigned int tag; |
|
30 |
} AVCodecTag; |
|
31 |
|
|
27 | 32 |
void ff_dynarray_add(intptr_t **tab_ptr, int *nb_ptr, intptr_t elem); |
28 | 33 |
|
29 | 34 |
#ifdef __GNUC__ |
libavformat/isom.c | ||
---|---|---|
22 | 22 |
*/ |
23 | 23 |
|
24 | 24 |
#include "avformat.h" |
25 |
#include "riff.h"
|
|
25 |
#include "internal.h"
|
|
26 | 26 |
#include "isom.h" |
27 | 27 |
|
28 | 28 |
/* http://www.mp4ra.org */ |
libavformat/isom.h | ||
---|---|---|
25 | 25 |
#define AVFORMAT_ISOM_H |
26 | 26 |
|
27 | 27 |
#include "avio.h" |
28 |
#include "riff.h"
|
|
28 |
#include "internal.h"
|
|
29 | 29 |
#include "dv.h" |
30 | 30 |
|
31 | 31 |
/* isom.c */ |
libavformat/nut.c | ||
---|---|---|
21 | 21 |
|
22 | 22 |
#include "libavutil/tree.h" |
23 | 23 |
#include "nut.h" |
24 |
#include "internal.h" |
|
24 | 25 |
|
25 | 26 |
const AVCodecTag ff_nut_subtitle_tags[] = { |
26 | 27 |
{ CODEC_ID_TEXT , MKTAG('U', 'T', 'F', '8') }, |
libavformat/nutenc.c | ||
---|---|---|
23 | 23 |
#include "libavutil/tree.h" |
24 | 24 |
#include "libavcodec/mpegaudiodata.h" |
25 | 25 |
#include "nut.h" |
26 |
#include "internal.h" |
|
26 | 27 |
|
27 | 28 |
static int find_expected_header(AVCodecContext *c, int size, int key_frame, uint8_t out[64]){ |
28 | 29 |
int sample_rate= c->sample_rate; |
libavformat/riff.h | ||
---|---|---|
30 | 30 |
|
31 | 31 |
#include "libavcodec/avcodec.h" |
32 | 32 |
#include "avio.h" |
33 |
#include "internal.h" |
|
33 | 34 |
|
34 | 35 |
int64_t ff_start_tag(ByteIOContext *pb, const char *tag); |
35 | 36 |
void ff_end_tag(ByteIOContext *pb, int64_t start); |
36 | 37 |
|
37 |
typedef struct AVCodecTag { |
|
38 |
enum CodecID id; |
|
39 |
unsigned int tag; |
|
40 |
} AVCodecTag; |
|
41 |
|
|
42 | 38 |
void ff_put_bmp_header(ByteIOContext *pb, AVCodecContext *enc, const AVCodecTag *tags, int for_asf); |
43 | 39 |
int ff_put_wav_header(ByteIOContext *pb, AVCodecContext *enc); |
44 | 40 |
enum CodecID ff_wav_codec_get_id(unsigned int tag, int bps); |
libavformat/voc.c | ||
---|---|---|
20 | 20 |
*/ |
21 | 21 |
|
22 | 22 |
#include "voc.h" |
23 |
#include "internal.h" |
|
23 | 24 |
|
24 | 25 |
const unsigned char ff_voc_magic[21] = "Creative Voice File\x1A"; |
25 | 26 |
|
libavformat/vocdec.c | ||
---|---|---|
21 | 21 |
|
22 | 22 |
#include "libavutil/intreadwrite.h" |
23 | 23 |
#include "voc.h" |
24 |
#include "internal.h" |
|
24 | 25 |
|
25 | 26 |
|
26 | 27 |
static int voc_probe(AVProbeData *p) |
libavformat/vocenc.c | ||
---|---|---|
20 | 20 |
*/ |
21 | 21 |
|
22 | 22 |
#include "voc.h" |
23 |
#include "internal.h" |
|
23 | 24 |
|
24 | 25 |
|
25 | 26 |
typedef struct voc_enc_context { |
Also available in: Unified diff