Mercurial > libavformat.hg
annotate avio.h @ 336:d75fd4c6ab62 libavformat
primitive LPCM generator
author | bellard |
---|---|
date | Tue, 16 Dec 2003 14:00:18 +0000 |
parents | 786e8286ea4a |
children | e14fcd57ad2f |
rev | line source |
---|---|
0 | 1 #ifndef AVIO_H |
2 #define AVIO_H | |
3 | |
4 /* output byte stream handling */ | |
5 | |
65 | 6 typedef int64_t offset_t; |
0 | 7 |
8 /* unbuffered I/O */ | |
9 | |
10 struct 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; | |
19 | 16 char filename[1]; /* specified filename */ |
0 | 17 }; |
18 | |
19 typedef struct URLContext URLContext; | |
20 | |
21 typedef 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 | |
177 | 31 typedef int URLInterruptCB(void); |
32 | |
0 | 33 int url_open(URLContext **h, const char *filename, int flags); |
34 int url_read(URLContext *h, unsigned char *buf, int size); | |
35 int url_write(URLContext *h, unsigned char *buf, int size); | |
36 offset_t url_seek(URLContext *h, offset_t pos, int whence); | |
37 int url_close(URLContext *h); | |
38 int url_exist(const char *filename); | |
39 offset_t url_filesize(URLContext *h); | |
40 int url_get_max_packet_size(URLContext *h); | |
19 | 41 void url_get_filename(URLContext *h, char *buf, int buf_size); |
42 | |
177 | 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. */ | |
47 void url_set_interrupt_cb(URLInterruptCB *interrupt_cb); | |
48 | |
0 | 49 /* not implemented */ |
50 int url_poll(URLPollEntry *poll_table, int n, int timeout); | |
51 | |
52 typedef 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 | |
62 extern URLProtocol *first_protocol; | |
177 | 63 extern URLInterruptCB *url_interrupt_cb; |
0 | 64 |
65 int register_protocol(URLProtocol *protocol); | |
66 | |
67 typedef struct { | |
68 unsigned char *buffer; | |
69 int buffer_size; | |
70 unsigned char *buf_ptr, *buf_end; | |
71 void *opaque; | |
65 | 72 int (*read_packet)(void *opaque, uint8_t *buf, int buf_size); |
73 void (*write_packet)(void *opaque, uint8_t *buf, int buf_size); | |
0 | 74 int (*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 } ByteIOContext; | |
82 | |
83 int init_put_byte(ByteIOContext *s, | |
84 unsigned char *buffer, | |
85 int buffer_size, | |
86 int write_flag, | |
87 void *opaque, | |
65 | 88 int (*read_packet)(void *opaque, uint8_t *buf, int buf_size), |
89 void (*write_packet)(void *opaque, uint8_t *buf, int buf_size), | |
0 | 90 int (*seek)(void *opaque, offset_t offset, int whence)); |
91 | |
92 void put_byte(ByteIOContext *s, int b); | |
93 void put_buffer(ByteIOContext *s, const unsigned char *buf, int size); | |
65 | 94 void put_le64(ByteIOContext *s, uint64_t val); |
95 void put_be64(ByteIOContext *s, uint64_t val); | |
0 | 96 void put_le32(ByteIOContext *s, unsigned int val); |
97 void put_be32(ByteIOContext *s, unsigned int val); | |
98 void put_le16(ByteIOContext *s, unsigned int val); | |
99 void put_be16(ByteIOContext *s, unsigned int val); | |
100 void put_tag(ByteIOContext *s, const char *tag); | |
101 | |
102 void put_be64_double(ByteIOContext *s, double val); | |
103 void put_strz(ByteIOContext *s, const char *buf); | |
104 | |
105 offset_t url_fseek(ByteIOContext *s, offset_t offset, int whence); | |
106 void url_fskip(ByteIOContext *s, offset_t offset); | |
107 offset_t url_ftell(ByteIOContext *s); | |
108 int url_feof(ByteIOContext *s); | |
109 | |
110 #define URL_EOF (-1) | |
111 int url_fgetc(ByteIOContext *s); | |
206
3a493a2e5bba
libavformat/avio.h compilation problem in VisualC++ by (lethean at realtime dot ssu dot ac dot kr)
michaelni
parents:
177
diff
changeset
|
112 #ifdef __GNUC__ |
265
786e8286ea4a
Patch for attribute(printf) by (Michel Bardiaux <mbardiaux at peaktime dot be>)
michaelni
parents:
206
diff
changeset
|
113 int url_fprintf(ByteIOContext *s, const char *fmt, ...) __attribute__ ((__format__ (__printf__, 2, 3))); |
206
3a493a2e5bba
libavformat/avio.h compilation problem in VisualC++ by (lethean at realtime dot ssu dot ac dot kr)
michaelni
parents:
177
diff
changeset
|
114 #else |
3a493a2e5bba
libavformat/avio.h compilation problem in VisualC++ by (lethean at realtime dot ssu dot ac dot kr)
michaelni
parents:
177
diff
changeset
|
115 int url_fprintf(ByteIOContext *s, const char *fmt, ...); |
3a493a2e5bba
libavformat/avio.h compilation problem in VisualC++ by (lethean at realtime dot ssu dot ac dot kr)
michaelni
parents:
177
diff
changeset
|
116 #endif |
0 | 117 char *url_fgets(ByteIOContext *s, char *buf, int buf_size); |
118 | |
119 void put_flush_packet(ByteIOContext *s); | |
120 | |
121 int get_buffer(ByteIOContext *s, unsigned char *buf, int size); | |
122 int get_byte(ByteIOContext *s); | |
123 unsigned int get_le32(ByteIOContext *s); | |
65 | 124 uint64_t get_le64(ByteIOContext *s); |
0 | 125 unsigned int get_le16(ByteIOContext *s); |
126 | |
127 double get_be64_double(ByteIOContext *s); | |
128 char *get_strz(ByteIOContext *s, char *buf, int maxlen); | |
129 unsigned int get_be16(ByteIOContext *s); | |
130 unsigned int get_be32(ByteIOContext *s); | |
65 | 131 uint64_t get_be64(ByteIOContext *s); |
0 | 132 |
133 static inline int url_is_streamed(ByteIOContext *s) | |
134 { | |
135 return s->is_streamed; | |
136 } | |
137 | |
138 int url_fdopen(ByteIOContext *s, URLContext *h); | |
139 int url_setbufsize(ByteIOContext *s, int buf_size); | |
140 int url_fopen(ByteIOContext *s, const char *filename, int flags); | |
141 int url_fclose(ByteIOContext *s); | |
142 URLContext *url_fileno(ByteIOContext *s); | |
143 int url_fget_max_packet_size(ByteIOContext *s); | |
144 | |
65 | 145 int url_open_buf(ByteIOContext *s, uint8_t *buf, int buf_size, int flags); |
0 | 146 int url_close_buf(ByteIOContext *s); |
147 | |
148 int url_open_dyn_buf(ByteIOContext *s); | |
149 int url_open_dyn_packet_buf(ByteIOContext *s, int max_packet_size); | |
65 | 150 int url_close_dyn_buf(ByteIOContext *s, uint8_t **pbuffer); |
0 | 151 |
152 /* file.c */ | |
153 extern URLProtocol file_protocol; | |
154 extern URLProtocol pipe_protocol; | |
155 | |
156 /* udp.c */ | |
157 extern URLProtocol udp_protocol; | |
158 int udp_set_remote_url(URLContext *h, const char *uri); | |
159 int udp_get_local_port(URLContext *h); | |
160 int udp_get_file_handle(URLContext *h); | |
161 | |
162 /* tcp.c */ | |
163 extern URLProtocol tcp_protocol; | |
164 | |
165 /* http.c */ | |
166 extern URLProtocol http_protocol; | |
167 | |
168 #endif | |
169 |