error.c
上传用户:riyaled888
上传日期:2009-03-27
资源大小:7338k
文件大小:2k
源码类别:

多媒体

开发平台:

MultiPlatform

  1. /*****************************************************************************
  2.  * error.c: error handling routine
  3.  *****************************************************************************
  4.  * Copyright (C) 2002-2004 VideoLAN
  5.  * $Id: error.c 8905 2004-10-04 13:34:42Z gbazin $
  6.  *
  7.  * Authors: Samuel Hocevar <sam@zoy.org>
  8.  *
  9.  * This program is free software; you can redistribute it and/or modify
  10.  * it under the terms of the GNU General Public License as published by
  11.  * the Free Software Foundation; either version 2 of the License, or
  12.  * (at your option) any later version.
  13.  *
  14.  * This program is distributed in the hope that it will be useful,
  15.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  17.  * GNU General Public License for more details.
  18.  *
  19.  * You should have received a copy of the GNU General Public License
  20.  * along with this program; if not, write to the Free Software
  21.  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
  22.  *****************************************************************************/
  23. /*****************************************************************************
  24.  * Preamble
  25.  *****************************************************************************/
  26. #include <vlc/vlc.h>
  27. /*****************************************************************************
  28.  * vlc_error: strerror() equivalent
  29.  *****************************************************************************
  30.  * This function returns a string describing the error code passed in the
  31.  * argument. A list of all errors can be found in include/vlc/vlc.h.
  32.  *****************************************************************************/
  33. char const * vlc_error ( int i_err )
  34. {
  35.     switch( i_err )
  36.     {
  37.         case VLC_SUCCESS:
  38.             return "no error";
  39.         case VLC_ENOMEM:
  40.             return "not enough memory";
  41.         case VLC_ETHREAD:
  42.             return "thread error";
  43.         case VLC_ETIMEOUT:
  44.             return "timeout";
  45.         case VLC_ENOMOD:
  46.             return "module not found";
  47.         case VLC_ENOOBJ:
  48.             return "object not found";
  49.         case VLC_EBADOBJ:
  50.             return "bad object type";
  51.         case VLC_ENOVAR:
  52.             return "variable not found";
  53.         case VLC_EBADVAR:
  54.             return "bad variable value";
  55.         case VLC_EEXIT:
  56.             return "program exited";
  57.         case VLC_EGENERIC:
  58.             return "generic error";
  59.         default:
  60.             return "unknown error";
  61.     }
  62. }