VirtualBox

source: vbox/trunk/src/libs/ffmpeg-20060710/libavformat/avio.h@ 8998

最後變更 在這個檔案從8998是 5776,由 vboxsync 提交於 17 年 前

ffmpeg: exported to OSE

檔案大小: 6.2 KB
 
1#ifndef AVIO_H
2#define AVIO_H
3
4/* output byte stream handling */
5
6typedef int64_t offset_t;
7
8/* unbuffered I/O */
9
10struct URLContext {
11 struct URLProtocol *prot;
12 int flags;
13 int is_streamed; /* true if streamed (no seek possible), default = false */
14 int max_packet_size; /* if non zero, the stream is packetized with this max packet size */
15 void *priv_data;
16 char filename[1]; /* specified filename */
17};
18
19typedef struct URLContext URLContext;
20
21typedef struct URLPollEntry {
22 URLContext *handle;
23 int events;
24 int revents;
25} URLPollEntry;
26
27#define URL_RDONLY 0
28#define URL_WRONLY 1
29#define URL_RDWR 2
30
31typedef int URLInterruptCB(void);
32
33int url_open(URLContext **h, const char *filename, int flags);
34int url_read(URLContext *h, unsigned char *buf, int size);
35int url_write(URLContext *h, unsigned char *buf, int size);
36offset_t url_seek(URLContext *h, offset_t pos, int whence);
37int url_close(URLContext *h);
38int url_exist(const char *filename);
39offset_t url_filesize(URLContext *h);
40int url_get_max_packet_size(URLContext *h);
41void url_get_filename(URLContext *h, char *buf, int buf_size);
42
43/* the callback is called in blocking functions to test regulary if
44 asynchronous interruption is needed. -EINTR is returned in this
45 case by the interrupted function. 'NULL' means no interrupt
46 callback is given. */
47void url_set_interrupt_cb(URLInterruptCB *interrupt_cb);
48
49/* not implemented */
50int url_poll(URLPollEntry *poll_table, int n, int timeout);
51
52typedef struct URLProtocol {
53 const char *name;
54 int (*url_open)(URLContext *h, const char *filename, int flags);
55 int (*url_read)(URLContext *h, unsigned char *buf, int size);
56 int (*url_write)(URLContext *h, unsigned char *buf, int size);
57 offset_t (*url_seek)(URLContext *h, offset_t pos, int whence);
58 int (*url_close)(URLContext *h);
59 struct URLProtocol *next;
60} URLProtocol;
61
62extern URLProtocol *first_protocol;
63extern URLInterruptCB *url_interrupt_cb;
64
65int register_protocol(URLProtocol *protocol);
66
67typedef struct {
68 unsigned char *buffer;
69 int buffer_size;
70 unsigned char *buf_ptr, *buf_end;
71 void *opaque;
72 int (*read_packet)(void *opaque, uint8_t *buf, int buf_size);
73 int (*write_packet)(void *opaque, uint8_t *buf, int buf_size);
74 offset_t (*seek)(void *opaque, offset_t offset, int whence);
75 offset_t pos; /* position in the file of the current buffer */
76 int must_flush; /* true if the next seek should flush */
77 int eof_reached; /* true if eof reached */
78 int write_flag; /* true if open for writing */
79 int is_streamed;
80 int max_packet_size;
81 unsigned long checksum;
82 unsigned char *checksum_ptr;
83 unsigned long (*update_checksum)(unsigned long checksum, const uint8_t *buf, unsigned int size);
84 int error; ///< contains the error code or 0 if no error happened
85} ByteIOContext;
86
87int init_put_byte(ByteIOContext *s,
88 unsigned char *buffer,
89 int buffer_size,
90 int write_flag,
91 void *opaque,
92 int (*read_packet)(void *opaque, uint8_t *buf, int buf_size),
93 int (*write_packet)(void *opaque, uint8_t *buf, int buf_size),
94 offset_t (*seek)(void *opaque, offset_t offset, int whence));
95
96void put_byte(ByteIOContext *s, int b);
97void put_buffer(ByteIOContext *s, const unsigned char *buf, int size);
98void put_le64(ByteIOContext *s, uint64_t val);
99void put_be64(ByteIOContext *s, uint64_t val);
100void put_le32(ByteIOContext *s, unsigned int val);
101void put_be32(ByteIOContext *s, unsigned int val);
102void put_le24(ByteIOContext *s, unsigned int val);
103void put_be24(ByteIOContext *s, unsigned int val);
104void put_le16(ByteIOContext *s, unsigned int val);
105void put_be16(ByteIOContext *s, unsigned int val);
106void put_tag(ByteIOContext *s, const char *tag);
107
108void put_strz(ByteIOContext *s, const char *buf);
109
110offset_t url_fseek(ByteIOContext *s, offset_t offset, int whence);
111void url_fskip(ByteIOContext *s, offset_t offset);
112offset_t url_ftell(ByteIOContext *s);
113offset_t url_fsize(ByteIOContext *s);
114int url_feof(ByteIOContext *s);
115int url_ferror(ByteIOContext *s);
116
117#define URL_EOF (-1)
118int url_fgetc(ByteIOContext *s);
119#ifdef __GNUC__
120int url_fprintf(ByteIOContext *s, const char *fmt, ...) __attribute__ ((__format__ (__printf__, 2, 3)));
121#else
122int url_fprintf(ByteIOContext *s, const char *fmt, ...);
123#endif
124char *url_fgets(ByteIOContext *s, char *buf, int buf_size);
125
126void put_flush_packet(ByteIOContext *s);
127
128int get_buffer(ByteIOContext *s, unsigned char *buf, int size);
129int get_partial_buffer(ByteIOContext *s, unsigned char *buf, int size);
130int get_byte(ByteIOContext *s);
131unsigned int get_le24(ByteIOContext *s);
132unsigned int get_le32(ByteIOContext *s);
133uint64_t get_le64(ByteIOContext *s);
134unsigned int get_le16(ByteIOContext *s);
135
136char *get_strz(ByteIOContext *s, char *buf, int maxlen);
137unsigned int get_be16(ByteIOContext *s);
138unsigned int get_be24(ByteIOContext *s);
139unsigned int get_be32(ByteIOContext *s);
140uint64_t get_be64(ByteIOContext *s);
141
142static inline int url_is_streamed(ByteIOContext *s)
143{
144 return s->is_streamed;
145}
146
147int url_fdopen(ByteIOContext *s, URLContext *h);
148int url_setbufsize(ByteIOContext *s, int buf_size);
149int url_fopen(ByteIOContext *s, const char *filename, int flags);
150int url_fclose(ByteIOContext *s);
151URLContext *url_fileno(ByteIOContext *s);
152int url_fget_max_packet_size(ByteIOContext *s);
153
154int url_open_buf(ByteIOContext *s, uint8_t *buf, int buf_size, int flags);
155int url_close_buf(ByteIOContext *s);
156
157int url_open_dyn_buf(ByteIOContext *s);
158int url_open_dyn_packet_buf(ByteIOContext *s, int max_packet_size);
159int url_close_dyn_buf(ByteIOContext *s, uint8_t **pbuffer);
160
161unsigned long get_checksum(ByteIOContext *s);
162void init_checksum(ByteIOContext *s, unsigned long (*update_checksum)(unsigned long c, const uint8_t *p, unsigned int len), unsigned long checksum);
163unsigned long update_adler32(unsigned long adler, const uint8_t *buf, unsigned int len);
164
165/* file.c */
166extern URLProtocol file_protocol;
167extern URLProtocol pipe_protocol;
168
169/* udp.c */
170extern URLProtocol udp_protocol;
171int udp_set_remote_url(URLContext *h, const char *uri);
172int udp_get_local_port(URLContext *h);
173int udp_get_file_handle(URLContext *h);
174
175/* tcp.c */
176extern URLProtocol tcp_protocol;
177
178/* http.c */
179extern URLProtocol http_protocol;
180
181#endif
182
注意: 瀏覽 TracBrowser 來幫助您使用儲存庫瀏覽器

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette