Mercurial > libavformat.hg
annotate avio.h @ 1787:eb16c64144ee libavformat
This fixes error handling for BeOS, removing the need for some ifdefs.
AVERROR_ defines are moved to avcodec.h as they are needed in there as well. Feel free to move that to avutil/common.h.
Bumped up avcodec/format version numbers as though it's binary compatible we will want to rebuild apps as error values changed.
Please from now on use return AVERROR(EFOO) instead of the ugly return -EFOO in your code.
This also removes the need for berrno.h.
author | mmu_man |
---|---|
date | Tue, 13 Feb 2007 18:26:14 +0000 |
parents | 90987914ad57 |
children | 3328f652d741 |
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; | |
1648
90987914ad57
makes the filename member of the URLContext a pointer, so that the
gpoirier
parents:
1614
diff
changeset
|
36 #if LIBAVFORMAT_VERSION_INT >= (52<<16) |
90987914ad57
makes the filename member of the URLContext a pointer, so that the
gpoirier
parents:
1614
diff
changeset
|
37 char *filename; /* specified filename */ |
90987914ad57
makes the filename member of the URLContext a pointer, so that the
gpoirier
parents:
1614
diff
changeset
|
38 #else |
19 | 39 char filename[1]; /* specified filename */ |
1648
90987914ad57
makes the filename member of the URLContext a pointer, so that the
gpoirier
parents:
1614
diff
changeset
|
40 #endif |
0 | 41 }; |
42 | |
43 typedef struct URLContext URLContext; | |
44 | |
45 typedef struct URLPollEntry { | |
46 URLContext *handle; | |
47 int events; | |
48 int revents; | |
49 } URLPollEntry; | |
50 | |
51 #define URL_RDONLY 0 | |
52 #define URL_WRONLY 1 | |
53 #define URL_RDWR 2 | |
54 | |
177 | 55 typedef int URLInterruptCB(void); |
56 | |
0 | 57 int url_open(URLContext **h, const char *filename, int flags); |
58 int url_read(URLContext *h, unsigned char *buf, int size); | |
59 int url_write(URLContext *h, unsigned char *buf, int size); | |
60 offset_t url_seek(URLContext *h, offset_t pos, int whence); | |
61 int url_close(URLContext *h); | |
62 int url_exist(const char *filename); | |
63 offset_t url_filesize(URLContext *h); | |
64 int url_get_max_packet_size(URLContext *h); | |
19 | 65 void url_get_filename(URLContext *h, char *buf, int buf_size); |
66 | |
177 | 67 /* the callback is called in blocking functions to test regulary if |
1787
eb16c64144ee
This fixes error handling for BeOS, removing the need for some ifdefs.
mmu_man
parents:
1648
diff
changeset
|
68 asynchronous interruption is needed. AVERROR(EINTR) is returned |
eb16c64144ee
This fixes error handling for BeOS, removing the need for some ifdefs.
mmu_man
parents:
1648
diff
changeset
|
69 in this case by the interrupted function. 'NULL' means no interrupt |
177 | 70 callback is given. */ |
71 void url_set_interrupt_cb(URLInterruptCB *interrupt_cb); | |
72 | |
0 | 73 /* not implemented */ |
74 int url_poll(URLPollEntry *poll_table, int n, int timeout); | |
75 | |
1614 | 76 /** |
77 * passing this as the "whence" parameter to a seek function causes it to | |
78 * return the filesize without seeking anywhere, supporting this is optional | |
79 * if its not supprted then the seek function will return <0 | |
80 */ | |
1612
a6eaa0762191
seekless filesize retrieving support in 7 lines of code, also doesnt break compatibility
michael
parents:
1358
diff
changeset
|
81 #define AVSEEK_SIZE 0x10000 |
a6eaa0762191
seekless filesize retrieving support in 7 lines of code, also doesnt break compatibility
michael
parents:
1358
diff
changeset
|
82 |
0 | 83 typedef struct URLProtocol { |
84 const char *name; | |
85 int (*url_open)(URLContext *h, const char *filename, int flags); | |
86 int (*url_read)(URLContext *h, unsigned char *buf, int size); | |
87 int (*url_write)(URLContext *h, unsigned char *buf, int size); | |
88 offset_t (*url_seek)(URLContext *h, offset_t pos, int whence); | |
89 int (*url_close)(URLContext *h); | |
90 struct URLProtocol *next; | |
91 } URLProtocol; | |
92 | |
93 extern URLProtocol *first_protocol; | |
177 | 94 extern URLInterruptCB *url_interrupt_cb; |
0 | 95 |
96 int register_protocol(URLProtocol *protocol); | |
97 | |
98 typedef struct { | |
99 unsigned char *buffer; | |
100 int buffer_size; | |
101 unsigned char *buf_ptr, *buf_end; | |
102 void *opaque; | |
65 | 103 int (*read_packet)(void *opaque, uint8_t *buf, int buf_size); |
554 | 104 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
|
105 offset_t (*seek)(void *opaque, offset_t offset, int whence); |
0 | 106 offset_t pos; /* position in the file of the current buffer */ |
107 int must_flush; /* true if the next seek should flush */ | |
108 int eof_reached; /* true if eof reached */ | |
109 int write_flag; /* true if open for writing */ | |
110 int is_streamed; | |
111 int max_packet_size; | |
418
41da3366d341
checksuming for nut & nice checksum API for libavformat
michael
parents:
389
diff
changeset
|
112 unsigned long checksum; |
41da3366d341
checksuming for nut & nice checksum API for libavformat
michael
parents:
389
diff
changeset
|
113 unsigned char *checksum_ptr; |
41da3366d341
checksuming for nut & nice checksum API for libavformat
michael
parents:
389
diff
changeset
|
114 unsigned long (*update_checksum)(unsigned long checksum, const uint8_t *buf, unsigned int size); |
554 | 115 int error; ///< contains the error code or 0 if no error happened |
0 | 116 } ByteIOContext; |
117 | |
118 int init_put_byte(ByteIOContext *s, | |
119 unsigned char *buffer, | |
120 int buffer_size, | |
121 int write_flag, | |
122 void *opaque, | |
65 | 123 int (*read_packet)(void *opaque, uint8_t *buf, int buf_size), |
554 | 124 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
|
125 offset_t (*seek)(void *opaque, offset_t offset, int whence)); |
0 | 126 |
127 void put_byte(ByteIOContext *s, int b); | |
128 void put_buffer(ByteIOContext *s, const unsigned char *buf, int size); | |
65 | 129 void put_le64(ByteIOContext *s, uint64_t val); |
130 void put_be64(ByteIOContext *s, uint64_t val); | |
0 | 131 void put_le32(ByteIOContext *s, unsigned int val); |
132 void put_be32(ByteIOContext *s, unsigned int val); | |
937 | 133 void put_le24(ByteIOContext *s, unsigned int val); |
822 | 134 void put_be24(ByteIOContext *s, unsigned int val); |
0 | 135 void put_le16(ByteIOContext *s, unsigned int val); |
136 void put_be16(ByteIOContext *s, unsigned int val); | |
137 void put_tag(ByteIOContext *s, const char *tag); | |
138 | |
139 void put_strz(ByteIOContext *s, const char *buf); | |
140 | |
141 offset_t url_fseek(ByteIOContext *s, offset_t offset, int whence); | |
142 void url_fskip(ByteIOContext *s, offset_t offset); | |
143 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
|
144 offset_t url_fsize(ByteIOContext *s); |
0 | 145 int url_feof(ByteIOContext *s); |
554 | 146 int url_ferror(ByteIOContext *s); |
0 | 147 |
148 #define URL_EOF (-1) | |
149 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
|
150 #ifdef __GNUC__ |
265
786e8286ea4a
Patch for attribute(printf) by (Michel Bardiaux <mbardiaux at peaktime dot be>)
michaelni
parents:
206
diff
changeset
|
151 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
|
152 #else |
3a493a2e5bba
libavformat/avio.h compilation problem in VisualC++ by (lethean at realtime dot ssu dot ac dot kr)
michaelni
parents:
177
diff
changeset
|
153 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
|
154 #endif |
0 | 155 char *url_fgets(ByteIOContext *s, char *buf, int buf_size); |
156 | |
157 void put_flush_packet(ByteIOContext *s); | |
158 | |
159 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
|
160 int get_partial_buffer(ByteIOContext *s, unsigned char *buf, int size); |
0 | 161 int get_byte(ByteIOContext *s); |
937 | 162 unsigned int get_le24(ByteIOContext *s); |
0 | 163 unsigned int get_le32(ByteIOContext *s); |
65 | 164 uint64_t get_le64(ByteIOContext *s); |
0 | 165 unsigned int get_le16(ByteIOContext *s); |
166 | |
167 char *get_strz(ByteIOContext *s, char *buf, int maxlen); | |
168 unsigned int get_be16(ByteIOContext *s); | |
822 | 169 unsigned int get_be24(ByteIOContext *s); |
0 | 170 unsigned int get_be32(ByteIOContext *s); |
65 | 171 uint64_t get_be64(ByteIOContext *s); |
0 | 172 |
173 static inline int url_is_streamed(ByteIOContext *s) | |
174 { | |
175 return s->is_streamed; | |
176 } | |
177 | |
178 int url_fdopen(ByteIOContext *s, URLContext *h); | |
179 int url_setbufsize(ByteIOContext *s, int buf_size); | |
180 int url_fopen(ByteIOContext *s, const char *filename, int flags); | |
181 int url_fclose(ByteIOContext *s); | |
182 URLContext *url_fileno(ByteIOContext *s); | |
183 int url_fget_max_packet_size(ByteIOContext *s); | |
184 | |
65 | 185 int url_open_buf(ByteIOContext *s, uint8_t *buf, int buf_size, int flags); |
0 | 186 int url_close_buf(ByteIOContext *s); |
187 | |
188 int url_open_dyn_buf(ByteIOContext *s); | |
189 int url_open_dyn_packet_buf(ByteIOContext *s, int max_packet_size); | |
65 | 190 int url_close_dyn_buf(ByteIOContext *s, uint8_t **pbuffer); |
0 | 191 |
418
41da3366d341
checksuming for nut & nice checksum API for libavformat
michael
parents:
389
diff
changeset
|
192 unsigned long get_checksum(ByteIOContext *s); |
41da3366d341
checksuming for nut & nice checksum API for libavformat
michael
parents:
389
diff
changeset
|
193 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
|
194 |
0 | 195 /* file.c */ |
196 extern URLProtocol file_protocol; | |
197 extern URLProtocol pipe_protocol; | |
198 | |
199 /* udp.c */ | |
200 extern URLProtocol udp_protocol; | |
201 int udp_set_remote_url(URLContext *h, const char *uri); | |
202 int udp_get_local_port(URLContext *h); | |
203 int udp_get_file_handle(URLContext *h); | |
204 | |
205 /* tcp.c */ | |
206 extern URLProtocol tcp_protocol; | |
207 | |
208 /* http.c */ | |
209 extern URLProtocol http_protocol; | |
210 | |
211 #endif | |
212 |