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

多媒体

开发平台:

MultiPlatform

  1. /*****************************************************************************
  2.  * decoder.h: header for vlc decoders
  3.  *****************************************************************************
  4.  * Copyright (C) 2002 VideoLAN
  5.  * $Id: decoder.h 8007 2004-06-22 19:29:19Z fenrir $
  6.  *
  7.  * This program is free software; you can redistribute it and/or modify
  8.  * it under the terms of the GNU General Public License as published by
  9.  * the Free Software Foundation; either version 2 of the License, or
  10.  * (at your option) any later version.
  11.  *
  12.  * This program is distributed in the hope that it will be useful,
  13.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  15.  * GNU General Public License for more details.
  16.  *
  17.  * You should have received a copy of the GNU General Public License
  18.  * along with this program; if not, write to the Free Software
  19.  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
  20.  *****************************************************************************/
  21. #ifndef _VLC_DECODER_H
  22. #define _VLC_DECODER_H 1
  23. # ifdef __cplusplus
  24. extern "C" {
  25. # endif
  26. /*****************************************************************************
  27.  * Required public headers
  28.  *****************************************************************************/
  29. #include <vlc/vlc.h>
  30. /*****************************************************************************
  31.  * Required internal headers
  32.  *****************************************************************************/
  33. #include "vlc_block.h"
  34. #include "vlc_video.h"
  35. #include "audio_output.h"
  36. #include "vlc_codec.h"
  37. # ifdef __cplusplus
  38. }
  39. # endif
  40. #endif /* <vlc/decoder.h> */