Mercurial > libavformat.hg
annotate avformat.h @ 211:349d63d52e7e libavformat
initial commit for Id RoQ and Interplay MVE multimedia subsystems
| author | tmmm |
|---|---|
| date | Tue, 02 Sep 2003 04:32:02 +0000 |
| parents | 7414bbf64011 |
| children | 7fc8e8ee081a |
| rev | line source |
|---|---|
| 0 | 1 #ifndef AVFORMAT_H |
| 2 #define AVFORMAT_H | |
| 3 | |
| 39 | 4 #ifdef __cplusplus |
| 5 extern "C" { | |
| 6 #endif | |
| 7 | |
| 0 | 8 #define LIBAVFORMAT_VERSION_INT 0x000406 |
| 9 #define LIBAVFORMAT_VERSION "0.4.6" | |
|
186
2265d21a04c8
added stream start time and duration API - AV_NOPTS_VALUE is no longer zero
bellard
parents:
184
diff
changeset
|
10 #define LIBAVFORMAT_BUILD 4606 |
| 0 | 11 |
| 12 #include "avcodec.h" | |
| 13 | |
| 14 #include "avio.h" | |
| 15 | |
| 16 /* packet functions */ | |
| 17 | |
|
186
2265d21a04c8
added stream start time and duration API - AV_NOPTS_VALUE is no longer zero
bellard
parents:
184
diff
changeset
|
18 #ifndef MAXINT64 |
|
2265d21a04c8
added stream start time and duration API - AV_NOPTS_VALUE is no longer zero
bellard
parents:
184
diff
changeset
|
19 #define MAXINT64 int64_t_C(0x7fffffffffffffff) |
|
2265d21a04c8
added stream start time and duration API - AV_NOPTS_VALUE is no longer zero
bellard
parents:
184
diff
changeset
|
20 #endif |
|
2265d21a04c8
added stream start time and duration API - AV_NOPTS_VALUE is no longer zero
bellard
parents:
184
diff
changeset
|
21 |
|
2265d21a04c8
added stream start time and duration API - AV_NOPTS_VALUE is no longer zero
bellard
parents:
184
diff
changeset
|
22 #ifndef MININT64 |
|
2265d21a04c8
added stream start time and duration API - AV_NOPTS_VALUE is no longer zero
bellard
parents:
184
diff
changeset
|
23 #define MININT64 int64_t_C(0x8000000000000000) |
|
2265d21a04c8
added stream start time and duration API - AV_NOPTS_VALUE is no longer zero
bellard
parents:
184
diff
changeset
|
24 #endif |
|
2265d21a04c8
added stream start time and duration API - AV_NOPTS_VALUE is no longer zero
bellard
parents:
184
diff
changeset
|
25 |
|
2265d21a04c8
added stream start time and duration API - AV_NOPTS_VALUE is no longer zero
bellard
parents:
184
diff
changeset
|
26 #define AV_NOPTS_VALUE MININT64 |
|
2265d21a04c8
added stream start time and duration API - AV_NOPTS_VALUE is no longer zero
bellard
parents:
184
diff
changeset
|
27 #define AV_TIME_BASE 1000000 |
| 0 | 28 |
| 29 typedef struct AVPacket { | |
| 65 | 30 int64_t pts; /* presentation time stamp in stream units (set av_set_pts_info) */ |
| 31 uint8_t *data; | |
|
53
fb671d87824e
zero copy packet handling for DV1394 by Max Krasnyansky
bellard
parents:
52
diff
changeset
|
32 int size; |
|
fb671d87824e
zero copy packet handling for DV1394 by Max Krasnyansky
bellard
parents:
52
diff
changeset
|
33 int stream_index; |
|
fb671d87824e
zero copy packet handling for DV1394 by Max Krasnyansky
bellard
parents:
52
diff
changeset
|
34 int flags; |
|
fb671d87824e
zero copy packet handling for DV1394 by Max Krasnyansky
bellard
parents:
52
diff
changeset
|
35 int duration; |
|
fb671d87824e
zero copy packet handling for DV1394 by Max Krasnyansky
bellard
parents:
52
diff
changeset
|
36 void (*destruct)(struct AVPacket *); |
|
fb671d87824e
zero copy packet handling for DV1394 by Max Krasnyansky
bellard
parents:
52
diff
changeset
|
37 void *priv; |
|
fb671d87824e
zero copy packet handling for DV1394 by Max Krasnyansky
bellard
parents:
52
diff
changeset
|
38 } AVPacket; |
| 0 | 39 #define PKT_FLAG_KEY 0x0001 |
|
53
fb671d87824e
zero copy packet handling for DV1394 by Max Krasnyansky
bellard
parents:
52
diff
changeset
|
40 |
|
fb671d87824e
zero copy packet handling for DV1394 by Max Krasnyansky
bellard
parents:
52
diff
changeset
|
41 static inline void av_init_packet(AVPacket *pkt) |
|
fb671d87824e
zero copy packet handling for DV1394 by Max Krasnyansky
bellard
parents:
52
diff
changeset
|
42 { |
|
fb671d87824e
zero copy packet handling for DV1394 by Max Krasnyansky
bellard
parents:
52
diff
changeset
|
43 pkt->pts = AV_NOPTS_VALUE; |
|
fb671d87824e
zero copy packet handling for DV1394 by Max Krasnyansky
bellard
parents:
52
diff
changeset
|
44 pkt->flags = 0; |
|
fb671d87824e
zero copy packet handling for DV1394 by Max Krasnyansky
bellard
parents:
52
diff
changeset
|
45 pkt->stream_index = 0; |
|
fb671d87824e
zero copy packet handling for DV1394 by Max Krasnyansky
bellard
parents:
52
diff
changeset
|
46 } |
| 0 | 47 |
| 48 int av_new_packet(AVPacket *pkt, int size); | |
|
53
fb671d87824e
zero copy packet handling for DV1394 by Max Krasnyansky
bellard
parents:
52
diff
changeset
|
49 |
|
fb671d87824e
zero copy packet handling for DV1394 by Max Krasnyansky
bellard
parents:
52
diff
changeset
|
50 /** |
|
fb671d87824e
zero copy packet handling for DV1394 by Max Krasnyansky
bellard
parents:
52
diff
changeset
|
51 * Free a packet |
|
fb671d87824e
zero copy packet handling for DV1394 by Max Krasnyansky
bellard
parents:
52
diff
changeset
|
52 * |
|
fb671d87824e
zero copy packet handling for DV1394 by Max Krasnyansky
bellard
parents:
52
diff
changeset
|
53 * @param pkt packet to free |
|
fb671d87824e
zero copy packet handling for DV1394 by Max Krasnyansky
bellard
parents:
52
diff
changeset
|
54 */ |
|
fb671d87824e
zero copy packet handling for DV1394 by Max Krasnyansky
bellard
parents:
52
diff
changeset
|
55 static inline void av_free_packet(AVPacket *pkt) |
|
fb671d87824e
zero copy packet handling for DV1394 by Max Krasnyansky
bellard
parents:
52
diff
changeset
|
56 { |
|
163
470456bd0065
av_free_packet SEGV fix by (Arthur van Hoff (javanator))
michaelni
parents:
159
diff
changeset
|
57 if (pkt && pkt->destruct) { |
|
470456bd0065
av_free_packet SEGV fix by (Arthur van Hoff (javanator))
michaelni
parents:
159
diff
changeset
|
58 pkt->destruct(pkt); |
|
470456bd0065
av_free_packet SEGV fix by (Arthur van Hoff (javanator))
michaelni
parents:
159
diff
changeset
|
59 } |
|
53
fb671d87824e
zero copy packet handling for DV1394 by Max Krasnyansky
bellard
parents:
52
diff
changeset
|
60 } |
| 0 | 61 |
| 62 /*************************************************/ | |
| 63 /* fractional numbers for exact pts handling */ | |
| 64 | |
| 65 /* the exact value of the fractional number is: 'val + num / den'. num | |
| 66 is assumed to be such as 0 <= num < den */ | |
| 67 typedef struct AVFrac { | |
| 65 | 68 int64_t val, num, den; |
| 0 | 69 } AVFrac; |
| 70 | |
| 65 | 71 void av_frac_init(AVFrac *f, int64_t val, int64_t num, int64_t den); |
| 72 void av_frac_add(AVFrac *f, int64_t incr); | |
| 73 void av_frac_set(AVFrac *f, int64_t val); | |
| 0 | 74 |
| 75 /*************************************************/ | |
| 76 /* input/output formats */ | |
| 77 | |
| 78 struct AVFormatContext; | |
| 79 | |
| 80 /* this structure contains the data a format has to probe a file */ | |
| 81 typedef struct AVProbeData { | |
| 64 | 82 const char *filename; |
| 0 | 83 unsigned char *buf; |
| 84 int buf_size; | |
| 85 } AVProbeData; | |
| 86 | |
| 87 #define AVPROBE_SCORE_MAX 100 | |
| 88 | |
| 89 typedef struct AVFormatParameters { | |
| 90 int frame_rate; | |
|
85
25062c9b1f86
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
75
diff
changeset
|
91 int frame_rate_base; |
| 0 | 92 int sample_rate; |
| 93 int channels; | |
| 94 int width; | |
| 95 int height; | |
| 96 enum PixelFormat pix_fmt; | |
|
17
e1200dd82537
added simple still image format support to simplify image and imagepipe video formats
bellard
parents:
5
diff
changeset
|
97 struct AVImageFormat *image_format; |
|
30
90fd30dd68b3
grab device is in AVFormatParameter (at least better than global variable)
bellard
parents:
29
diff
changeset
|
98 int channel; /* used to select dv channel */ |
|
90fd30dd68b3
grab device is in AVFormatParameter (at least better than global variable)
bellard
parents:
29
diff
changeset
|
99 const char *device; /* video4linux, audio or DV device */ |
|
159
7d698c3213a0
tv standard selection support for dv1394 and grab (v4l)
al3x
parents:
151
diff
changeset
|
100 const char *standard; /* tv standard, NTSC, PAL, SECAM */ |
| 0 | 101 } AVFormatParameters; |
| 102 | |
| 103 #define AVFMT_NOFILE 0x0001 /* no file should be opened */ | |
| 104 #define AVFMT_NEEDNUMBER 0x0002 /* needs '%d' in filename */ | |
| 105 #define AVFMT_NOHEADER 0x0004 /* signal that no header is present | |
| 106 (streams are added dynamically) */ | |
| 107 #define AVFMT_SHOW_IDS 0x0008 /* show format stream IDs numbers */ | |
| 108 #define AVFMT_RAWPICTURE 0x0020 /* format wants AVPicture structure for | |
| 109 raw picture data */ | |
| 110 | |
| 111 typedef struct AVOutputFormat { | |
| 112 const char *name; | |
| 113 const char *long_name; | |
| 114 const char *mime_type; | |
| 115 const char *extensions; /* comma separated extensions */ | |
| 116 /* size of private data so that it can be allocated in the wrapper */ | |
| 117 int priv_data_size; | |
| 118 /* output support */ | |
| 119 enum CodecID audio_codec; /* default audio codec */ | |
| 120 enum CodecID video_codec; /* default video codec */ | |
| 121 int (*write_header)(struct AVFormatContext *); | |
| 122 /* XXX: change prototype for 64 bit pts */ | |
| 123 int (*write_packet)(struct AVFormatContext *, | |
| 124 int stream_index, | |
| 125 unsigned char *buf, int size, int force_pts); | |
| 126 int (*write_trailer)(struct AVFormatContext *); | |
| 127 /* can use flags: AVFMT_NOFILE, AVFMT_NEEDNUMBER */ | |
| 128 int flags; | |
|
17
e1200dd82537
added simple still image format support to simplify image and imagepipe video formats
bellard
parents:
5
diff
changeset
|
129 /* currently only used to set pixel format if not YUV420P */ |
|
e1200dd82537
added simple still image format support to simplify image and imagepipe video formats
bellard
parents:
5
diff
changeset
|
130 int (*set_parameters)(struct AVFormatContext *, AVFormatParameters *); |
| 0 | 131 /* private fields */ |
| 132 struct AVOutputFormat *next; | |
| 133 } AVOutputFormat; | |
| 134 | |
| 135 typedef struct AVInputFormat { | |
| 136 const char *name; | |
| 137 const char *long_name; | |
| 138 /* size of private data so that it can be allocated in the wrapper */ | |
| 139 int priv_data_size; | |
| 140 /* tell if a given file has a chance of being parsing by this format */ | |
| 141 int (*read_probe)(AVProbeData *); | |
| 142 /* read the format header and initialize the AVFormatContext | |
| 143 structure. Return 0 if OK. 'ap' if non NULL contains | |
| 144 additionnal paramters. Only used in raw format right | |
| 145 now. 'av_new_stream' should be called to create new streams. */ | |
| 146 int (*read_header)(struct AVFormatContext *, | |
| 147 AVFormatParameters *ap); | |
| 148 /* read one packet and put it in 'pkt'. pts and flags are also | |
| 149 set. 'av_new_stream' can be called only if the flag | |
| 150 AVFMT_NOHEADER is used. */ | |
| 151 int (*read_packet)(struct AVFormatContext *, AVPacket *pkt); | |
| 152 /* close the stream. The AVFormatContext and AVStreams are not | |
| 153 freed by this function */ | |
| 154 int (*read_close)(struct AVFormatContext *); | |
| 155 /* seek at or before a given pts (given in microsecond). The pts | |
| 156 origin is defined by the stream */ | |
| 65 | 157 int (*read_seek)(struct AVFormatContext *, int64_t pts); |
| 0 | 158 /* can use flags: AVFMT_NOFILE, AVFMT_NEEDNUMBER, AVFMT_NOHEADER */ |
| 159 int flags; | |
| 160 /* if extensions are defined, then no probe is done. You should | |
| 161 usually not use extension format guessing because it is not | |
| 162 reliable enough */ | |
| 163 const char *extensions; | |
| 164 /* general purpose read only value that the format can use */ | |
| 165 int value; | |
| 166 /* private fields */ | |
| 167 struct AVInputFormat *next; | |
| 168 } AVInputFormat; | |
| 169 | |
| 170 typedef struct AVStream { | |
| 171 int index; /* stream index in AVFormatContext */ | |
| 172 int id; /* format specific stream id */ | |
| 173 AVCodecContext codec; /* codec context */ | |
| 174 int r_frame_rate; /* real frame rate of the stream */ | |
|
85
25062c9b1f86
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
75
diff
changeset
|
175 int r_frame_rate_base;/* real frame rate base of the stream */ |
| 0 | 176 void *priv_data; |
| 177 /* internal data used in av_find_stream_info() */ | |
| 178 int codec_info_state; | |
| 179 int codec_info_nb_repeat_frames; | |
| 180 int codec_info_nb_real_frames; | |
| 181 /* PTS generation when outputing stream */ | |
| 182 AVFrac pts; | |
| 183 /* ffmpeg.c private use */ | |
| 184 int stream_copy; /* if TRUE, just copy stream */ | |
| 5 | 185 /* quality, as it has been removed from AVCodecContext and put in AVVideoFrame |
| 186 * MN:dunno if thats the right place, for it */ | |
| 187 float quality; | |
|
186
2265d21a04c8
added stream start time and duration API - AV_NOPTS_VALUE is no longer zero
bellard
parents:
184
diff
changeset
|
188 /* decoding: position of the first frame of the component, in |
|
2265d21a04c8
added stream start time and duration API - AV_NOPTS_VALUE is no longer zero
bellard
parents:
184
diff
changeset
|
189 AV_TIME_BASE fractional seconds. */ |
|
2265d21a04c8
added stream start time and duration API - AV_NOPTS_VALUE is no longer zero
bellard
parents:
184
diff
changeset
|
190 int64_t start_time; |
|
2265d21a04c8
added stream start time and duration API - AV_NOPTS_VALUE is no longer zero
bellard
parents:
184
diff
changeset
|
191 /* decoding: duration of the stream, in AV_TIME_BASE fractional |
|
2265d21a04c8
added stream start time and duration API - AV_NOPTS_VALUE is no longer zero
bellard
parents:
184
diff
changeset
|
192 seconds. */ |
|
2265d21a04c8
added stream start time and duration API - AV_NOPTS_VALUE is no longer zero
bellard
parents:
184
diff
changeset
|
193 int64_t duration; |
| 0 | 194 } AVStream; |
| 195 | |
| 196 #define MAX_STREAMS 20 | |
| 197 | |
| 198 /* format I/O context */ | |
| 199 typedef struct AVFormatContext { | |
| 200 /* can only be iformat or oformat, not both at the same time */ | |
| 201 struct AVInputFormat *iformat; | |
| 202 struct AVOutputFormat *oformat; | |
| 203 void *priv_data; | |
| 204 ByteIOContext pb; | |
| 205 int nb_streams; | |
| 206 AVStream *streams[MAX_STREAMS]; | |
| 207 char filename[1024]; /* input or output filename */ | |
| 208 /* stream info */ | |
| 209 char title[512]; | |
| 210 char author[512]; | |
| 211 char copyright[512]; | |
| 212 char comment[512]; | |
| 213 int flags; /* format specific flags */ | |
| 214 /* private data for pts handling (do not modify directly) */ | |
| 215 int pts_wrap_bits; /* number of bits in pts (used for wrapping control) */ | |
| 216 int pts_num, pts_den; /* value to convert to seconds */ | |
| 217 /* This buffer is only needed when packets were already buffered but | |
| 218 not decoded, for example to get the codec parameters in mpeg | |
| 219 streams */ | |
|
186
2265d21a04c8
added stream start time and duration API - AV_NOPTS_VALUE is no longer zero
bellard
parents:
184
diff
changeset
|
220 struct AVPacketList *packet_buffer; |
|
2265d21a04c8
added stream start time and duration API - AV_NOPTS_VALUE is no longer zero
bellard
parents:
184
diff
changeset
|
221 |
|
2265d21a04c8
added stream start time and duration API - AV_NOPTS_VALUE is no longer zero
bellard
parents:
184
diff
changeset
|
222 /* decoding: position of the first frame of the component, in |
|
2265d21a04c8
added stream start time and duration API - AV_NOPTS_VALUE is no longer zero
bellard
parents:
184
diff
changeset
|
223 AV_TIME_BASE fractional seconds. NEVER set this value directly: |
|
2265d21a04c8
added stream start time and duration API - AV_NOPTS_VALUE is no longer zero
bellard
parents:
184
diff
changeset
|
224 it is deduced from the AVStream values. */ |
|
2265d21a04c8
added stream start time and duration API - AV_NOPTS_VALUE is no longer zero
bellard
parents:
184
diff
changeset
|
225 int64_t start_time; |
|
2265d21a04c8
added stream start time and duration API - AV_NOPTS_VALUE is no longer zero
bellard
parents:
184
diff
changeset
|
226 /* decoding: duration of the stream, in AV_TIME_BASE fractional |
|
2265d21a04c8
added stream start time and duration API - AV_NOPTS_VALUE is no longer zero
bellard
parents:
184
diff
changeset
|
227 seconds. NEVER set this value directly: it is deduced from the |
|
2265d21a04c8
added stream start time and duration API - AV_NOPTS_VALUE is no longer zero
bellard
parents:
184
diff
changeset
|
228 AVStream values. */ |
|
2265d21a04c8
added stream start time and duration API - AV_NOPTS_VALUE is no longer zero
bellard
parents:
184
diff
changeset
|
229 int64_t duration; |
|
2265d21a04c8
added stream start time and duration API - AV_NOPTS_VALUE is no longer zero
bellard
parents:
184
diff
changeset
|
230 /* decoding: total file size. 0 if unknown */ |
|
2265d21a04c8
added stream start time and duration API - AV_NOPTS_VALUE is no longer zero
bellard
parents:
184
diff
changeset
|
231 int64_t file_size; |
|
2265d21a04c8
added stream start time and duration API - AV_NOPTS_VALUE is no longer zero
bellard
parents:
184
diff
changeset
|
232 /* decoding: total stream bitrate in bit/s, 0 if not |
|
2265d21a04c8
added stream start time and duration API - AV_NOPTS_VALUE is no longer zero
bellard
parents:
184
diff
changeset
|
233 available. Never set it directly if the file_size and the |
|
2265d21a04c8
added stream start time and duration API - AV_NOPTS_VALUE is no longer zero
bellard
parents:
184
diff
changeset
|
234 duration are known as ffmpeg can compute it automatically. */ |
|
2265d21a04c8
added stream start time and duration API - AV_NOPTS_VALUE is no longer zero
bellard
parents:
184
diff
changeset
|
235 int bit_rate; |
| 0 | 236 } AVFormatContext; |
| 237 | |
| 238 typedef struct AVPacketList { | |
| 239 AVPacket pkt; | |
| 240 struct AVPacketList *next; | |
| 241 } AVPacketList; | |
| 242 | |
| 243 extern AVInputFormat *first_iformat; | |
| 244 extern AVOutputFormat *first_oformat; | |
| 245 | |
|
17
e1200dd82537
added simple still image format support to simplify image and imagepipe video formats
bellard
parents:
5
diff
changeset
|
246 /* still image support */ |
|
e1200dd82537
added simple still image format support to simplify image and imagepipe video formats
bellard
parents:
5
diff
changeset
|
247 struct AVInputImageContext; |
|
e1200dd82537
added simple still image format support to simplify image and imagepipe video formats
bellard
parents:
5
diff
changeset
|
248 typedef struct AVInputImageContext AVInputImageContext; |
|
e1200dd82537
added simple still image format support to simplify image and imagepipe video formats
bellard
parents:
5
diff
changeset
|
249 |
|
e1200dd82537
added simple still image format support to simplify image and imagepipe video formats
bellard
parents:
5
diff
changeset
|
250 typedef struct AVImageInfo { |
|
e1200dd82537
added simple still image format support to simplify image and imagepipe video formats
bellard
parents:
5
diff
changeset
|
251 enum PixelFormat pix_fmt; /* requested pixel format */ |
|
e1200dd82537
added simple still image format support to simplify image and imagepipe video formats
bellard
parents:
5
diff
changeset
|
252 int width; /* requested width */ |
|
e1200dd82537
added simple still image format support to simplify image and imagepipe video formats
bellard
parents:
5
diff
changeset
|
253 int height; /* requested height */ |
| 115 | 254 int interleaved; /* image is interleaved (e.g. interleaved GIF) */ |
|
17
e1200dd82537
added simple still image format support to simplify image and imagepipe video formats
bellard
parents:
5
diff
changeset
|
255 AVPicture pict; /* returned allocated image */ |
|
e1200dd82537
added simple still image format support to simplify image and imagepipe video formats
bellard
parents:
5
diff
changeset
|
256 } AVImageInfo; |
|
e1200dd82537
added simple still image format support to simplify image and imagepipe video formats
bellard
parents:
5
diff
changeset
|
257 |
| 112 | 258 /* AVImageFormat.flags field constants */ |
| 115 | 259 #define AVIMAGE_INTERLEAVED 0x0001 /* image format support interleaved output */ |
| 112 | 260 |
|
17
e1200dd82537
added simple still image format support to simplify image and imagepipe video formats
bellard
parents:
5
diff
changeset
|
261 typedef struct AVImageFormat { |
|
e1200dd82537
added simple still image format support to simplify image and imagepipe video formats
bellard
parents:
5
diff
changeset
|
262 const char *name; |
|
e1200dd82537
added simple still image format support to simplify image and imagepipe video formats
bellard
parents:
5
diff
changeset
|
263 const char *extensions; |
|
e1200dd82537
added simple still image format support to simplify image and imagepipe video formats
bellard
parents:
5
diff
changeset
|
264 /* tell if a given file has a chance of being parsing by this format */ |
|
e1200dd82537
added simple still image format support to simplify image and imagepipe video formats
bellard
parents:
5
diff
changeset
|
265 int (*img_probe)(AVProbeData *); |
|
e1200dd82537
added simple still image format support to simplify image and imagepipe video formats
bellard
parents:
5
diff
changeset
|
266 /* read a whole image. 'alloc_cb' is called when the image size is |
|
e1200dd82537
added simple still image format support to simplify image and imagepipe video formats
bellard
parents:
5
diff
changeset
|
267 known so that the caller can allocate the image. If 'allo_cb' |
|
e1200dd82537
added simple still image format support to simplify image and imagepipe video formats
bellard
parents:
5
diff
changeset
|
268 returns non zero, then the parsing is aborted. Return '0' if |
|
e1200dd82537
added simple still image format support to simplify image and imagepipe video formats
bellard
parents:
5
diff
changeset
|
269 OK. */ |
|
e1200dd82537
added simple still image format support to simplify image and imagepipe video formats
bellard
parents:
5
diff
changeset
|
270 int (*img_read)(ByteIOContext *, |
|
e1200dd82537
added simple still image format support to simplify image and imagepipe video formats
bellard
parents:
5
diff
changeset
|
271 int (*alloc_cb)(void *, AVImageInfo *info), void *); |
|
e1200dd82537
added simple still image format support to simplify image and imagepipe video formats
bellard
parents:
5
diff
changeset
|
272 /* write the image */ |
|
e1200dd82537
added simple still image format support to simplify image and imagepipe video formats
bellard
parents:
5
diff
changeset
|
273 int supported_pixel_formats; /* mask of supported formats for output */ |
|
e1200dd82537
added simple still image format support to simplify image and imagepipe video formats
bellard
parents:
5
diff
changeset
|
274 int (*img_write)(ByteIOContext *, AVImageInfo *); |
| 112 | 275 int flags; |
|
17
e1200dd82537
added simple still image format support to simplify image and imagepipe video formats
bellard
parents:
5
diff
changeset
|
276 struct AVImageFormat *next; |
|
e1200dd82537
added simple still image format support to simplify image and imagepipe video formats
bellard
parents:
5
diff
changeset
|
277 } AVImageFormat; |
|
e1200dd82537
added simple still image format support to simplify image and imagepipe video formats
bellard
parents:
5
diff
changeset
|
278 |
|
e1200dd82537
added simple still image format support to simplify image and imagepipe video formats
bellard
parents:
5
diff
changeset
|
279 void av_register_image_format(AVImageFormat *img_fmt); |
|
e1200dd82537
added simple still image format support to simplify image and imagepipe video formats
bellard
parents:
5
diff
changeset
|
280 AVImageFormat *av_probe_image_format(AVProbeData *pd); |
|
e1200dd82537
added simple still image format support to simplify image and imagepipe video formats
bellard
parents:
5
diff
changeset
|
281 AVImageFormat *guess_image_format(const char *filename); |
|
e1200dd82537
added simple still image format support to simplify image and imagepipe video formats
bellard
parents:
5
diff
changeset
|
282 int av_read_image(ByteIOContext *pb, const char *filename, |
|
e1200dd82537
added simple still image format support to simplify image and imagepipe video formats
bellard
parents:
5
diff
changeset
|
283 AVImageFormat *fmt, |
|
e1200dd82537
added simple still image format support to simplify image and imagepipe video formats
bellard
parents:
5
diff
changeset
|
284 int (*alloc_cb)(void *, AVImageInfo *info), void *opaque); |
|
e1200dd82537
added simple still image format support to simplify image and imagepipe video formats
bellard
parents:
5
diff
changeset
|
285 int av_write_image(ByteIOContext *pb, AVImageFormat *fmt, AVImageInfo *img); |
|
e1200dd82537
added simple still image format support to simplify image and imagepipe video formats
bellard
parents:
5
diff
changeset
|
286 |
|
e1200dd82537
added simple still image format support to simplify image and imagepipe video formats
bellard
parents:
5
diff
changeset
|
287 extern AVImageFormat *first_image_format; |
|
e1200dd82537
added simple still image format support to simplify image and imagepipe video formats
bellard
parents:
5
diff
changeset
|
288 |
|
e1200dd82537
added simple still image format support to simplify image and imagepipe video formats
bellard
parents:
5
diff
changeset
|
289 extern AVImageFormat pnm_image_format; |
|
e1200dd82537
added simple still image format support to simplify image and imagepipe video formats
bellard
parents:
5
diff
changeset
|
290 extern AVImageFormat pbm_image_format; |
|
e1200dd82537
added simple still image format support to simplify image and imagepipe video formats
bellard
parents:
5
diff
changeset
|
291 extern AVImageFormat pgm_image_format; |
|
e1200dd82537
added simple still image format support to simplify image and imagepipe video formats
bellard
parents:
5
diff
changeset
|
292 extern AVImageFormat ppm_image_format; |
|
109
c82a6062485e
added new netpbm pam format support (needed for alpha plane support)
bellard
parents:
89
diff
changeset
|
293 extern AVImageFormat pam_image_format; |
|
17
e1200dd82537
added simple still image format support to simplify image and imagepipe video formats
bellard
parents:
5
diff
changeset
|
294 extern AVImageFormat pgmyuv_image_format; |
|
e1200dd82537
added simple still image format support to simplify image and imagepipe video formats
bellard
parents:
5
diff
changeset
|
295 extern AVImageFormat yuv_image_format; |
| 71 | 296 #ifdef CONFIG_ZLIB |
| 44 | 297 extern AVImageFormat png_image_format; |
| 71 | 298 #endif |
|
47
45308962220f
added jpeg image encoder and decoder (new YUV handling routines and mjpeg codec fixes are necessary to go further)
bellard
parents:
44
diff
changeset
|
299 extern AVImageFormat jpeg_image_format; |
| 52 | 300 extern AVImageFormat gif_image_format; |
|
17
e1200dd82537
added simple still image format support to simplify image and imagepipe video formats
bellard
parents:
5
diff
changeset
|
301 |
| 0 | 302 /* XXX: use automatic init with either ELF sections or C file parser */ |
| 303 /* modules */ | |
| 304 | |
| 305 /* mpeg.c */ | |
|
186
2265d21a04c8
added stream start time and duration API - AV_NOPTS_VALUE is no longer zero
bellard
parents:
184
diff
changeset
|
306 extern AVInputFormat mpegps_demux; |
| 0 | 307 int mpegps_init(void); |
| 308 | |
| 309 /* mpegts.c */ | |
| 310 extern AVInputFormat mpegts_demux; | |
| 311 int mpegts_init(void); | |
| 312 | |
| 313 /* rm.c */ | |
| 314 int rm_init(void); | |
| 315 | |
| 316 /* crc.c */ | |
| 317 int crc_init(void); | |
| 318 | |
| 319 /* img.c */ | |
| 320 int img_init(void); | |
| 321 | |
| 322 /* asf.c */ | |
| 323 int asf_init(void); | |
| 324 | |
| 325 /* avienc.c */ | |
| 326 int avienc_init(void); | |
| 327 | |
| 328 /* avidec.c */ | |
| 329 int avidec_init(void); | |
| 330 | |
| 331 /* swf.c */ | |
| 332 int swf_init(void); | |
| 333 | |
| 334 /* mov.c */ | |
| 335 int mov_init(void); | |
| 336 | |
|
201
85def00971c3
mov, 3gp, mp4 muxer by (Thomas Raivio <tjraivio at cc dot hut dot fi>)
michaelni
parents:
186
diff
changeset
|
337 /* movenc.c */ |
|
85def00971c3
mov, 3gp, mp4 muxer by (Thomas Raivio <tjraivio at cc dot hut dot fi>)
michaelni
parents:
186
diff
changeset
|
338 int movenc_init(void); |
|
85def00971c3
mov, 3gp, mp4 muxer by (Thomas Raivio <tjraivio at cc dot hut dot fi>)
michaelni
parents:
186
diff
changeset
|
339 |
|
164
99fbacf0f764
flash video (flv) support patch by (Garrick Meeker <gmeeker at theoryllc dot com>)
michaelni
parents:
163
diff
changeset
|
340 /* flvenc.c */ |
|
99fbacf0f764
flash video (flv) support patch by (Garrick Meeker <gmeeker at theoryllc dot com>)
michaelni
parents:
163
diff
changeset
|
341 int flvenc_init(void); |
|
99fbacf0f764
flash video (flv) support patch by (Garrick Meeker <gmeeker at theoryllc dot com>)
michaelni
parents:
163
diff
changeset
|
342 |
|
99fbacf0f764
flash video (flv) support patch by (Garrick Meeker <gmeeker at theoryllc dot com>)
michaelni
parents:
163
diff
changeset
|
343 /* flvdec.c */ |
|
99fbacf0f764
flash video (flv) support patch by (Garrick Meeker <gmeeker at theoryllc dot com>)
michaelni
parents:
163
diff
changeset
|
344 int flvdec_init(void); |
|
99fbacf0f764
flash video (flv) support patch by (Garrick Meeker <gmeeker at theoryllc dot com>)
michaelni
parents:
163
diff
changeset
|
345 |
| 0 | 346 /* jpeg.c */ |
| 347 int jpeg_init(void); | |
| 348 | |
| 349 /* gif.c */ | |
| 350 int gif_init(void); | |
| 351 | |
| 352 /* au.c */ | |
| 353 int au_init(void); | |
| 354 | |
| 146 | 355 /* amr.c */ |
| 356 int amr_init(void); | |
| 357 | |
| 0 | 358 /* wav.c */ |
| 359 int wav_init(void); | |
| 360 | |
| 361 /* raw.c */ | |
| 362 int raw_init(void); | |
| 363 | |
|
184
2438e76dde67
yuv4mpeg pipe reader for libavformat patch by (D Richard Felker III <dalias at aerifal dot cx>)
michaelni
parents:
168
diff
changeset
|
364 /* yuv4mpeg.c */ |
|
2438e76dde67
yuv4mpeg pipe reader for libavformat patch by (D Richard Felker III <dalias at aerifal dot cx>)
michaelni
parents:
168
diff
changeset
|
365 int yuv4mpeg_init(void); |
|
2438e76dde67
yuv4mpeg pipe reader for libavformat patch by (D Richard Felker III <dalias at aerifal dot cx>)
michaelni
parents:
168
diff
changeset
|
366 |
| 0 | 367 /* ogg.c */ |
| 368 int ogg_init(void); | |
| 369 | |
| 370 /* dv.c */ | |
| 371 int dv_init(void); | |
| 372 | |
| 373 /* ffm.c */ | |
| 374 int ffm_init(void); | |
| 375 | |
| 376 /* rtsp.c */ | |
| 377 extern AVInputFormat redir_demux; | |
| 378 int redir_open(AVFormatContext **ic_ptr, ByteIOContext *f); | |
| 379 | |
| 138 | 380 /* 4xm.c */ |
| 381 int fourxm_init(void); | |
| 382 | |
|
209
7414bbf64011
first pass at PSX STR demuxer; does not yet interact correctly with MDEC
tmmm
parents:
201
diff
changeset
|
383 /* psxstr.c */ |
|
7414bbf64011
first pass at PSX STR demuxer; does not yet interact correctly with MDEC
tmmm
parents:
201
diff
changeset
|
384 int str_init(void); |
|
7414bbf64011
first pass at PSX STR demuxer; does not yet interact correctly with MDEC
tmmm
parents:
201
diff
changeset
|
385 |
|
211
349d63d52e7e
initial commit for Id RoQ and Interplay MVE multimedia subsystems
tmmm
parents:
209
diff
changeset
|
386 /* idroq.c */ |
|
349d63d52e7e
initial commit for Id RoQ and Interplay MVE multimedia subsystems
tmmm
parents:
209
diff
changeset
|
387 int roq_init(void); |
|
349d63d52e7e
initial commit for Id RoQ and Interplay MVE multimedia subsystems
tmmm
parents:
209
diff
changeset
|
388 |
|
349d63d52e7e
initial commit for Id RoQ and Interplay MVE multimedia subsystems
tmmm
parents:
209
diff
changeset
|
389 /* ipmovie.c */ |
|
349d63d52e7e
initial commit for Id RoQ and Interplay MVE multimedia subsystems
tmmm
parents:
209
diff
changeset
|
390 int ipmovie_init(void); |
|
349d63d52e7e
initial commit for Id RoQ and Interplay MVE multimedia subsystems
tmmm
parents:
209
diff
changeset
|
391 |
| 0 | 392 #include "rtp.h" |
| 393 | |
| 394 #include "rtsp.h" | |
| 395 | |
|
17
e1200dd82537
added simple still image format support to simplify image and imagepipe video formats
bellard
parents:
5
diff
changeset
|
396 /* yuv4mpeg.c */ |
|
e1200dd82537
added simple still image format support to simplify image and imagepipe video formats
bellard
parents:
5
diff
changeset
|
397 extern AVOutputFormat yuv4mpegpipe_oformat; |
|
e1200dd82537
added simple still image format support to simplify image and imagepipe video formats
bellard
parents:
5
diff
changeset
|
398 |
| 0 | 399 /* utils.c */ |
| 400 void av_register_input_format(AVInputFormat *format); | |
| 401 void av_register_output_format(AVOutputFormat *format); | |
| 402 AVOutputFormat *guess_stream_format(const char *short_name, | |
| 403 const char *filename, const char *mime_type); | |
| 404 AVOutputFormat *guess_format(const char *short_name, | |
| 405 const char *filename, const char *mime_type); | |
| 406 | |
| 65 | 407 void av_hex_dump(uint8_t *buf, int size); |
| 0 | 408 |
| 409 void av_register_all(void); | |
| 410 | |
| 411 typedef struct FifoBuffer { | |
| 65 | 412 uint8_t *buffer; |
| 413 uint8_t *rptr, *wptr, *end; | |
| 0 | 414 } FifoBuffer; |
| 415 | |
| 416 int fifo_init(FifoBuffer *f, int size); | |
| 417 void fifo_free(FifoBuffer *f); | |
| 65 | 418 int fifo_size(FifoBuffer *f, uint8_t *rptr); |
| 419 int fifo_read(FifoBuffer *f, uint8_t *buf, int buf_size, uint8_t **rptr_ptr); | |
| 420 void fifo_write(FifoBuffer *f, uint8_t *buf, int size, uint8_t **wptr_ptr); | |
| 0 | 421 |
| 422 /* media file input */ | |
| 423 AVInputFormat *av_find_input_format(const char *short_name); | |
| 424 AVInputFormat *av_probe_input_format(AVProbeData *pd, int is_opened); | |
| 425 int av_open_input_file(AVFormatContext **ic_ptr, const char *filename, | |
| 426 AVInputFormat *fmt, | |
| 427 int buf_size, | |
| 428 AVFormatParameters *ap); | |
| 429 | |
| 430 #define AVERROR_UNKNOWN (-1) /* unknown error */ | |
| 431 #define AVERROR_IO (-2) /* i/o error */ | |
| 432 #define AVERROR_NUMEXPECTED (-3) /* number syntax expected in filename */ | |
| 433 #define AVERROR_INVALIDDATA (-4) /* invalid data found */ | |
| 434 #define AVERROR_NOMEM (-5) /* not enough memory */ | |
| 435 #define AVERROR_NOFMT (-6) /* unknown format */ | |
| 436 | |
| 437 int av_find_stream_info(AVFormatContext *ic); | |
| 438 int av_read_packet(AVFormatContext *s, AVPacket *pkt); | |
| 439 void av_close_input_file(AVFormatContext *s); | |
| 440 AVStream *av_new_stream(AVFormatContext *s, int id); | |
| 441 void av_set_pts_info(AVFormatContext *s, int pts_wrap_bits, | |
| 442 int pts_num, int pts_den); | |
| 443 | |
| 444 /* media file output */ | |
|
17
e1200dd82537
added simple still image format support to simplify image and imagepipe video formats
bellard
parents:
5
diff
changeset
|
445 int av_set_parameters(AVFormatContext *s, AVFormatParameters *ap); |
| 0 | 446 int av_write_header(AVFormatContext *s); |
| 447 int av_write_frame(AVFormatContext *s, int stream_index, const uint8_t *buf, | |
| 448 int size); | |
| 449 int av_write_trailer(AVFormatContext *s); | |
| 450 | |
| 451 void dump_format(AVFormatContext *ic, | |
| 452 int index, | |
| 453 const char *url, | |
| 454 int is_output); | |
| 455 int parse_image_size(int *width_ptr, int *height_ptr, const char *str); | |
| 168 | 456 int parse_frame_rate(int *frame_rate, int *frame_rate_base, const char *arg); |
| 65 | 457 int64_t parse_date(const char *datestr, int duration); |
| 0 | 458 |
| 65 | 459 int64_t av_gettime(void); |
| 0 | 460 |
| 461 /* ffm specific for ffserver */ | |
| 462 #define FFM_PACKET_SIZE 4096 | |
| 463 offset_t ffm_read_write_index(int fd); | |
| 464 void ffm_write_write_index(int fd, offset_t pos); | |
| 465 void ffm_set_write_index(AVFormatContext *s, offset_t pos, offset_t file_size); | |
| 466 | |
| 467 int find_info_tag(char *arg, int arg_size, const char *tag1, const char *info); | |
| 468 | |
| 469 int get_frame_filename(char *buf, int buf_size, | |
| 470 const char *path, int number); | |
| 471 int filename_number_test(const char *filename); | |
| 472 | |
| 473 /* grab specific */ | |
| 474 int video_grab_init(void); | |
| 475 int audio_init(void); | |
| 476 | |
| 29 | 477 /* DV1394 */ |
| 478 int dv1394_init(void); | |
| 0 | 479 |
| 480 #ifdef HAVE_AV_CONFIG_H | |
| 481 int strstart(const char *str, const char *val, const char **ptr); | |
| 482 int stristart(const char *str, const char *val, const char **ptr); | |
| 483 void pstrcpy(char *buf, int buf_size, const char *str); | |
| 484 char *pstrcat(char *buf, int buf_size, const char *s); | |
| 485 | |
| 151 | 486 void __dynarray_add(unsigned long **tab_ptr, int *nb_ptr, unsigned long elem); |
| 487 | |
| 488 #define dynarray_add(tab, nb_ptr, elem)\ | |
| 489 do {\ | |
| 490 typeof(tab) _tab = (tab);\ | |
| 491 typeof(elem) _elem = (elem);\ | |
| 492 (void)sizeof(**_tab == _elem); /* check that types are compatible */\ | |
| 493 __dynarray_add((unsigned long **)_tab, nb_ptr, (unsigned long)_elem);\ | |
| 494 } while(0) | |
| 495 | |
| 0 | 496 struct in_addr; |
| 497 int resolve_host(struct in_addr *sin_addr, const char *hostname); | |
| 498 | |
| 499 void url_split(char *proto, int proto_size, | |
| 500 char *hostname, int hostname_size, | |
| 501 int *port_ptr, | |
| 502 char *path, int path_size, | |
| 503 const char *url); | |
| 504 | |
| 505 int match_ext(const char *filename, const char *extensions); | |
| 506 | |
| 507 #endif /* HAVE_AV_CONFIG_H */ | |
| 508 | |
| 39 | 509 #ifdef __cplusplus |
| 510 } | |
| 511 #endif | |
| 512 | |
| 0 | 513 #endif /* AVFORMAT_H */ |
