4 #define LIBAVFORMAT_VERSION_INT 0x000406
5 #define LIBAVFORMAT_VERSION "0.4.6"
6 #define LIBAVFORMAT_BUILD 4602
12 /* packet functions */
14 #define AV_NOPTS_VALUE 0
16 typedef struct AVPacket
{
17 INT64 pts
; /* presentation time stamp in stream units (set av_set_pts_info) */
23 #define PKT_FLAG_KEY 0x0001
26 int av_new_packet(AVPacket
*pkt
, int size
);
27 void av_free_packet(AVPacket
*pkt
);
29 /*************************************************/
30 /* fractional numbers for exact pts handling */
32 /* the exact value of the fractional number is: 'val + num / den'. num
33 is assumed to be such as 0 <= num < den */
34 typedef struct AVFrac
{
38 void av_frac_init(AVFrac
*f
, INT64 val
, INT64 num
, INT64 den
);
39 void av_frac_add(AVFrac
*f
, INT64 incr
);
40 void av_frac_set(AVFrac
*f
, INT64 val
);
42 /*************************************************/
43 /* input/output formats */
45 struct AVFormatContext
;
47 /* this structure contains the data a format has to probe a file */
48 typedef struct AVProbeData
{
54 #define AVPROBE_SCORE_MAX 100
56 typedef struct AVFormatParameters
{
62 enum PixelFormat pix_fmt
;
65 #define AVFMT_NOFILE 0x0001 /* no file should be opened */
66 #define AVFMT_NEEDNUMBER 0x0002 /* needs '%d' in filename */
67 #define AVFMT_NOHEADER 0x0004 /* signal that no header is present
68 (streams are added dynamically) */
69 #define AVFMT_SHOW_IDS 0x0008 /* show format stream IDs numbers */
70 #define AVFMT_RGB24 0x0010 /* force RGB24 output for ppm (hack
72 #define AVFMT_RAWPICTURE 0x0020 /* format wants AVPicture structure for
75 typedef struct AVOutputFormat
{
77 const char *long_name
;
78 const char *mime_type
;
79 const char *extensions
; /* comma separated extensions */
80 /* size of private data so that it can be allocated in the wrapper */
83 enum CodecID audio_codec
; /* default audio codec */
84 enum CodecID video_codec
; /* default video codec */
85 int (*write_header
)(struct AVFormatContext
*);
86 /* XXX: change prototype for 64 bit pts */
87 int (*write_packet
)(struct AVFormatContext
*,
89 unsigned char *buf
, int size
, int force_pts
);
90 int (*write_trailer
)(struct AVFormatContext
*);
91 /* can use flags: AVFMT_NOFILE, AVFMT_NEEDNUMBER */
94 struct AVOutputFormat
*next
;
97 typedef struct AVInputFormat
{
99 const char *long_name
;
100 /* size of private data so that it can be allocated in the wrapper */
102 /* tell if a given file has a chance of being parsing by this format */
103 int (*read_probe
)(AVProbeData
*);
104 /* read the format header and initialize the AVFormatContext
105 structure. Return 0 if OK. 'ap' if non NULL contains
106 additionnal paramters. Only used in raw format right
107 now. 'av_new_stream' should be called to create new streams. */
108 int (*read_header
)(struct AVFormatContext
*,
109 AVFormatParameters
*ap
);
110 /* read one packet and put it in 'pkt'. pts and flags are also
111 set. 'av_new_stream' can be called only if the flag
112 AVFMT_NOHEADER is used. */
113 int (*read_packet
)(struct AVFormatContext
*, AVPacket
*pkt
);
114 /* close the stream. The AVFormatContext and AVStreams are not
115 freed by this function */
116 int (*read_close
)(struct AVFormatContext
*);
117 /* seek at or before a given pts (given in microsecond). The pts
118 origin is defined by the stream */
119 int (*read_seek
)(struct AVFormatContext
*, INT64 pts
);
120 /* can use flags: AVFMT_NOFILE, AVFMT_NEEDNUMBER, AVFMT_NOHEADER */
122 /* if extensions are defined, then no probe is done. You should
123 usually not use extension format guessing because it is not
125 const char *extensions
;
126 /* general purpose read only value that the format can use */
129 struct AVInputFormat
*next
;
132 typedef struct AVStream
{
133 int index
; /* stream index in AVFormatContext */
134 int id
; /* format specific stream id */
135 AVCodecContext codec
; /* codec context */
136 int r_frame_rate
; /* real frame rate of the stream */
137 uint64_t time_length
; /* real length of the stream in miliseconds */
139 /* internal data used in av_find_stream_info() */
140 int codec_info_state
;
141 int codec_info_nb_repeat_frames
;
142 int codec_info_nb_real_frames
;
143 /* PTS generation when outputing stream */
145 /* ffmpeg.c private use */
146 int stream_copy
; /* if TRUE, just copy stream */
149 #define MAX_STREAMS 20
151 /* format I/O context */
152 typedef struct AVFormatContext
{
153 /* can only be iformat or oformat, not both at the same time */
154 struct AVInputFormat
*iformat
;
155 struct AVOutputFormat
*oformat
;
159 AVStream
*streams
[MAX_STREAMS
];
160 char filename
[1024]; /* input or output filename */
166 int flags
; /* format specific flags */
167 /* private data for pts handling (do not modify directly) */
168 int pts_wrap_bits
; /* number of bits in pts (used for wrapping control) */
169 int pts_num
, pts_den
; /* value to convert to seconds */
170 /* This buffer is only needed when packets were already buffered but
171 not decoded, for example to get the codec parameters in mpeg
173 struct AVPacketList
*packet_buffer
;
176 typedef struct AVPacketList
{
178 struct AVPacketList
*next
;
181 extern AVInputFormat
*first_iformat
;
182 extern AVOutputFormat
*first_oformat
;
184 /* XXX: use automatic init with either ELF sections or C file parser */
188 int mpegps_init(void);
191 extern AVInputFormat mpegts_demux
;
192 int mpegts_init(void);
207 int avienc_init(void);
210 int avidec_init(void);
243 extern AVInputFormat redir_demux
;
244 int redir_open(AVFormatContext
**ic_ptr
, ByteIOContext
*f
);
251 #define MKTAG(a,b,c,d) (a | (b << 8) | (c << 16) | (d << 24))
252 #define MKBETAG(a,b,c,d) (d | (c << 8) | (b << 16) | (a << 24))
254 void av_register_input_format(AVInputFormat
*format
);
255 void av_register_output_format(AVOutputFormat
*format
);
256 AVOutputFormat
*guess_stream_format(const char *short_name
,
257 const char *filename
, const char *mime_type
);
258 AVOutputFormat
*guess_format(const char *short_name
,
259 const char *filename
, const char *mime_type
);
261 void av_hex_dump(UINT8
*buf
, int size
);
263 void av_register_all(void);
265 typedef struct FifoBuffer
{
267 UINT8
*rptr
, *wptr
, *end
;
270 int fifo_init(FifoBuffer
*f
, int size
);
271 void fifo_free(FifoBuffer
*f
);
272 int fifo_size(FifoBuffer
*f
, UINT8
*rptr
);
273 int fifo_read(FifoBuffer
*f
, UINT8
*buf
, int buf_size
, UINT8
**rptr_ptr
);
274 void fifo_write(FifoBuffer
*f
, UINT8
*buf
, int size
, UINT8
**wptr_ptr
);
276 /* media file input */
277 AVInputFormat
*av_find_input_format(const char *short_name
);
278 AVInputFormat
*av_probe_input_format(AVProbeData
*pd
, int is_opened
);
279 int av_open_input_file(AVFormatContext
**ic_ptr
, const char *filename
,
282 AVFormatParameters
*ap
);
284 #define AVERROR_UNKNOWN (-1) /* unknown error */
285 #define AVERROR_IO (-2) /* i/o error */
286 #define AVERROR_NUMEXPECTED (-3) /* number syntax expected in filename */
287 #define AVERROR_INVALIDDATA (-4) /* invalid data found */
288 #define AVERROR_NOMEM (-5) /* not enough memory */
289 #define AVERROR_NOFMT (-6) /* unknown format */
291 int av_find_stream_info(AVFormatContext
*ic
);
292 int av_read_packet(AVFormatContext
*s
, AVPacket
*pkt
);
293 void av_close_input_file(AVFormatContext
*s
);
294 AVStream
*av_new_stream(AVFormatContext
*s
, int id
);
295 void av_set_pts_info(AVFormatContext
*s
, int pts_wrap_bits
,
296 int pts_num
, int pts_den
);
298 /* media file output */
299 int av_write_header(AVFormatContext
*s
);
300 int av_write_frame(AVFormatContext
*s
, int stream_index
, const uint8_t *buf
,
302 int av_write_trailer(AVFormatContext
*s
);
304 void dump_format(AVFormatContext
*ic
,
308 int parse_image_size(int *width_ptr
, int *height_ptr
, const char *str
);
309 INT64
parse_date(const char *datestr
, int duration
);
311 INT64
av_gettime(void);
313 /* ffm specific for ffserver */
314 #define FFM_PACKET_SIZE 4096
315 offset_t
ffm_read_write_index(int fd
);
316 void ffm_write_write_index(int fd
, offset_t pos
);
317 void ffm_set_write_index(AVFormatContext
*s
, offset_t pos
, offset_t file_size
);
319 int find_info_tag(char *arg
, int arg_size
, const char *tag1
, const char *info
);
321 int get_frame_filename(char *buf
, int buf_size
,
322 const char *path
, int number
);
323 int filename_number_test(const char *filename
);
326 int video_grab_init(void);
327 int audio_init(void);
329 extern const char *v4l_device
;
330 extern const char *audio_device
;
332 #ifdef HAVE_AV_CONFIG_H
333 int strstart(const char *str
, const char *val
, const char **ptr
);
334 int stristart(const char *str
, const char *val
, const char **ptr
);
335 void pstrcpy(char *buf
, int buf_size
, const char *str
);
336 char *pstrcat(char *buf
, int buf_size
, const char *s
);
339 int resolve_host(struct in_addr
*sin_addr
, const char *hostname
);
341 void url_split(char *proto
, int proto_size
,
342 char *hostname
, int hostname_size
,
344 char *path
, int path_size
,
347 #endif /* HAVE_AV_CONFIG_H */
349 #endif /* AVFORMAT_H */