From: Sergey Radionov Date: Wed, 21 Dec 2011 02:19:10 +0000 (+0700) Subject: network: properly declare WSADATA in windows X-Git-Tag: v0.8b1~95 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=139cef8e29bd14de66e29e37722fb09ab2b7e9c5;p=platform%2Fupstream%2Flibav.git network: properly declare WSADATA in windows Fixed "ISO C90 forbids mixed declarations and code" in ff_network_init Signed-off-by: Luca Barbato --- diff --git a/libavformat/network.c b/libavformat/network.c index f8403ae..bfc34c7 100644 --- a/libavformat/network.c +++ b/libavformat/network.c @@ -123,13 +123,16 @@ int ff_network_inited_globally; int ff_network_init(void) { +#if HAVE_WINSOCK2_H + WSADATA wsaData; +#endif + if (!ff_network_inited_globally) av_log(NULL, AV_LOG_WARNING, "Using network protocols without global " "network initialization. Please use " "avformat_network_init(), this will " "become mandatory later.\n"); #if HAVE_WINSOCK2_H - WSADATA wsaData; if (WSAStartup(MAKEWORD(1,1), &wsaData)) return 0; #endif