comparison allcodecs.c @ 3262:b7d637f68f49 libavcodec

Revert Windows "warning" message.
author diego
date Sat, 15 Apr 2006 14:15:09 +0000
parents 226ffbb6fd02
children 93110d5554ab
comparison
equal deleted inserted replaced
3261:61bf38dbf774 3262:b7d637f68f49
31 * simple call to register all the codecs. 31 * simple call to register all the codecs.
32 */ 32 */
33 void avcodec_register_all(void) 33 void avcodec_register_all(void)
34 { 34 {
35 static int inited = 0; 35 static int inited = 0;
36
37 #ifdef CONFIG_WIN32
38 av_log(NULL, AV_LOG_INFO, "Use a real OS!\n");
39 #endif
40 36
41 if (inited != 0) 37 if (inited != 0)
42 return; 38 return;
43 inited = 1; 39 inited = 1;
44 40