diff options
author | Martin Storsjö <martin@martin.st> | 2010-08-25 12:51:20 +0000 |
---|---|---|
committer | Martin Storsjö <martin@martin.st> | 2010-08-25 12:51:20 +0000 |
commit | 1272ae7e5046ba3e9dd2080faab9f873a19e3380 (patch) | |
tree | 748f63032f46c73da2895f9761340a731923f6d7 /libavformat | |
parent | cc83027c671ef1ca026aa6b646b70b9df258287d (diff) | |
download | ffmpeg-1272ae7e5046ba3e9dd2080faab9f873a19e3380.tar.gz |
10l, add new function parameters to resolve_destination for !config_network too
Originally committed as revision 24917 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat')
-rw-r--r-- | libavformat/sdp.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libavformat/sdp.c b/libavformat/sdp.c index 4e07e6bc5e..9c0e1a93bf 100644 --- a/libavformat/sdp.c +++ b/libavformat/sdp.c @@ -104,7 +104,8 @@ static void resolve_destination(char *dest_addr, int size, char *type, freeaddrinfo(ai); } #else -static void resolve_destination(char *dest_addr, int size) +static void resolve_destination(char *dest_addr, int size, char *type, + int type_size) { } #endif |