aboutsummaryrefslogtreecommitdiffstats
path: root/libavcodec
diff options
context:
space:
mode:
authorSteve L'Homme <slhomme@divxcorp.com>2006-03-31 13:06:24 +0000
committerMichael Niedermayer <michaelni@gmx.at>2006-03-31 13:06:24 +0000
commit9296d45d29d0b747d54c824a7073cfbcb4cc7b96 (patch)
tree9caf561acd770ce4b8879893572f7e1400378610 /libavcodec
parent46641a135c44296873b671034f5b4c290de37159 (diff)
downloadffmpeg-9296d45d29d0b747d54c824a7073cfbcb4cc7b96.tar.gz
warn user about crappy OS patch by (Steve Lhomme <steve.lhomme@free.fr>)
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) Originally committed as revision 5251 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec')
-rw-r--r--libavcodec/allcodecs.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/libavcodec/allcodecs.c b/libavcodec/allcodecs.c
index 16db0716d6..92af677c4f 100644
--- a/libavcodec/allcodecs.c
+++ b/libavcodec/allcodecs.c
@@ -34,6 +34,10 @@ void avcodec_register_all(void)
{
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;