Mercurial > mplayer.hg
annotate libmpdemux/url.h @ 14758:94456deb0624
finally the dreaded white-noise-with-floats bug is fixed!!!!
the problem is that lrintf was not prototyped on some systems, but
it's easier and faster just not to use it at all. looks like the cola
goes to our friends the glibc developers for forgetting to put lrintf
in math.h in some versions. :))) i'm sure there are other broken libcs
too though.
also fixed a minor bug in the int->float conversion where the range
for float samples was exceeded...
author | rfelker |
---|---|
date | Tue, 22 Feb 2005 02:12:58 +0000 |
parents | a9b7b6055563 |
children |
rev | line source |
---|---|
902 | 1 /* |
2 * URL Helper | |
3 * by Bertrand Baudet <bertrand_baudet@yahoo.com> | |
4 * (C) 2001, MPlayer team. | |
5 */ | |
6 | |
7 #ifndef __URL_H | |
8 #define __URL_H | |
833 | 9 |
4119
639b3b47b138
Added a debug function to print the struct's variables.
bertrand
parents:
3496
diff
changeset
|
10 //#define __URL_DEBUG |
639b3b47b138
Added a debug function to print the struct's variables.
bertrand
parents:
3496
diff
changeset
|
11 |
833 | 12 typedef struct { |
13 char *url; | |
14 char *protocol; | |
15 char *hostname; | |
840 | 16 char *file; |
833 | 17 unsigned int port; |
902 | 18 char *username; |
19 char *password; | |
833 | 20 } URL_t; |
21 | |
9690
a9b7b6055563
Added support for IPv6 numeric url like: http://[3ffe:400:100::1]:80/file
bertrand
parents:
7279
diff
changeset
|
22 URL_t* url_new(const char* url); |
902 | 23 void url_free(URL_t* url); |
833 | 24 |
9690
a9b7b6055563
Added support for IPv6 numeric url like: http://[3ffe:400:100::1]:80/file
bertrand
parents:
7279
diff
changeset
|
25 void url_unescape_string(char *outbuf, const char *inbuf); |
a9b7b6055563
Added support for IPv6 numeric url like: http://[3ffe:400:100::1]:80/file
bertrand
parents:
7279
diff
changeset
|
26 void url_escape_string(char *outbuf, const char *inbuf); |
3496
5c8a533dfa09
Added 2 functions to escape/unescape the url as described in the RFC 2396.
bertrand
parents:
3040
diff
changeset
|
27 |
7279
1d9f22a32d98
Humm, only if __DEBUG_URL is defined, declare the prototype...
bertrand
parents:
4653
diff
changeset
|
28 #ifdef __URL_DEBUG |
9690
a9b7b6055563
Added support for IPv6 numeric url like: http://[3ffe:400:100::1]:80/file
bertrand
parents:
7279
diff
changeset
|
29 void url_debug(const URL_t* url); |
4119
639b3b47b138
Added a debug function to print the struct's variables.
bertrand
parents:
3496
diff
changeset
|
30 #endif // __URL_DEBUG |
639b3b47b138
Added a debug function to print the struct's variables.
bertrand
parents:
3496
diff
changeset
|
31 |
639b3b47b138
Added a debug function to print the struct's variables.
bertrand
parents:
3496
diff
changeset
|
32 #endif // __URL_H |