win_output.c
上传用户:sun1608
上传日期:2007-02-02
资源大小:6116k
文件大小:4k
源码类别:

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. /*
  2.  * The contents of this file are subject to the Mozilla Public
  3.  * License Version 1.1 (the "License"); you may not use this file
  4.  * except in compliance with the License. You may obtain a copy of
  5.  * the License at http://www.mozilla.org/MPL/
  6.  * 
  7.  * Software distributed under the License is distributed on an "AS
  8.  * IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
  9.  * implied. See the License for the specific language governing
  10.  * rights and limitations under the License.
  11.  * 
  12.  * The Original Code is MPEG4IP.
  13.  * 
  14.  * The Initial Developer of the Original Code is Cisco Systems Inc.
  15.  * Portions created by Cisco Systems Inc. are
  16.  * Copyright (C) Cisco Systems Inc. 2000, 2001.  All Rights Reserved.
  17.  * 
  18.  * Contributor(s): 
  19.  *              Bill May        wmay@cisco.com
  20.  */
  21. /*
  22.  * player_util.c - utility routines for output
  23.  */
  24. #include "systems.h"
  25. #include "player_util.h"
  26. static FILE *output_file;
  27. #if _WIN32
  28. #include "SDL.h"
  29. #include "SDL_thread.h"
  30. SDL_mutex *outex;
  31. static int initialized = 0;
  32. static void init_local_mutex (void)
  33. {
  34. outex = SDL_CreateMutex();
  35. initialized = 1;
  36. }
  37. static void lock_mutex(void)
  38. {
  39. SDL_mutexP(outex);
  40. static void unlock_mutex(void)
  41. {
  42. SDL_mutexV(outex);
  43. }
  44. #endif
  45. void open_output (const char *name) 
  46. {
  47. output_file = fopen(name, "w");
  48. }
  49. void close_output(void)
  50. {
  51. fclose(output_file);
  52. }
  53. void player_error_message (const char *fmt, ...)
  54. {
  55.   va_list ap;
  56.   struct timeval thistime;
  57.   time_t secs;
  58.   char buffer[80];
  59.   gettimeofday(&thistime, NULL);
  60.   // To add date, add %a %b %d to strftime
  61.   secs = thistime.tv_sec;
  62.   strftime(buffer, sizeof(buffer), "%X", localtime(&secs));
  63.   fprintf(output_file, "%s.%03lu-my_player-%d: ", buffer,
  64.  (unsigned long)thistime.tv_usec / 1000, LOG_ERR);
  65.   va_start(ap, fmt);
  66.   vfprintf(output_file, fmt, ap);
  67.   va_end(ap);
  68.   fprintf(output_file, "n");
  69.   fflush(output_file);
  70. }
  71. void player_debug_message (const char *fmt, ...)
  72. {
  73.   va_list ap;
  74.   struct timeval thistime;
  75.   time_t secs;
  76.   char buffer[80];
  77.   gettimeofday(&thistime, NULL);
  78.   secs = thistime.tv_sec;
  79.   // To add date, add %a %b %d to strftime
  80.   strftime(buffer, sizeof(buffer), "%X", localtime(&secs));
  81.   fprintf(output_file, "%s.%03lu-my_player-%d: ",
  82.  buffer, (unsigned long)thistime.tv_usec / 1000, LOG_DEBUG);
  83.   va_start(ap, fmt);
  84.   vfprintf(output_file, fmt, ap);
  85.   va_end(ap);
  86.   fprintf(output_file, "n");
  87.   fflush(output_file);
  88. }
  89. void message (int loglevel, const char *lib, const char *fmt, ...)
  90. {
  91.   va_list ap;
  92.   struct timeval thistime;
  93.   time_t secs;
  94.   char buffer[80];
  95.   gettimeofday(&thistime, NULL);
  96.   secs = thistime.tv_sec;
  97.   // To add date, add %a %b %d to strftime
  98.   strftime(buffer, sizeof(buffer), "%X", localtime(&secs));
  99.   fprintf(output_file, "%s.%03lu-%s-%d: ",
  100.  buffer, (unsigned long)thistime.tv_usec / 1000, lib, loglevel);
  101.   va_start(ap, fmt);
  102.   vfprintf(output_file, fmt, ap);
  103.   va_end(ap);
  104.   fprintf(output_file, "n");
  105.   fflush(output_file);
  106. }
  107. void player_library_message (int loglevel,
  108.      const char *lib,
  109.      const char *fmt,
  110.      va_list ap)
  111. {
  112.   struct timeval thistime;
  113.   time_t secs;
  114.   char buffer[80];
  115.   gettimeofday(&thistime, NULL);
  116.   secs = thistime.tv_sec;
  117.   strftime(buffer, sizeof(buffer), "%X", localtime(&secs));
  118.   fprintf(output_file, "%s.%03lu-%s-%d: ",
  119.  buffer,
  120.  (unsigned long)thistime.tv_usec / 1000,
  121.  lib,
  122.  loglevel);
  123.   vfprintf(output_file, fmt, ap);
  124.   fprintf(output_file, "n");
  125.   fflush(output_file);
  126. }
  127. #ifndef HAVE_STRCASESTR
  128. char *strcasestr (const char *haystack, const char *needle)
  129. {
  130.   uint32_t nlen, hlen;
  131.   uint32_t ix;
  132.   if (needle == NULL || haystack == NULL) return (NULL);
  133.   nlen = strlen(needle);
  134.   hlen = strlen(haystack);
  135.  
  136.   for (ix = 0; ix + nlen <= hlen; ix++) {
  137.     if (strncasecmp(needle, haystack + ix, nlen) == 0) {
  138.       return ((char *)haystack + ix);
  139.     }
  140.   }
  141.   return (NULL);
  142. }
  143. #endif
  144. /* end file player_util.c */