player_sdp.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. 2000, 2001.  All Rights Reserved.
  17.  * 
  18.  * Contributor(s): 
  19.  *              Bill May        wmay@cisco.com
  20.  */
  21. /*
  22.  * player_sdp.h - provide sdp translation routines we need
  23.  */
  24. #ifndef __PLAYER_SPD_H__
  25. #define __PLAYER_SPD_H__ 1
  26. #ifdef __cplusplus
  27. extern "C" {
  28. #endif
  29. void do_relative_url_to_absolute (char **control_string,
  30.   const char *base_url,
  31.   int dontfree);
  32.   
  33. void convert_relative_urls_to_absolute(session_desc_t *sdp,
  34.        const char *base_url);
  35. void create_rtsp_transport_from_sdp(session_desc_t *sdp,
  36.     media_desc_t *media,
  37.     in_port_t port,
  38.     char *buffer,
  39.     uint32_t buflen);
  40. connect_desc_t *get_connect_desc_from_media(media_desc_t *media);
  41. range_desc_t *get_range_from_media(media_desc_t *media);
  42. range_desc_t *get_range_from_sdp(session_desc_t *sptr);
  43.   bandwidth_t *find_bandwidth_from_media(media_desc_t *media,
  44.  bandwidth_modifier_t bw_type,
  45.  const char *user_type);
  46.   int find_rtcp_bandwidth_from_media(media_desc_t *media, double *bw);
  47. #ifdef __cplusplus
  48. }
  49. #endif
  50. #endif // #ifndef __PLAYER_SDP_H__