# HG changeset patch # User michael # Date 1143810384 0 # Node ID 21ba2e68ce03890e048e648acd56691ff3eab938 # Parent c2bef2a233d25c9424db1b24763ad7be7b674b5b warn user about crappy OS patch by (Steve Lhomme ) trailing whitespace and init=1 nonsense removed by me AV_LOG_ERROR -> AV_LOG_INFO (yes steve even though many like you think its an error to use such a OS i cant apply that to cvs, sorry) diff -r c2bef2a233d2 -r 21ba2e68ce03 allcodecs.c --- a/allcodecs.c Fri Mar 31 09:59:53 2006 +0000 +++ b/allcodecs.c Fri Mar 31 13:06:24 2006 +0000 @@ -34,6 +34,10 @@ { static int inited = 0; +#ifdef CONFIG_WIN32 + av_log(NULL, AV_LOG_INFO, "Use a real OS!\n"); +#endif + if (inited != 0) return; inited = 1;