log.c 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. /*
  2. * log functions
  3. * Copyright (c) 2003 Michel Bardiaux
  4. *
  5. * This file is part of FFmpeg.
  6. *
  7. * FFmpeg is free software; you can redistribute it and/or
  8. * modify it under the terms of the GNU Lesser General Public
  9. * License as published by the Free Software Foundation; either
  10. * version 2.1 of the License, or (at your option) any later version.
  11. *
  12. * FFmpeg is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  15. * Lesser General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU Lesser General Public
  18. * License along with FFmpeg; if not, write to the Free Software
  19. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  20. */
  21. /**
  22. * @file libavutil/log.c
  23. * logging functions
  24. */
  25. #include "avutil.h"
  26. #include "log.h"
  27. #if LIBAVUTIL_VERSION_MAJOR > 50
  28. static
  29. #endif
  30. int av_log_level = AV_LOG_INFO;
  31. void av_log_default_callback(void* ptr, int level, const char* fmt, va_list vl)
  32. {
  33. static int print_prefix=1;
  34. static int count;
  35. static char line[1024], prev[1024];
  36. AVClass* avc= ptr ? *(AVClass**)ptr : NULL;
  37. if(level>av_log_level)
  38. return;
  39. #undef fprintf
  40. if(print_prefix && avc) {
  41. snprintf(line, sizeof(line), "[%s @ %p]", avc->item_name(ptr), ptr);
  42. }else
  43. line[0]=0;
  44. vsnprintf(line + strlen(line), sizeof(line) - strlen(line), fmt, vl);
  45. print_prefix= line[strlen(line)-1] == '\n';
  46. if(print_prefix && !strcmp(line, prev)){
  47. count++;
  48. return;
  49. }
  50. if(count>0){
  51. fprintf(stderr, " Last message repeated %d times\n", count);
  52. count=0;
  53. }
  54. fputs(line, stderr);
  55. strcpy(prev, line);
  56. }
  57. static void (*av_log_callback)(void*, int, const char*, va_list) = av_log_default_callback;
  58. void av_log(void* avcl, int level, const char *fmt, ...)
  59. {
  60. va_list vl;
  61. va_start(vl, fmt);
  62. av_vlog(avcl, level, fmt, vl);
  63. va_end(vl);
  64. }
  65. void av_vlog(void* avcl, int level, const char *fmt, va_list vl)
  66. {
  67. av_log_callback(avcl, level, fmt, vl);
  68. }
  69. int av_log_get_level(void)
  70. {
  71. return av_log_level;
  72. }
  73. void av_log_set_level(int level)
  74. {
  75. av_log_level = level;
  76. }
  77. void av_log_set_callback(void (*callback)(void*, int, const char*, va_list))
  78. {
  79. av_log_callback = callback;
  80. }