log.c 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  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. #include "libavutil/log.c"
  22. #include <string.h>
  23. static int call_log_format_line2(const char *fmt, char *buffer, int buffer_size, ...)
  24. {
  25. va_list args;
  26. int ret;
  27. int print_prefix=1;
  28. va_start(args, buffer_size);
  29. ret = av_log_format_line2(NULL, AV_LOG_INFO, fmt, args, buffer, buffer_size, &print_prefix);
  30. va_end(args);
  31. return ret;
  32. }
  33. int main(int argc, char **argv)
  34. {
  35. int i;
  36. av_log_set_level(AV_LOG_DEBUG);
  37. for (use_color=0; use_color<=256; use_color = 255*use_color+1) {
  38. av_log(NULL, AV_LOG_FATAL, "use_color: %d\n", use_color);
  39. for (i = AV_LOG_DEBUG; i>=AV_LOG_QUIET; i-=8) {
  40. av_log(NULL, i, " %d", i);
  41. av_log(NULL, AV_LOG_INFO, "e ");
  42. av_log(NULL, i + 256*123, "C%d", i);
  43. av_log(NULL, AV_LOG_INFO, "e");
  44. }
  45. av_log(NULL, AV_LOG_PANIC, "\n");
  46. }
  47. {
  48. int result;
  49. char buffer[4];
  50. result = call_log_format_line2("foo", NULL, 0);
  51. if(result != 3) {
  52. printf("Test NULL buffer failed.\n");
  53. return 1;
  54. }
  55. result = call_log_format_line2("foo", buffer, 2);
  56. if(result != 3 || strncmp(buffer, "f", 2)) {
  57. printf("Test buffer too small failed.\n");
  58. return 1;
  59. }
  60. result = call_log_format_line2("foo", buffer, 4);
  61. if(result != 3 || strncmp(buffer, "foo", 4)) {
  62. printf("Test buffer sufficiently big failed.\n");
  63. return 1;
  64. }
  65. }
  66. return 0;
  67. }