OLD | NEW |
1 /* | 1 /* |
2 * copyright (c) 2006 Michael Niedermayer <michaelni@gmx.at> | 2 * copyright (c) 2006 Michael Niedermayer <michaelni@gmx.at> |
3 * | 3 * |
4 * This file is part of FFmpeg. | 4 * This file is part of FFmpeg. |
5 * | 5 * |
6 * FFmpeg is free software; you can redistribute it and/or | 6 * FFmpeg is free software; you can redistribute it and/or |
7 * modify it under the terms of the GNU Lesser General Public | 7 * modify it under the terms of the GNU Lesser General Public |
8 * License as published by the Free Software Foundation; either | 8 * License as published by the Free Software Foundation; either |
9 * version 2.1 of the License, or (at your option) any later version. | 9 * version 2.1 of the License, or (at your option) any later version. |
10 * | 10 * |
(...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
107 void av_log(void*, int level, const char *fmt, ...); | 107 void av_log(void*, int level, const char *fmt, ...); |
108 #endif | 108 #endif |
109 | 109 |
110 void av_vlog(void*, int level, const char *fmt, va_list); | 110 void av_vlog(void*, int level, const char *fmt, va_list); |
111 int av_log_get_level(void); | 111 int av_log_get_level(void); |
112 void av_log_set_level(int); | 112 void av_log_set_level(int); |
113 void av_log_set_callback(void (*)(void*, int, const char*, va_list)); | 113 void av_log_set_callback(void (*)(void*, int, const char*, va_list)); |
114 void av_log_default_callback(void* ptr, int level, const char* fmt, va_list vl); | 114 void av_log_default_callback(void* ptr, int level, const char* fmt, va_list vl); |
115 | 115 |
116 #endif /* AVUTIL_LOG_H */ | 116 #endif /* AVUTIL_LOG_H */ |
OLD | NEW |