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

midi

开发平台:

Unix_Linux

  1. /*
  2.  * Copyright (C) 2002-2003 the xine project
  3.  *
  4.  * This file is part of xine, a free video player.
  5.  *
  6.  * xine is free software; you can redistribute it and/or modify
  7.  * it under the terms of the GNU General Public License as published by
  8.  * the Free Software Foundation; either version 2 of the License, or
  9.  * (at your option) any later version.
  10.  *
  11.  * xine is distributed in the hope that it will be useful,
  12.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14.  * GNU General Public License for more details.
  15.  *
  16.  * You should have received a copy of the GNU General Public License
  17.  * along with this program; if not, write to the Free Software
  18.  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA
  19.  *
  20.  * $Id: fc73642ca2d3f9939ef1e233aa00b8ac64ac46d1 $
  21.  *
  22.  * a minimalistic implementation of rtsp protocol,
  23.  * *not* RFC 2326 compilant yet.
  24.  */
  25.  
  26. #ifndef HAVE_RTSP_H
  27. #define HAVE_RTSP_H
  28. /* some codes returned by rtsp_request_* functions */
  29. #define RTSP_STATUS_SET_PARAMETER  10
  30. #define RTSP_STATUS_OK            200
  31. typedef struct rtsp_s rtsp_t;
  32. typedef struct
  33. {
  34.     void *p_userdata;
  35.     int (*pf_connect)( void *p_userdata, char *p_server, int i_port );
  36.     int (*pf_disconnect)( void *p_userdata );
  37.     int (*pf_read)( void *p_userdata, uint8_t *p_buffer, int i_buffer );
  38.     int (*pf_read_line)( void *p_userdata, uint8_t *p_buffer, int i_buffer );
  39.     int (*pf_write)( void *p_userdata, uint8_t *p_buffer, int i_buffer );
  40.     rtsp_t *p_private;
  41. } rtsp_client_t;
  42. int rtsp_connect( rtsp_client_t *, const char *mrl, const char *user_agent );
  43. int rtsp_request_options( rtsp_client_t *, const char *what );
  44. int rtsp_request_describe( rtsp_client_t *, const char *what );
  45. int rtsp_request_setup( rtsp_client_t *, const char *what );
  46. int rtsp_request_setparameter( rtsp_client_t *, const char *what );
  47. int rtsp_request_play( rtsp_client_t *, const char *what );
  48. int rtsp_request_tearoff( rtsp_client_t *, const char *what );
  49. int rtsp_send_ok( rtsp_client_t * );
  50. int rtsp_read_data( rtsp_client_t *, uint8_t *buffer, unsigned int size );
  51. char* rtsp_search_answers( rtsp_client_t *, const char *tag );
  52. void rtsp_free_answers( rtsp_client_t * );
  53. void rtsp_add_to_payload( char **payload, const char *string );
  54. int rtsp_read( rtsp_client_t *, char *data, int len );
  55. void rtsp_close( rtsp_client_t * );
  56. void  rtsp_set_session( rtsp_client_t *, const char *id );
  57. char *rtsp_get_session( rtsp_client_t * );
  58. char *rtsp_get_mrl( rtsp_client_t * );
  59. /* int rtsp_peek_header( rtsp_client_t *, char *data ); */
  60. void rtsp_schedule_field( rtsp_client_t *, const char *string );
  61. void rtsp_unschedule_field( rtsp_client_t *, const char *string );
  62. void rtsp_unschedule_all( rtsp_client_t * );
  63. #endif