• Home
  • Raw
  • Download

Lines Matching +full:- +full:- +full:log +full:- +full:level

18  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
129 * Return next AVOptions-enabled child or NULL
134 * Iterate over the AVClasses corresponding to potential AVOptions-enabled
139 * @return AVClass for the next AVOptions-enabled child or NULL if there are
162 #define AV_LOG_QUIET -8
184 * lead to problems. An example would be the use of '-vstrict -2'.
208 #define AV_LOG_MAX_OFFSET (AV_LOG_TRACE - AV_LOG_QUIET)
225 * Send the specified message to the log if the level is less than or equal
232 * pointer to an AVClass struct or NULL if general log.
233 * @param level The importance level of the message expressed using a @ref
235 * @param fmt The format string (printf-compatible) that specifies how
238 void av_log(void *avcl, int level, const char *fmt, ...) av_printf_format(3, 4);
241 * Send the specified message to the log once with the initial_level and then with
248 * pointer to an AVClass struct or NULL if general log.
249 * @param initial_level importance level of the message expressed using a @ref
251 * @param subsequent_level importance level of the message expressed using a @ref
253 * @param fmt The format string (printf-compatible) that specifies how
263 * Send the specified message to the log if the level is less than or equal
271 * @param level The importance level of the message expressed using a @ref
273 * @param fmt The format string (printf-compatible) that specifies how
277 void av_vlog(void *avcl, int level, const char *fmt, va_list vl);
280 * Get the current log level
284 * @return Current log level
289 * Set the log level
293 * @param level Logging level
295 void av_log_set_level(int level);
316 * @param level The importance level of the message expressed using a @ref
318 * @param fmt The format string (printf-compatible) that specifies how
322 void av_log_default_callback(void *avcl, int level, const char *fmt,
336 * Format a line of log the same way as the default callback.
342 void av_log_format_line(void *ptr, int level, const char *fmt, va_list vl,
346 * Format a line of log the same way as the default callback.
349 * @param line_size size of the buffer; at most line_size-1 characters will
357 * that the log message was truncated to fit the buffer.
359 int av_log_format_line2(void *ptr, int level, const char *fmt, va_list vl,
373 * Include the log severity in messages originating from codecs.