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
{
23 #define PKT_FLAG_KEY 0x0001
24 #define PKT_FLAG_DROPPED_FRAME 0x0002
27 int av_new_packet(AVPacket
*pkt
, int size
);
28 void av_free_packet(AVPacket
*pkt
);
30 /*************************************************/
31 /* input/output formats */
33 struct AVFormatContext
;
35 /* this structure contains the data a format has to probe a file */
36 typedef struct AVProbeData
{
42 #define AVPROBE_SCORE_MAX 100
44 typedef struct AVFormatParameters
{
50 enum PixelFormat pix_fmt
;
53 #define AVFMT_NOFILE 0x0001 /* no file should be opened */
54 #define AVFMT_NEEDNUMBER 0x0002 /* needs '%d' in filename */
55 #define AVFMT_NOHEADER 0x0004 /* signal that no header is present
56 (streams are added dynamically) */
57 #define AVFMT_SHOW_IDS 0x0008 /* show format stream IDs numbers */
58 #define AVFMT_RGB24 0x0010 /* force RGB24 output for ppm (hack
60 #define AVFMT_RAWPICTURE 0x0020 /* format wants AVPicture structure for
63 typedef struct AVOutputFormat
{
65 const char *long_name
;
66 const char *mime_type
;
67 const char *extensions
; /* comma separated extensions */
68 /* size of private data so that it can be allocated in the wrapper */
71 enum CodecID audio_codec
; /* default audio codec */
72 enum CodecID video_codec
; /* default video codec */
73 int (*write_header
)(struct AVFormatContext
*);
74 int (*write_packet
)(struct AVFormatContext
*,
76 unsigned char *buf
, int size
, int force_pts
);
77 int (*write_trailer
)(struct AVFormatContext
*);
78 /* can use flags: AVFMT_NOFILE, AVFMT_NEEDNUMBER */
81 struct AVOutputFormat
*next
;
84 typedef struct AVInputFormat
{
86 const char *long_name
;
87 /* size of private data so that it can be allocated in the wrapper */
89 /* tell if a given file has a chance of being parsing by this format */
90 int (*read_probe
)(AVProbeData
*);
91 /* read the format header and initialize the AVFormatContext
92 structure. Return 0 if OK. 'ap' if non NULL contains
93 additionnal paramters. Only used in raw format right
94 now. 'av_new_stream' should be called to create new streams. */
95 int (*read_header
)(struct AVFormatContext
*,
96 AVFormatParameters
*ap
);
97 /* read one packet and put it in 'pkt'. pts and flags are also
98 set. 'av_new_stream' can be called only if the flag
99 AVFMT_NOHEADER is used. */
100 int (*read_packet
)(struct AVFormatContext
*, AVPacket
*pkt
);
101 /* close the stream. The AVFormatContext and AVStreams are not
102 freed by this function */
103 int (*read_close
)(struct AVFormatContext
*);
104 /* seek at or before a given pts (given in microsecond). The pts
105 origin is defined by the stream */
106 int (*read_seek
)(struct AVFormatContext
*, INT64 pts
);
107 /* can use flags: AVFMT_NOFILE, AVFMT_NEEDNUMBER, AVFMT_NOHEADER */
109 /* if extensions are defined, then no probe is done. You should
110 usually not use extension format guessing because it is not
112 const char *extensions
;
113 /* general purpose read only value that the format can use */
116 struct AVInputFormat
*next
;
119 typedef struct AVStream
{
120 int index
; /* stream index in AVFormatContext */
121 int id
; /* format specific stream id */
122 AVCodecContext codec
; /* codec context */
123 int r_frame_rate
; /* real frame rate of the stream */
124 uint64_t time_length
; /* real length of the stream in miliseconds */
125 void* extra_data
; /* some extra data - i.e. longer WAVEFORMATEX */
126 int extra_data_size
; /* size of extra data chunk */
128 /* internal data used in av_find_stream_info() */
129 int codec_info_state
;
130 int codec_info_nb_repeat_frames
;
131 int codec_info_nb_real_frames
;
132 /* ffmpeg.c private use */
133 int stream_copy
; /* if TRUE, just copy stream */
136 #define MAX_STREAMS 20
138 /* format I/O context */
139 typedef struct AVFormatContext
{
140 /* can only be iformat or oformat, not both at the same time */
141 struct AVInputFormat
*iformat
;
142 struct AVOutputFormat
*oformat
;
146 AVStream
*streams
[MAX_STREAMS
];
147 char filename
[1024]; /* input or output filename */
153 int flags
; /* format specific flags */
154 /* This buffer is only needed when packets were already buffered but
155 not decoded, for example to get the codec parameters in mpeg
157 struct AVPacketList
*packet_buffer
;
160 typedef struct AVPacketList
{
162 struct AVPacketList
*next
;
165 extern AVInputFormat
*first_iformat
;
166 extern AVOutputFormat
*first_oformat
;
168 /* XXX: use automatic init with either ELF sections or C file parser */
172 #define AVF_FLAG_VCD 0x00000001 /* VCD compatible MPEG-PS */
173 int mpegps_init(void);
176 extern AVInputFormat mpegts_demux
;
177 int mpegts_init(void);
192 int avienc_init(void);
195 int avidec_init(void);
228 extern AVInputFormat redir_demux
;
229 int redir_open(AVFormatContext
**ic_ptr
, ByteIOContext
*f
);
236 #define MKTAG(a,b,c,d) (a | (b << 8) | (c << 16) | (d << 24))
237 #define MKBETAG(a,b,c,d) (d | (c << 8) | (b << 16) | (a << 24))
239 void av_register_input_format(AVInputFormat
*format
);
240 void av_register_output_format(AVOutputFormat
*format
);
241 AVOutputFormat
*guess_stream_format(const char *short_name
,
242 const char *filename
, const char *mime_type
);
243 AVOutputFormat
*guess_format(const char *short_name
,
244 const char *filename
, const char *mime_type
);
246 void av_hex_dump(UINT8
*buf
, int size
);
248 void av_register_all(void);
250 typedef struct FifoBuffer
{
252 UINT8
*rptr
, *wptr
, *end
;
255 int fifo_init(FifoBuffer
*f
, int size
);
256 void fifo_free(FifoBuffer
*f
);
257 int fifo_size(FifoBuffer
*f
, UINT8
*rptr
);
258 int fifo_read(FifoBuffer
*f
, UINT8
*buf
, int buf_size
, UINT8
**rptr_ptr
);
259 void fifo_write(FifoBuffer
*f
, UINT8
*buf
, int size
, UINT8
**wptr_ptr
);
261 /* media file input */
262 AVInputFormat
*av_find_input_format(const char *short_name
);
263 AVInputFormat
*av_probe_input_format(AVProbeData
*pd
, int is_opened
);
264 int av_open_input_file(AVFormatContext
**ic_ptr
, const char *filename
,
267 AVFormatParameters
*ap
);
269 #define AVERROR_UNKNOWN (-1) /* unknown error */
270 #define AVERROR_IO (-2) /* i/o error */
271 #define AVERROR_NUMEXPECTED (-3) /* number syntax expected in filename */
272 #define AVERROR_INVALIDDATA (-4) /* invalid data found */
273 #define AVERROR_NOMEM (-5) /* not enough memory */
274 #define AVERROR_NOFMT (-6) /* unknown format */
276 int av_find_stream_info(AVFormatContext
*ic
);
277 int av_read_packet(AVFormatContext
*s
, AVPacket
*pkt
);
278 void av_close_input_file(AVFormatContext
*s
);
279 AVStream
*av_new_stream(AVFormatContext
*s
, int id
);
281 /* media file output */
282 int av_write_header(AVFormatContext
*s
);
283 int av_write_packet(AVFormatContext
*s
, AVPacket
*pkt
, int force_pts
);
284 int av_write_trailer(AVFormatContext
*s
);
286 void dump_format(AVFormatContext
*ic
,
290 int parse_image_size(int *width_ptr
, int *height_ptr
, const char *str
);
291 INT64
parse_date(const char *datestr
, int duration
);
293 INT64
av_gettime(void);
295 /* ffm specific for ffserver */
296 #define FFM_PACKET_SIZE 4096
297 offset_t
ffm_read_write_index(int fd
);
298 void ffm_write_write_index(int fd
, offset_t pos
);
299 void ffm_set_write_index(AVFormatContext
*s
, offset_t pos
, offset_t file_size
);
301 int find_info_tag(char *arg
, int arg_size
, const char *tag1
, const char *info
);
303 int get_frame_filename(char *buf
, int buf_size
,
304 const char *path
, int number
);
305 int filename_number_test(const char *filename
);
308 int video_grab_init(void);
309 int audio_init(void);
311 extern const char *v4l_device
;
312 extern const char *audio_device
;
314 #ifdef HAVE_AV_CONFIG_H
315 int strstart(const char *str
, const char *val
, const char **ptr
);
316 int stristart(const char *str
, const char *val
, const char **ptr
);
317 void pstrcpy(char *buf
, int buf_size
, const char *str
);
318 char *pstrcat(char *buf
, int buf_size
, const char *s
);
319 int match_ext(const char *filename
, const char *extensions
);
322 int resolve_host(struct in_addr
*sin_addr
, const char *hostname
);
324 void url_split(char *proto
, int proto_size
,
325 char *hostname
, int hostname_size
,
327 char *path
, int path_size
,
330 #endif /* HAVE_AV_CONFIG_H */
332 #endif /* AVFORMAT_H */