Mercurial > libavformat.hg
annotate avio.h @ 1510:d68525fe36da libavformat
rename HAVE_DLFCN to HAVE_DLFCN_H
author | mru |
---|---|
date | Tue, 14 Nov 2006 23:53:37 +0000 |
parents | 0899bfe4105c |
children | a6eaa0762191 |
rev | line source |
---|---|
1306
8bf9be9bb107
Add official LGPL license headers to the files that were missing them.
diego
parents:
1176
diff
changeset
|
1 /* |
8bf9be9bb107
Add official LGPL license headers to the files that were missing them.
diego
parents:
1176
diff
changeset
|
2 * unbuffered io for ffmpeg system |
8bf9be9bb107
Add official LGPL license headers to the files that were missing them.
diego
parents:
1176
diff
changeset
|
3 * copyright (c) 2001 Fabrice Bellard |
8bf9be9bb107
Add official LGPL license headers to the files that were missing them.
diego
parents:
1176
diff
changeset
|
4 * |
1358
0899bfe4105c
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
1306
diff
changeset
|
5 * This file is part of FFmpeg. |
0899bfe4105c
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
1306
diff
changeset
|
6 * |
0899bfe4105c
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
1306
diff
changeset
|
7 * FFmpeg is free software; you can redistribute it and/or |
1306
8bf9be9bb107
Add official LGPL license headers to the files that were missing them.
diego
parents:
1176
diff
changeset
|
8 * modify it under the terms of the GNU Lesser General Public |
8bf9be9bb107
Add official LGPL license headers to the files that were missing them.
diego
parents:
1176
diff
changeset
|
9 * License as published by the Free Software Foundation; either |
1358
0899bfe4105c
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
1306
diff
changeset
|
10 * version 2.1 of the License, or (at your option) any later version. |
1306
8bf9be9bb107
Add official LGPL license headers to the files that were missing them.
diego
parents:
1176
diff
changeset
|
11 * |
1358
0899bfe4105c
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
1306
diff
changeset
|
12 * FFmpeg is distributed in the hope that it will be useful, |
1306
8bf9be9bb107
Add official LGPL license headers to the files that were missing them.
diego
parents:
1176
diff
changeset
|
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
8bf9be9bb107
Add official LGPL license headers to the files that were missing them.
diego
parents:
1176
diff
changeset
|
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
8bf9be9bb107
Add official LGPL license headers to the files that were missing them.
diego
parents:
1176
diff
changeset
|
15 * Lesser General Public License for more details. |
8bf9be9bb107
Add official LGPL license headers to the files that were missing them.
diego
parents:
1176
diff
changeset
|
16 * |
8bf9be9bb107
Add official LGPL license headers to the files that were missing them.
diego
parents:
1176
diff
changeset
|
17 * You should have received a copy of the GNU Lesser General Public |
1358
0899bfe4105c
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
1306
diff
changeset
|
18 * License along with FFmpeg; if not, write to the Free Software |
1306
8bf9be9bb107
Add official LGPL license headers to the files that were missing them.
diego
parents:
1176
diff
changeset
|
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA |
8bf9be9bb107
Add official LGPL license headers to the files that were missing them.
diego
parents:
1176
diff
changeset
|
20 */ |
0 | 21 #ifndef AVIO_H |
22 #define AVIO_H | |
23 | |
24 /* output byte stream handling */ | |
25 | |
65 | 26 typedef int64_t offset_t; |
0 | 27 |
28 /* unbuffered I/O */ | |
29 | |
30 struct URLContext { | |
31 struct URLProtocol *prot; | |
885 | 32 int flags; |
0 | 33 int is_streamed; /* true if streamed (no seek possible), default = false */ |
34 int max_packet_size; /* if non zero, the stream is packetized with this max packet size */ | |
35 void *priv_data; | |
19 | 36 char filename[1]; /* specified filename */ |
0 | 37 }; |
38 | |
39 typedef struct URLContext URLContext; | |
40 | |
41 typedef struct URLPollEntry { | |
42 URLContext *handle; | |
43 int events; | |
44 int revents; | |
45 } URLPollEntry; | |
46 | |
47 #define URL_RDONLY 0 | |
48 #define URL_WRONLY 1 | |
49 #define URL_RDWR 2 | |
50 | |
177 | 51 typedef int URLInterruptCB(void); |
52 | |
0 | 53 int url_open(URLContext **h, const char *filename, int flags); |
54 int url_read(URLContext *h, unsigned char *buf, int size); | |
55 int url_write(URLContext *h, unsigned char *buf, int size); | |
56 offset_t url_seek(URLContext *h, offset_t pos, int whence); | |
57 int url_close(URLContext *h); | |
58 int url_exist(const char *filename); | |
59 offset_t url_filesize(URLContext *h); | |
60 int url_get_max_packet_size(URLContext *h); | |
19 | 61 void url_get_filename(URLContext *h, char *buf, int buf_size); |
62 | |
177 | 63 /* the callback is called in blocking functions to test regulary if |
64 asynchronous interruption is needed. -EINTR is returned in this | |
65 case by the interrupted function. 'NULL' means no interrupt | |
66 callback is given. */ | |
67 void url_set_interrupt_cb(URLInterruptCB *interrupt_cb); | |
68 | |
0 | 69 /* not implemented */ |
70 int url_poll(URLPollEntry *poll_table, int n, int timeout); | |
71 | |
72 typedef struct URLProtocol { | |
73 const char *name; | |
74 int (*url_open)(URLContext *h, const char *filename, int flags); | |
75 int (*url_read)(URLContext *h, unsigned char *buf, int size); | |
76 int (*url_write)(URLContext *h, unsigned char *buf, int size); | |
77 offset_t (*url_seek)(URLContext *h, offset_t pos, int whence); | |
78 int (*url_close)(URLContext *h); | |
79 struct URLProtocol *next; | |
80 } URLProtocol; | |
81 | |
82 extern URLProtocol *first_protocol; | |
177 | 83 extern URLInterruptCB *url_interrupt_cb; |
0 | 84 |
85 int register_protocol(URLProtocol *protocol); | |
86 | |
87 typedef struct { | |
88 unsigned char *buffer; | |
89 int buffer_size; | |
90 unsigned char *buf_ptr, *buf_end; | |
91 void *opaque; | |
65 | 92 int (*read_packet)(void *opaque, uint8_t *buf, int buf_size); |
554 | 93 int (*write_packet)(void *opaque, uint8_t *buf, int buf_size); |
778
4fbe04f998bf
Fix url_fsize for large files patch by (Wolfram Gloger: wmglo, dent med uni-muenchen de)
michael
parents:
764
diff
changeset
|
94 offset_t (*seek)(void *opaque, offset_t offset, int whence); |
0 | 95 offset_t pos; /* position in the file of the current buffer */ |
96 int must_flush; /* true if the next seek should flush */ | |
97 int eof_reached; /* true if eof reached */ | |
98 int write_flag; /* true if open for writing */ | |
99 int is_streamed; | |
100 int max_packet_size; | |
418
41da3366d341
checksuming for nut & nice checksum API for libavformat
michael
parents:
389
diff
changeset
|
101 unsigned long checksum; |
41da3366d341
checksuming for nut & nice checksum API for libavformat
michael
parents:
389
diff
changeset
|
102 unsigned char *checksum_ptr; |
41da3366d341
checksuming for nut & nice checksum API for libavformat
michael
parents:
389
diff
changeset
|
103 unsigned long (*update_checksum)(unsigned long checksum, const uint8_t *buf, unsigned int size); |
554 | 104 int error; ///< contains the error code or 0 if no error happened |
0 | 105 } ByteIOContext; |
106 | |
107 int init_put_byte(ByteIOContext *s, | |
108 unsigned char *buffer, | |
109 int buffer_size, | |
110 int write_flag, | |
111 void *opaque, | |
65 | 112 int (*read_packet)(void *opaque, uint8_t *buf, int buf_size), |
554 | 113 int (*write_packet)(void *opaque, uint8_t *buf, int buf_size), |
778
4fbe04f998bf
Fix url_fsize for large files patch by (Wolfram Gloger: wmglo, dent med uni-muenchen de)
michael
parents:
764
diff
changeset
|
114 offset_t (*seek)(void *opaque, offset_t offset, int whence)); |
0 | 115 |
116 void put_byte(ByteIOContext *s, int b); | |
117 void put_buffer(ByteIOContext *s, const unsigned char *buf, int size); | |
65 | 118 void put_le64(ByteIOContext *s, uint64_t val); |
119 void put_be64(ByteIOContext *s, uint64_t val); | |
0 | 120 void put_le32(ByteIOContext *s, unsigned int val); |
121 void put_be32(ByteIOContext *s, unsigned int val); | |
937 | 122 void put_le24(ByteIOContext *s, unsigned int val); |
822 | 123 void put_be24(ByteIOContext *s, unsigned int val); |
0 | 124 void put_le16(ByteIOContext *s, unsigned int val); |
125 void put_be16(ByteIOContext *s, unsigned int val); | |
126 void put_tag(ByteIOContext *s, const char *tag); | |
127 | |
128 void put_strz(ByteIOContext *s, const char *buf); | |
129 | |
130 offset_t url_fseek(ByteIOContext *s, offset_t offset, int whence); | |
131 void url_fskip(ByteIOContext *s, offset_t offset); | |
132 offset_t url_ftell(ByteIOContext *s); | |
764
cdb845a57ae4
drop most url_fileno() calls (allows to use ByteIOContext directly in caller apps instead of URLProtocol)
aurel
parents:
554
diff
changeset
|
133 offset_t url_fsize(ByteIOContext *s); |
0 | 134 int url_feof(ByteIOContext *s); |
554 | 135 int url_ferror(ByteIOContext *s); |
0 | 136 |
137 #define URL_EOF (-1) | |
138 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
|
139 #ifdef __GNUC__ |
265
786e8286ea4a
Patch for attribute(printf) by (Michel Bardiaux <mbardiaux at peaktime dot be>)
michaelni
parents:
206
diff
changeset
|
140 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
|
141 #else |
3a493a2e5bba
libavformat/avio.h compilation problem in VisualC++ by (lethean at realtime dot ssu dot ac dot kr)
michaelni
parents:
177
diff
changeset
|
142 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
|
143 #endif |
0 | 144 char *url_fgets(ByteIOContext *s, char *buf, int buf_size); |
145 | |
146 void put_flush_packet(ByteIOContext *s); | |
147 | |
148 int get_buffer(ByteIOContext *s, unsigned char *buf, int size); | |
389
e14fcd57ad2f
decode latency patch by (Leon van Stuivenberg <l dot vanstuivenberg at chello dot nl>)
michael
parents:
265
diff
changeset
|
149 int get_partial_buffer(ByteIOContext *s, unsigned char *buf, int size); |
0 | 150 int get_byte(ByteIOContext *s); |
937 | 151 unsigned int get_le24(ByteIOContext *s); |
0 | 152 unsigned int get_le32(ByteIOContext *s); |
65 | 153 uint64_t get_le64(ByteIOContext *s); |
0 | 154 unsigned int get_le16(ByteIOContext *s); |
155 | |
156 char *get_strz(ByteIOContext *s, char *buf, int maxlen); | |
157 unsigned int get_be16(ByteIOContext *s); | |
822 | 158 unsigned int get_be24(ByteIOContext *s); |
0 | 159 unsigned int get_be32(ByteIOContext *s); |
65 | 160 uint64_t get_be64(ByteIOContext *s); |
0 | 161 |
162 static inline int url_is_streamed(ByteIOContext *s) | |
163 { | |
164 return s->is_streamed; | |
165 } | |
166 | |
167 int url_fdopen(ByteIOContext *s, URLContext *h); | |
168 int url_setbufsize(ByteIOContext *s, int buf_size); | |
169 int url_fopen(ByteIOContext *s, const char *filename, int flags); | |
170 int url_fclose(ByteIOContext *s); | |
171 URLContext *url_fileno(ByteIOContext *s); | |
172 int url_fget_max_packet_size(ByteIOContext *s); | |
173 | |
65 | 174 int url_open_buf(ByteIOContext *s, uint8_t *buf, int buf_size, int flags); |
0 | 175 int url_close_buf(ByteIOContext *s); |
176 | |
177 int url_open_dyn_buf(ByteIOContext *s); | |
178 int url_open_dyn_packet_buf(ByteIOContext *s, int max_packet_size); | |
65 | 179 int url_close_dyn_buf(ByteIOContext *s, uint8_t **pbuffer); |
0 | 180 |
418
41da3366d341
checksuming for nut & nice checksum API for libavformat
michael
parents:
389
diff
changeset
|
181 unsigned long get_checksum(ByteIOContext *s); |
41da3366d341
checksuming for nut & nice checksum API for libavformat
michael
parents:
389
diff
changeset
|
182 void init_checksum(ByteIOContext *s, unsigned long (*update_checksum)(unsigned long c, const uint8_t *p, unsigned int len), unsigned long checksum); |
41da3366d341
checksuming for nut & nice checksum API for libavformat
michael
parents:
389
diff
changeset
|
183 |
0 | 184 /* file.c */ |
185 extern URLProtocol file_protocol; | |
186 extern URLProtocol pipe_protocol; | |
187 | |
188 /* udp.c */ | |
189 extern URLProtocol udp_protocol; | |
190 int udp_set_remote_url(URLContext *h, const char *uri); | |
191 int udp_get_local_port(URLContext *h); | |
192 int udp_get_file_handle(URLContext *h); | |
193 | |
194 /* tcp.c */ | |
195 extern URLProtocol tcp_protocol; | |
196 | |
197 /* http.c */ | |
198 extern URLProtocol http_protocol; | |
199 | |
200 #endif | |
201 |