mlt 0.7.6
Defines | Functions

mlt_log.h File Reference

logging functions More...

#include <stdarg.h>

Go to the source code of this file.

Defines

#define MLT_LOG_DEBUG   48
 stuff which is only useful for MLT developers
#define mlt_log_debug(service, format, args...)   mlt_log((service), MLT_LOG_DEBUG, (format), ## args)
#define MLT_LOG_ERROR   16
 something went wrong and cannot losslessly be recovered but not all future data is affected
#define mlt_log_error(service, format, args...)   mlt_log((service), MLT_LOG_ERROR, (format), ## args)
#define MLT_LOG_FATAL   8
 something went wrong and recovery is not possible like no header in a format which depends on it or a combination of parameters which are not allowed
#define mlt_log_fatal(service, format, args...)   mlt_log((service), MLT_LOG_FATAL, (format), ## args)
#define mlt_log_info(service, format, args...)   mlt_log((service), MLT_LOG_INFO, (format), ## args)
#define MLT_LOG_INFO   32
#define mlt_log_panic(service, format, args...)   mlt_log((service), MLT_LOG_PANIC, (format), ## args)
#define MLT_LOG_PANIC   0
 something went really wrong and we will crash now
#define MLT_LOG_QUIET   -8
#define mlt_log_verbose(service, format, args...)   mlt_log((service), MLT_LOG_VERBOSE, (format), ## args)
#define MLT_LOG_VERBOSE   40
#define mlt_log_warning(service, format, args...)   mlt_log((service), MLT_LOG_WARNING, (format), ## args)
#define MLT_LOG_WARNING   24
 something somehow does not look correct / something which may or may not lead to some problems

Functions

void mlt_log (void *service, int level, const char *fmt,...)
 Send the specified message to the log if the level is less than or equal to the current logging level.
int mlt_log_get_level (void)
void mlt_log_set_callback (void(*)(void *, int, const char *, va_list))
void mlt_log_set_level (int)
void mlt_vlog (void *service, int level, const char *fmt, va_list)

Detailed Description

logging functions

copyright (c) 2006 Michael Niedermayer <michaelni@gmx.at>

This file was a part of FFmpeg.

FFmpeg is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version.

FFmpeg is distributed in the hope that it will be useful, 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 License along with FFmpeg; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA


Define Documentation

#define MLT_LOG_DEBUG   48

stuff which is only useful for MLT developers

#define mlt_log_debug (   service,
  format,
  args... 
)    mlt_log((service), MLT_LOG_DEBUG, (format), ## args)
#define MLT_LOG_ERROR   16

something went wrong and cannot losslessly be recovered but not all future data is affected

#define mlt_log_error (   service,
  format,
  args... 
)    mlt_log((service), MLT_LOG_ERROR, (format), ## args)
#define MLT_LOG_FATAL   8

something went wrong and recovery is not possible like no header in a format which depends on it or a combination of parameters which are not allowed

#define mlt_log_fatal (   service,
  format,
  args... 
)    mlt_log((service), MLT_LOG_FATAL, (format), ## args)
#define mlt_log_info (   service,
  format,
  args... 
)    mlt_log((service), MLT_LOG_INFO, (format), ## args)
#define MLT_LOG_INFO   32
#define mlt_log_panic (   service,
  format,
  args... 
)    mlt_log((service), MLT_LOG_PANIC, (format), ## args)
#define MLT_LOG_PANIC   0

something went really wrong and we will crash now

#define MLT_LOG_QUIET   -8
#define mlt_log_verbose (   service,
  format,
  args... 
)    mlt_log((service), MLT_LOG_VERBOSE, (format), ## args)
#define MLT_LOG_VERBOSE   40
#define mlt_log_warning (   service,
  format,
  args... 
)    mlt_log((service), MLT_LOG_WARNING, (format), ## args)
#define MLT_LOG_WARNING   24

something somehow does not look correct / something which may or may not lead to some problems


Function Documentation

void mlt_log ( void *  service,
int  level,
const char *  fmt,
  ... 
)

Send the specified message to the log if the level is less than or equal to the current logging level.

By default, all logging messages are sent to stderr. This behavior can be altered by setting a different mlt_vlog callback function.

Parameters:
serviceAn optional pointer to a mlt_service_s.
levelThe importance level of the message, lower values signifying higher importance.
fmtThe format string (printf-compatible) that specifies how subsequent arguments are converted to output.
See also:
mlt_vlog
int mlt_log_get_level ( void  )
void mlt_log_set_callback ( void(*)(void *, int, const char *, va_list)  )
void mlt_log_set_level ( int  )
void mlt_vlog ( void *  service,
int  level,
const char *  fmt,
va_list   
)
TWiki Appliance - Powered by TurnKey Linux