codec_plugin_private.h
上传用户:sun1608
上传日期:2007-02-02
资源大小:6116k
文件大小:2k
源码类别:

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. /*
  2.  * The contents of this file are subject to the Mozilla Public
  3.  * License Version 1.1 (the "License"); you may not use this file
  4.  * except in compliance with the License. You may obtain a copy of
  5.  * the License at http://www.mozilla.org/MPL/
  6.  * 
  7.  * Software distributed under the License is distributed on an "AS
  8.  * IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
  9.  * implied. See the License for the specific language governing
  10.  * rights and limitations under the License.
  11.  * 
  12.  * The Original Code is MPEG4IP.
  13.  * 
  14.  * The Initial Developer of the Original Code is Cisco Systems Inc.
  15.  * Portions created by Cisco Systems Inc. are
  16.  * Copyright (C) Cisco Systems Inc. 2002.  All Rights Reserved.
  17.  * 
  18.  * Contributor(s): 
  19.  *              Bill May        wmay@cisco.com
  20.  */
  21. #ifndef __CODEC_PLUGIN_PRIVATE_H__
  22. #define __CODEC_PLUGIN_PRIVATE_H__
  23. #include "codec_plugin.h"
  24. void initialize_plugins(void);
  25. void close_plugins(void);
  26. codec_plugin_t *check_for_audio_codec(const char *compressor,
  27.       format_list_t *fptr,
  28.       int audio_type,
  29.       int profile,
  30.       const uint8_t *userdata,
  31.       uint32_t userdata_size);
  32. codec_plugin_t *check_for_video_codec(const char *compressor,
  33.       format_list_t *fptr,
  34.       int type,
  35.       int profile, 
  36.       const uint8_t *userdata,
  37.       uint32_t userdata_size);
  38. class CPlayerSession;
  39. int audio_codec_check_for_raw_file (CPlayerSession *psptr,
  40.     const char *name);
  41. int video_codec_check_for_raw_file (CPlayerSession *psptr,
  42.     const char *name);
  43. #endif