| 
									
										
										
										
											2006-07-18 11:00:55 +00:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * log functions | 
					
						
							|  |  |  |  * Copyright (c) 2003 Michel Bardiaux | 
					
						
							|  |  |  |  * | 
					
						
							| 
									
										
										
										
											2006-10-07 15:30:46 +00:00
										 |  |  |  * This file is part of FFmpeg. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * FFmpeg is free software; you can redistribute it and/or | 
					
						
							| 
									
										
										
										
											2006-07-18 11:00:55 +00:00
										 |  |  |  * modify it under the terms of the GNU Lesser General Public | 
					
						
							|  |  |  |  * License as published by the Free Software Foundation; either | 
					
						
							| 
									
										
										
										
											2006-10-07 15:30:46 +00:00
										 |  |  |  * version 2.1 of the License, or (at your option) any later version. | 
					
						
							| 
									
										
										
										
											2006-07-18 11:00:55 +00:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2006-10-07 15:30:46 +00:00
										 |  |  |  * FFmpeg is distributed in the hope that it will be useful, | 
					
						
							| 
									
										
										
										
											2006-07-18 11:00:55 +00:00
										 |  |  |  * but WITHOUT ANY WARRANTY; without even the implied warranty of | 
					
						
							|  |  |  |  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU | 
					
						
							|  |  |  |  * Lesser General Public License for more details. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * You should have received a copy of the GNU Lesser General Public | 
					
						
							| 
									
										
										
										
											2006-10-07 15:30:46 +00:00
										 |  |  |  * License along with FFmpeg; if not, write to the Free Software | 
					
						
							| 
									
										
										
										
											2006-07-18 11:00:55 +00:00
										 |  |  |  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /**
 | 
					
						
							| 
									
										
										
										
											2010-04-20 14:45:34 +00:00
										 |  |  |  * @file | 
					
						
							| 
									
										
										
										
											2009-01-28 23:16:49 +00:00
										 |  |  |  * logging functions | 
					
						
							| 
									
										
										
										
											2006-07-18 11:00:55 +00:00
										 |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-04-22 18:58:39 +00:00
										 |  |  | #include <unistd.h>
 | 
					
						
							| 
									
										
										
										
											2010-04-23 21:27:26 +00:00
										 |  |  | #include <stdlib.h>
 | 
					
						
							| 
									
										
										
										
											2006-07-18 11:00:55 +00:00
										 |  |  | #include "avutil.h"
 | 
					
						
							| 
									
										
										
										
											2009-01-25 22:40:43 +00:00
										 |  |  | #include "log.h"
 | 
					
						
							| 
									
										
										
										
											2006-07-18 11:00:55 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-12-03 18:15:54 +00:00
										 |  |  | #if LIBAVUTIL_VERSION_MAJOR > 50
 | 
					
						
							|  |  |  | static | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2006-07-20 11:55:08 +00:00
										 |  |  | int av_log_level = AV_LOG_INFO; | 
					
						
							| 
									
										
										
										
											2010-09-24 15:37:01 +00:00
										 |  |  | static int flags; | 
					
						
							| 
									
										
										
										
											2006-07-18 11:00:55 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-06-14 08:51:46 +00:00
										 |  |  | #if defined(_WIN32) && !defined(__MINGW32CE__)
 | 
					
						
							| 
									
										
										
										
											2010-06-09 18:13:01 +00:00
										 |  |  | #include <windows.h>
 | 
					
						
							|  |  |  | static const uint8_t color[] = {12,12,12,14,7,7,7}; | 
					
						
							|  |  |  | static int16_t background, attr_orig; | 
					
						
							|  |  |  | static HANDLE con; | 
					
						
							| 
									
										
										
										
											2010-06-09 18:30:50 +00:00
										 |  |  | #define set_color(x)  SetConsoleTextAttribute(con, background | color[x])
 | 
					
						
							| 
									
										
										
										
											2010-06-09 18:13:01 +00:00
										 |  |  | #define reset_color() SetConsoleTextAttribute(con, attr_orig)
 | 
					
						
							|  |  |  | #else
 | 
					
						
							| 
									
										
										
										
											2010-06-09 18:10:35 +00:00
										 |  |  | static const uint8_t color[]={0x41,0x41,0x11,0x03,9,9,9}; | 
					
						
							| 
									
										
										
										
											2010-06-09 18:13:01 +00:00
										 |  |  | #define set_color(x)  fprintf(stderr, "\033[%d;3%dm", color[x]>>4, color[x]&15)
 | 
					
						
							|  |  |  | #define reset_color() fprintf(stderr, "\033[0m")
 | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2010-06-09 18:07:44 +00:00
										 |  |  | static int use_color=-1; | 
					
						
							| 
									
										
										
										
											2010-04-22 18:58:39 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | #undef fprintf
 | 
					
						
							| 
									
										
										
										
											2010-06-09 18:10:35 +00:00
										 |  |  | static void colored_fputs(int level, const char *str){ | 
					
						
							| 
									
										
										
										
											2010-06-09 18:07:44 +00:00
										 |  |  |     if(use_color<0){ | 
					
						
							| 
									
										
										
										
											2010-06-14 08:51:46 +00:00
										 |  |  | #if defined(_WIN32) && !defined(__MINGW32CE__)
 | 
					
						
							| 
									
										
										
										
											2010-06-09 18:13:01 +00:00
										 |  |  |         CONSOLE_SCREEN_BUFFER_INFO con_info; | 
					
						
							|  |  |  |         con = GetStdHandle(STD_ERROR_HANDLE); | 
					
						
							| 
									
										
										
										
											2011-01-01 20:08:15 +00:00
										 |  |  |         use_color = (con != INVALID_HANDLE_VALUE) && !getenv("NO_COLOR") && !getenv("FFMPEG_FORCE_NOCOLOR"); | 
					
						
							| 
									
										
										
										
											2010-06-09 18:13:01 +00:00
										 |  |  |         if (use_color) { | 
					
						
							|  |  |  |             GetConsoleScreenBufferInfo(con, &con_info); | 
					
						
							|  |  |  |             attr_orig  = con_info.wAttributes; | 
					
						
							|  |  |  |             background = attr_orig & 0xF0; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | #elif HAVE_ISATTY
 | 
					
						
							| 
									
										
										
										
											2010-12-06 21:47:10 +00:00
										 |  |  |         use_color= !getenv("NO_COLOR") && !getenv("FFMPEG_FORCE_NOCOLOR") && | 
					
						
							|  |  |  |             (getenv("TERM") && isatty(2) || getenv("FFMPEG_FORCE_COLOR")); | 
					
						
							| 
									
										
										
										
											2010-04-23 21:27:26 +00:00
										 |  |  | #else
 | 
					
						
							| 
									
										
										
										
											2010-12-06 21:47:10 +00:00
										 |  |  |         use_color= getenv("FFMPEG_FORCE_COLOR") && !getenv("NO_COLOR") && !getenv("FFMPEG_FORCE_NOCOLOR"); | 
					
						
							| 
									
										
										
										
											2010-04-23 21:27:26 +00:00
										 |  |  | #endif
 | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-06-09 18:07:44 +00:00
										 |  |  |     if(use_color){ | 
					
						
							| 
									
										
										
										
											2010-06-09 18:13:01 +00:00
										 |  |  |         set_color(level); | 
					
						
							| 
									
										
										
										
											2010-04-22 18:58:39 +00:00
										 |  |  |     } | 
					
						
							|  |  |  |     fputs(str, stderr); | 
					
						
							| 
									
										
										
										
											2010-06-09 18:07:44 +00:00
										 |  |  |     if(use_color){ | 
					
						
							| 
									
										
										
										
											2010-06-09 18:13:01 +00:00
										 |  |  |         reset_color(); | 
					
						
							| 
									
										
										
										
											2010-04-22 18:58:39 +00:00
										 |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-05-19 22:45:04 +00:00
										 |  |  | const char* av_default_item_name(void* ptr){ | 
					
						
							|  |  |  |     return (*(AVClass**)ptr)->class_name; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-03-25 00:20:07 +01:00
										 |  |  | static void sanitize(uint8_t *line){ | 
					
						
							|  |  |  |     while(*line){ | 
					
						
							|  |  |  |         if(*line < 0x08 || (*line > 0x0D && *line < 0x20)) | 
					
						
							|  |  |  |             *line='?'; | 
					
						
							|  |  |  |         line++; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-01-13 17:10:34 +00:00
										 |  |  | void av_log_default_callback(void* ptr, int level, const char* fmt, va_list vl) | 
					
						
							| 
									
										
										
										
											2006-07-18 11:00:55 +00:00
										 |  |  | { | 
					
						
							|  |  |  |     static int print_prefix=1; | 
					
						
							| 
									
										
										
										
											2009-02-22 17:53:14 +00:00
										 |  |  |     static int count; | 
					
						
							|  |  |  |     static char line[1024], prev[1024]; | 
					
						
							| 
									
										
										
										
											2010-09-24 16:18:10 +00:00
										 |  |  |     static int is_atty; | 
					
						
							| 
									
										
										
										
											2006-07-18 11:00:55 +00:00
										 |  |  |     AVClass* avc= ptr ? *(AVClass**)ptr : NULL; | 
					
						
							|  |  |  |     if(level>av_log_level) | 
					
						
							|  |  |  |         return; | 
					
						
							| 
									
										
										
										
											2010-05-19 22:51:38 +00:00
										 |  |  |     line[0]=0; | 
					
						
							| 
									
										
										
										
											2006-07-18 11:00:55 +00:00
										 |  |  | #undef fprintf
 | 
					
						
							|  |  |  |     if(print_prefix && avc) { | 
					
						
							| 
									
										
										
										
											2010-05-19 22:51:38 +00:00
										 |  |  |         if(avc->version >= (50<<16 | 15<<8 | 3) && avc->parent_log_context_offset){ | 
					
						
							|  |  |  |             AVClass** parent= *(AVClass***)(((uint8_t*)ptr) + avc->parent_log_context_offset); | 
					
						
							|  |  |  |             if(parent && *parent){ | 
					
						
							| 
									
										
										
										
											2010-06-25 04:36:17 +00:00
										 |  |  |                 snprintf(line, sizeof(line), "[%s @ %p] ", (*parent)->item_name(parent), parent); | 
					
						
							| 
									
										
										
										
											2010-05-19 22:51:38 +00:00
										 |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2010-06-25 04:36:17 +00:00
										 |  |  |         snprintf(line + strlen(line), sizeof(line) - strlen(line), "[%s @ %p] ", avc->item_name(ptr), ptr); | 
					
						
							| 
									
										
										
										
											2010-05-19 22:51:38 +00:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2006-07-18 11:00:55 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-22 17:53:14 +00:00
										 |  |  |     vsnprintf(line + strlen(line), sizeof(line) - strlen(line), fmt, vl); | 
					
						
							| 
									
										
										
										
											2006-07-18 11:00:55 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-22 17:53:14 +00:00
										 |  |  |     print_prefix= line[strlen(line)-1] == '\n'; | 
					
						
							| 
									
										
										
										
											2010-09-14 00:17:58 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | #if HAVE_ISATTY
 | 
					
						
							| 
									
										
										
										
											2010-09-24 16:18:10 +00:00
										 |  |  |     if(!is_atty) is_atty= isatty(2) ? 1 : -1; | 
					
						
							| 
									
										
										
										
											2010-09-14 00:17:58 +00:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-09-24 15:37:01 +00:00
										 |  |  |     if(print_prefix && (flags & AV_LOG_SKIP_REPEATED) && !strcmp(line, prev)){ | 
					
						
							| 
									
										
										
										
											2009-02-22 17:53:14 +00:00
										 |  |  |         count++; | 
					
						
							| 
									
										
										
										
											2010-09-24 16:18:10 +00:00
										 |  |  |         if(is_atty==1) | 
					
						
							| 
									
										
										
										
											2010-09-24 16:18:40 +00:00
										 |  |  |             fprintf(stderr, "    Last message repeated %d times\r", count); | 
					
						
							| 
									
										
										
										
											2009-02-22 17:53:14 +00:00
										 |  |  |         return; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     if(count>0){ | 
					
						
							|  |  |  |         fprintf(stderr, "    Last message repeated %d times\n", count); | 
					
						
							|  |  |  |         count=0; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     strcpy(prev, line); | 
					
						
							| 
									
										
										
										
											2011-03-25 00:20:07 +01:00
										 |  |  |     sanitize(line); | 
					
						
							|  |  |  |     colored_fputs(av_clip(level>>3, 0, 6), line); | 
					
						
							| 
									
										
										
										
											2006-07-18 11:00:55 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void (*av_log_callback)(void*, int, const char*, va_list) = av_log_default_callback; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void av_log(void* avcl, int level, const char *fmt, ...) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2010-05-08 20:41:20 +00:00
										 |  |  |     AVClass* avc= avcl ? *(AVClass**)avcl : NULL; | 
					
						
							| 
									
										
										
										
											2006-07-18 11:00:55 +00:00
										 |  |  |     va_list vl; | 
					
						
							|  |  |  |     va_start(vl, fmt); | 
					
						
							| 
									
										
										
										
											2010-05-08 20:41:20 +00:00
										 |  |  |     if(avc && avc->version >= (50<<16 | 15<<8 | 2) && avc->log_level_offset_offset && level>=AV_LOG_FATAL) | 
					
						
							|  |  |  |         level += *(int*)(((uint8_t*)avcl) + avc->log_level_offset_offset); | 
					
						
							| 
									
										
										
										
											2006-07-18 11:00:55 +00:00
										 |  |  |     av_vlog(avcl, level, fmt, vl); | 
					
						
							|  |  |  |     va_end(vl); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void av_vlog(void* avcl, int level, const char *fmt, va_list vl) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     av_log_callback(avcl, level, fmt, vl); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | int av_log_get_level(void) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     return av_log_level; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void av_log_set_level(int level) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     av_log_level = level; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-09-24 15:37:01 +00:00
										 |  |  | void av_log_set_flags(int arg) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     flags= arg; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-07-18 11:00:55 +00:00
										 |  |  | void av_log_set_callback(void (*callback)(void*, int, const char*, va_list)) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     av_log_callback = callback; | 
					
						
							|  |  |  | } |