[FFmpeg-cvslog] r14255 - trunk/ffserver.c

bcoudurier subversion
Wed Jul 16 05:21:23 CEST 2008


Author: bcoudurier
Date: Wed Jul 16 05:21:23 2008
New Revision: 14255

Log:
print AVCodecContext address instead of AVClass, better when multiple instances of same codecs are used, based on r14237

Modified:
   trunk/ffserver.c

Modified: trunk/ffserver.c
==============================================================================
--- trunk/ffserver.c	(original)
+++ trunk/ffserver.c	Wed Jul 16 05:21:23 2008
@@ -348,7 +348,7 @@ static void http_av_log(void *ptr, int l
     if (level > av_log_level)
         return;
     if (print_prefix && avc)
-        http_log("[%s @ %p]", avc->item_name(ptr), avc);
+        http_log("[%s @ %p]", avc->item_name(ptr), ptr);
     print_prefix = strstr(fmt, "\n") != NULL;
     http_vlog(fmt, vargs);
 }




More information about the ffmpeg-cvslog mailing list