1 | #ifndef ALLFORMATS_H
|
---|
2 | #define ALLFORMATS_H
|
---|
3 |
|
---|
4 | /* mpeg.c */
|
---|
5 | extern AVInputFormat mpegps_demuxer;
|
---|
6 | int mpegps_init(void);
|
---|
7 |
|
---|
8 | /* mpegts.c */
|
---|
9 | extern AVInputFormat mpegts_demuxer;
|
---|
10 | int mpegts_init(void);
|
---|
11 |
|
---|
12 | /* rm.c */
|
---|
13 | int rm_init(void);
|
---|
14 |
|
---|
15 | /* crc.c */
|
---|
16 | int crc_init(void);
|
---|
17 |
|
---|
18 | /* img.c */
|
---|
19 | int img_init(void);
|
---|
20 |
|
---|
21 | /* img2.c */
|
---|
22 | int img2_init(void);
|
---|
23 |
|
---|
24 | /* asf.c */
|
---|
25 | int asf_init(void);
|
---|
26 |
|
---|
27 | /* avienc.c */
|
---|
28 | int avienc_init(void);
|
---|
29 |
|
---|
30 | /* avidec.c */
|
---|
31 | int avidec_init(void);
|
---|
32 |
|
---|
33 | /* swf.c */
|
---|
34 | int swf_init(void);
|
---|
35 |
|
---|
36 | /* mov.c */
|
---|
37 | int mov_init(void);
|
---|
38 |
|
---|
39 | /* movenc.c */
|
---|
40 | int movenc_init(void);
|
---|
41 |
|
---|
42 | /* flvenc.c */
|
---|
43 | int flvenc_init(void);
|
---|
44 |
|
---|
45 | /* flvdec.c */
|
---|
46 | int flvdec_init(void);
|
---|
47 |
|
---|
48 | /* jpeg.c */
|
---|
49 | int jpeg_init(void);
|
---|
50 |
|
---|
51 | /* gif.c */
|
---|
52 | int gif_init(void);
|
---|
53 |
|
---|
54 | /* au.c */
|
---|
55 | int au_init(void);
|
---|
56 |
|
---|
57 | /* amr.c */
|
---|
58 | int amr_init(void);
|
---|
59 |
|
---|
60 | /* wav.c */
|
---|
61 | int ff_wav_init(void);
|
---|
62 |
|
---|
63 | /* mmf.c */
|
---|
64 | int ff_mmf_init(void);
|
---|
65 |
|
---|
66 | /* raw.c */
|
---|
67 | int pcm_read_seek(AVFormatContext *s,
|
---|
68 | int stream_index, int64_t timestamp, int flags);
|
---|
69 | int raw_init(void);
|
---|
70 |
|
---|
71 | /* mp3.c */
|
---|
72 | int mp3_init(void);
|
---|
73 |
|
---|
74 | /* yuv4mpeg.c */
|
---|
75 | int yuv4mpeg_init(void);
|
---|
76 |
|
---|
77 | /* ogg2.c */
|
---|
78 | int ogg_init(void);
|
---|
79 |
|
---|
80 | /* ogg.c */
|
---|
81 | int libogg_init(void);
|
---|
82 |
|
---|
83 | /* dv.c */
|
---|
84 | int ff_dv_init(void);
|
---|
85 |
|
---|
86 | /* ffm.c */
|
---|
87 | int ffm_init(void);
|
---|
88 |
|
---|
89 | /* rtsp.c */
|
---|
90 | extern AVInputFormat redir_demuxer;
|
---|
91 | int redir_open(AVFormatContext **ic_ptr, ByteIOContext *f);
|
---|
92 |
|
---|
93 | /* 4xm.c */
|
---|
94 | int fourxm_init(void);
|
---|
95 |
|
---|
96 | /* psxstr.c */
|
---|
97 | int str_init(void);
|
---|
98 |
|
---|
99 | /* idroq.c */
|
---|
100 | int roq_init(void);
|
---|
101 |
|
---|
102 | /* ipmovie.c */
|
---|
103 | int ipmovie_init(void);
|
---|
104 |
|
---|
105 | /* nut.c */
|
---|
106 | int nut_init(void);
|
---|
107 |
|
---|
108 | /* wc3movie.c */
|
---|
109 | int wc3_init(void);
|
---|
110 |
|
---|
111 | /* westwood.c */
|
---|
112 | int westwood_init(void);
|
---|
113 |
|
---|
114 | /* segafilm.c */
|
---|
115 | int film_init(void);
|
---|
116 |
|
---|
117 | /* idcin.c */
|
---|
118 | int idcin_init(void);
|
---|
119 |
|
---|
120 | /* flic.c */
|
---|
121 | int flic_init(void);
|
---|
122 |
|
---|
123 | /* sierravmd.c */
|
---|
124 | int vmd_init(void);
|
---|
125 |
|
---|
126 | /* matroska.c */
|
---|
127 | int matroska_init(void);
|
---|
128 |
|
---|
129 | /* sol.c */
|
---|
130 | int sol_init(void);
|
---|
131 |
|
---|
132 | /* electronicarts.c */
|
---|
133 | int ea_init(void);
|
---|
134 |
|
---|
135 | /* nsvdec.c */
|
---|
136 | int nsvdec_init(void);
|
---|
137 |
|
---|
138 | /* daud.c */
|
---|
139 | int daud_init(void);
|
---|
140 |
|
---|
141 | /* nuv.c */
|
---|
142 | int nuv_init(void);
|
---|
143 |
|
---|
144 | /* gxf.c */
|
---|
145 | int gxf_init(void);
|
---|
146 |
|
---|
147 | /* aiff.c */
|
---|
148 | int ff_aiff_init(void);
|
---|
149 |
|
---|
150 | /* voc.c */
|
---|
151 | int voc_init(void);
|
---|
152 |
|
---|
153 | /* tta.c */
|
---|
154 | int tta_init(void);
|
---|
155 |
|
---|
156 | /* adts.c */
|
---|
157 | int ff_adts_init(void);
|
---|
158 |
|
---|
159 | /* mm.c */
|
---|
160 | int mm_init(void);
|
---|
161 |
|
---|
162 | /* avs.c */
|
---|
163 | int avs_init(void);
|
---|
164 |
|
---|
165 | /* smacker.c */
|
---|
166 | int smacker_init(void);
|
---|
167 |
|
---|
168 | /* v4l2.c */
|
---|
169 | int v4l2_init(void);
|
---|
170 |
|
---|
171 | #if 0
|
---|
172 | extern AVImageFormat pnm_image_format;
|
---|
173 | extern AVImageFormat pbm_image_format;
|
---|
174 | extern AVImageFormat pgm_image_format;
|
---|
175 | extern AVImageFormat ppm_image_format;
|
---|
176 | extern AVImageFormat pam_image_format;
|
---|
177 | extern AVImageFormat pgmyuv_image_format;
|
---|
178 | extern AVImageFormat yuv_image_format;
|
---|
179 | #ifdef CONFIG_ZLIB
|
---|
180 | extern AVImageFormat png_image_format;
|
---|
181 | #endif
|
---|
182 | extern AVImageFormat jpeg_image_format;
|
---|
183 | #endif
|
---|
184 | extern AVImageFormat gif_image_format;
|
---|
185 | //extern AVImageFormat sgi_image_format; //broken in itself
|
---|
186 |
|
---|
187 | #endif
|
---|