[Ffmpeg-cvslog] r8103 - trunk/libavformat/os_support.h

mmu_man subversion
Sat Feb 24 00:35:42 CET 2007


Author: mmu_man
Date: Sat Feb 24 00:35:42 2007
New Revision: 8103

Modified:
   trunk/libavformat/os_support.h

Log:
BeOS only: we don't have SA_RESTART. #define to 0 and emit a warning. I don't plan on hosting a streaming tv anyway but it gets ffserver building.

Modified: trunk/libavformat/os_support.h
==============================================================================
--- trunk/libavformat/os_support.h	(original)
+++ trunk/libavformat/os_support.h	Sat Feb 24 00:35:42 2007
@@ -62,6 +62,10 @@
      /* doesn't set errno but that's enough */
 #    define usleep(t)  snooze((bigtime_t)(t))
 #  endif
+#  ifndef SA_RESTART
+#    warning SA_RESTART not implemented; ffserver might misbehave.
+#    define SA_RESTART 0
+#  endif
 #endif
 
 #if defined(CONFIG_OS2)




More information about the ffmpeg-cvslog mailing list