avutil.h
上传用户:kjfoods
上传日期:2020-07-06
资源大小:29949k
文件大小:2k
源码类别:

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * avutil.h: avutil helper functions
  3.  *****************************************************************************
  4.  * Copyright (C) 1999-2008 the VideoLAN team
  5.  * $Id: 48a5222b26eda3891569f84326f5cdc0a01623c3 $
  6.  *
  7.  * Authors: Laurent Aimar <fenrir@via.ecp.fr>
  8.  *          Gildas Bazin <gbazin@videolan.org>
  9.  *
  10.  * This program is free software; you can redistribute it and/or modify
  11.  * it under the terms of the GNU General Public License as published by
  12.  * the Free Software Foundation; either version 2 of the License, or
  13.  * (at your option) any later version.
  14.  *
  15.  * This program is distributed in the hope that it will be useful,
  16.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  17.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  18.  * GNU General Public License for more details.
  19.  *
  20.  * You should have received a copy of the GNU General Public License
  21.  * along with this program; if not, write to the Free Software
  22.  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  23.  *****************************************************************************/
  24. /*****************************************************************************
  25.  * Export libavutil messages to the VLC message system
  26.  *****************************************************************************/
  27. static inline void LibavutilCallback( void *p_opaque, int i_level,
  28.                         const char *psz_format, va_list va )
  29. {
  30.     AVCodecContext *p_avctx = (AVCodecContext *)p_opaque;
  31.     const AVClass *p_avc;
  32.     p_avc = p_avctx ? p_avctx->av_class : 0;
  33. #define cln p_avc->class_name
  34.     /* Make sure we can get p_this back */
  35.     if( !p_avctx || !p_avc || !cln ||
  36.         cln[0]!='A' || cln[1]!='V' || cln[2]!='C' || cln[3]!='o' ||
  37.         cln[4]!='d' || cln[5]!='e' || cln[6]!='c' )
  38.     {
  39.         if( i_level == AV_LOG_ERROR ) vfprintf( stderr, psz_format, va );
  40.         return;
  41.     }
  42. #undef cln
  43.     switch( i_level )
  44.     {
  45.     case AV_LOG_DEBUG:
  46.     case AV_LOG_INFO:
  47.         /* Print debug messages if they were requested */
  48.         if( !p_avctx->debug )
  49.             break;
  50.     case AV_LOG_ERROR:
  51.     case AV_LOG_QUIET:
  52.         vfprintf( stderr, psz_format, va );
  53.         break;
  54.     }
  55. }