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

多媒体

开发平台:

MultiPlatform

  1. /*****************************************************************************
  2.  * stream_output.h : stream output module
  3.  *****************************************************************************
  4.  * Copyright (C) 2002 VideoLAN
  5.  * $Id: stream_output.h 9201 2004-11-06 16:51:46Z yoann $
  6.  *
  7.  * Authors: Christophe Massiot <massiot@via.ecp.fr>
  8.  *          Laurent Aimar <fenrir@via.ecp.fr>
  9.  *          Eric Petit <titer@videolan.org>
  10.  *
  11.  * This program is free software; you can redistribute it and/or modify
  12.  * it under the terms of the GNU General Public License as published by
  13.  * the Free Software Foundation; either version 2 of the License, or
  14.  * (at your option) any later version.
  15.  *
  16.  * This program is distributed in the hope that it will be useful,
  17.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  18.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  19.  * GNU General Public License for more details.
  20.  *
  21.  * You should have received a copy of the GNU General Public License
  22.  * along with this program; if not, write to the Free Software
  23.  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
  24.  *****************************************************************************/
  25. /*****************************************************************************
  26.  * sout_instance_t: stream output thread descriptor
  27.  *****************************************************************************/
  28. #include "vlc_es.h"
  29. /****************************************************************************
  30.  * sout_instance_t: p_sout
  31.  ****************************************************************************/
  32. struct sout_instance_t
  33. {
  34.     VLC_COMMON_MEMBERS
  35.     char *psz_sout;
  36.     char *psz_chain;
  37.     /* meta data (Read only) XXX it won't be set before the first packet received */
  38.     vlc_meta_t          *p_meta;
  39.     int                 i_out_pace_nocontrol;   /* count of output that can't control the space */
  40.     vlc_mutex_t         lock;
  41.     sout_stream_t       *p_stream;
  42.     /* sout private */
  43.     sout_instance_sys_t *p_sys;
  44. };
  45. /****************************************************************************
  46.  * sout_cfg_t:
  47.  ****************************************************************************/
  48. struct sout_cfg_t
  49. {
  50.     sout_cfg_t  *p_next;
  51.     char        *psz_name;
  52.     char        *psz_value;
  53. };
  54. #define sout_CfgParse( a, b, c, d ) __sout_CfgParse( VLC_OBJECT(a), b, c, d )
  55. VLC_EXPORT( void,   __sout_CfgParse, ( vlc_object_t *, char *psz_prefix, const char **ppsz_options, sout_cfg_t * ) );
  56. VLC_EXPORT( char *, sout_CfgCreate, ( char **, sout_cfg_t **, char * ) );
  57. /****************************************************************************
  58.  * sout_stream_id_t: opaque (private for all sout_stream_t)
  59.  ****************************************************************************/
  60. typedef struct sout_stream_id_t  sout_stream_id_t;
  61. /****************************************************************************
  62.  * sout_packetizer_input_t: p_sout <-> p_packetizer
  63.  ****************************************************************************/
  64. struct sout_packetizer_input_t
  65. {
  66.     sout_instance_t     *p_sout;
  67.     es_format_t         *p_fmt;
  68.     sout_stream_id_t    *id;
  69. };
  70. #define sout_NewInstance(a,b) __sout_NewInstance(VLC_OBJECT(a),b)
  71. VLC_EXPORT( sout_instance_t *,  __sout_NewInstance,  ( vlc_object_t *, char * ) );
  72. VLC_EXPORT( void,               sout_DeleteInstance, ( sout_instance_t * ) );
  73. VLC_EXPORT( sout_packetizer_input_t *, sout_InputNew,( sout_instance_t *, es_format_t * ) );
  74. VLC_EXPORT( int,                sout_InputDelete,      ( sout_packetizer_input_t * ) );
  75. VLC_EXPORT( int,                sout_InputSendBuffer,  ( sout_packetizer_input_t *, block_t* ) );
  76. /****************************************************************************
  77.  * sout_access_out_t:
  78.  ****************************************************************************/
  79. struct sout_access_out_t
  80. {
  81.     VLC_COMMON_MEMBERS
  82.     module_t                *p_module;
  83.     sout_instance_t         *p_sout;
  84.     char                    *psz_access;
  85.     sout_cfg_t              *p_cfg;
  86.     char                    *psz_name;
  87.     sout_access_out_sys_t   *p_sys;
  88.     int                     (*pf_seek)( sout_access_out_t *, off_t );
  89.     int                     (*pf_read)( sout_access_out_t *, block_t * );
  90.     int                     (*pf_write)( sout_access_out_t *, block_t * );
  91. };
  92. VLC_EXPORT( sout_access_out_t *,sout_AccessOutNew, ( sout_instance_t *, char *psz_access, char *psz_name ) );
  93. VLC_EXPORT( void,               sout_AccessOutDelete, ( sout_access_out_t * ) );
  94. VLC_EXPORT( int,                sout_AccessOutSeek,   ( sout_access_out_t *, off_t ) );
  95. VLC_EXPORT( int,                sout_AccessOutRead,   ( sout_access_out_t *, block_t * ) );
  96. VLC_EXPORT( int,                sout_AccessOutWrite,  ( sout_access_out_t *, block_t * ) );
  97. /****************************************************************************
  98.  * mux:
  99.  ****************************************************************************/
  100. struct  sout_mux_t
  101. {
  102.     VLC_COMMON_MEMBERS
  103.     module_t            *p_module;
  104.     sout_instance_t     *p_sout;
  105.     char                *psz_mux;
  106.     sout_cfg_t          *p_cfg;
  107.     sout_access_out_t   *p_access;
  108.     int                 (*pf_addstream)( sout_mux_t *, sout_input_t * );
  109.     int                 (*pf_delstream)( sout_mux_t *, sout_input_t * );
  110.     int                 (*pf_mux)      ( sout_mux_t * );
  111.     int                 (*pf_control)  ( sout_mux_t *, int, va_list );
  112.     /* here are all inputs accepted by muxer */
  113.     int                 i_nb_inputs;
  114.     sout_input_t        **pp_inputs;
  115.     /* mux private */
  116.     sout_mux_sys_t      *p_sys;
  117.     /* XXX private to stream_output.c */
  118.     /* if muxer doesn't support adding stream at any time then we first wait
  119.      *  for stream then we refuse all stream and start muxing */
  120.     vlc_bool_t  b_add_stream_any_time;
  121.     vlc_bool_t  b_waiting_stream;
  122.     /* we wait one second after first stream added */
  123.     mtime_t     i_add_stream_start;
  124. };
  125. enum sout_mux_query_e
  126. {
  127.     /* capabilities */
  128.     MUX_CAN_ADD_STREAM_WHILE_MUXING,    /* arg1= vlc_bool_t *,      res=cannot fail */
  129.     /* properties */
  130.     MUX_GET_ADD_STREAM_WAIT,            /* arg1= vlc_bool_t *,      res=cannot fail */
  131.     MUX_GET_MIME,                       /* arg1= char **            res=can fail    */
  132. };
  133. struct sout_input_t
  134. {
  135.     sout_instance_t *p_sout;
  136.     es_format_t     *p_fmt;
  137.     block_fifo_t    *p_fifo;
  138.     void            *p_sys;
  139. };
  140. VLC_EXPORT( sout_mux_t *,   sout_MuxNew,          ( sout_instance_t*, char *, sout_access_out_t * ) );
  141. VLC_EXPORT( sout_input_t *, sout_MuxAddStream,    ( sout_mux_t *, es_format_t * ) );
  142. VLC_EXPORT( void,           sout_MuxDeleteStream, ( sout_mux_t *, sout_input_t * ) );
  143. VLC_EXPORT( void,           sout_MuxDelete,       ( sout_mux_t * ) );
  144. VLC_EXPORT( void,           sout_MuxSendBuffer, ( sout_mux_t *, sout_input_t  *, block_t * ) );
  145. static inline int sout_MuxControl( sout_mux_t *p_mux, int i_query, ... )
  146. {
  147.     va_list args;
  148.     int     i_result;
  149.     va_start( args, i_query );
  150.     i_result = p_mux->pf_control( p_mux, i_query, args );
  151.     va_end( args );
  152.     return i_result;
  153. }
  154. /****************************************************************************
  155.  * sout_stream:
  156.  ****************************************************************************/
  157. struct sout_stream_t
  158. {
  159.     VLC_COMMON_MEMBERS
  160.     module_t          *p_module;
  161.     sout_instance_t   *p_sout;
  162.     char              *psz_name;
  163.     sout_cfg_t        *p_cfg;
  164.     char              *psz_next;
  165.     /* add, remove a stream */
  166.     sout_stream_id_t *(*pf_add)( sout_stream_t *, es_format_t * );
  167.     int               (*pf_del)( sout_stream_t *, sout_stream_id_t * );
  168.     /* manage a packet */
  169.     int               (*pf_send)( sout_stream_t *, sout_stream_id_t *, block_t* );
  170.     /* private */
  171.     sout_stream_sys_t *p_sys;
  172. };
  173. VLC_EXPORT( sout_stream_t *, sout_StreamNew, ( sout_instance_t *, char *psz_chain ) );
  174. VLC_EXPORT( void,            sout_StreamDelete, ( sout_stream_t * ) );
  175. static inline sout_stream_id_t *sout_StreamIdAdd( sout_stream_t *s, es_format_t *fmt )
  176. {
  177.     return s->pf_add( s, fmt );
  178. }
  179. static inline int sout_StreamIdDel( sout_stream_t *s, sout_stream_id_t *id )
  180. {
  181.     return s->pf_del( s, id );
  182. }
  183. static inline int sout_StreamIdSend( sout_stream_t *s, sout_stream_id_t *id, block_t *b )
  184. {
  185.     return s->pf_send( s, id, b );
  186. }
  187. /****************************************************************************
  188.  * Announce handler mess
  189.  ****************************************************************************/
  190. struct sap_session_t;
  191. struct session_descriptor_t
  192. {
  193.     char *psz_name;
  194.     char *psz_uri;
  195.     int i_port;
  196.     int i_ttl;
  197.     int i_payload;   /* SAP Payload type */
  198.     char *psz_group;
  199.     sap_session_t *p_sap; /* If we have a sap session, remember it */
  200.     char *psz_sdp;
  201. };
  202. #define METHOD_TYPE_SAP 1
  203. #define METHOD_TYPE_SLP 2
  204. struct announce_method_t
  205. {
  206.     int i_type;
  207.     /* For SAP */
  208.     int i_ip_version;
  209.     char *psz_ipv6_scope;
  210.     char *psz_address; /* If we use a custom address */
  211. };
  212. /* SAP Specific structures */
  213. /* 100ms */
  214. #define SAP_IDLE ((mtime_t)(0.100*CLOCK_FREQ))
  215. #define SAP_MAX_BUFFER 65534
  216. #define MIN_INTERVAL 2
  217. #define MAX_INTERVAL 300
  218. /* A SAP announce address. For each of these, we run the
  219.  * control flow algorithm */
  220. struct sap_address_t
  221. {
  222.     char *psz_address;
  223.     int i_ip_version;
  224.     int i_port;
  225.     int i_rfd; /* Read socket */
  226.     int i_wfd; /* Write socket */
  227.     /* Used for flow control */
  228.     mtime_t t1;
  229.     vlc_bool_t b_enabled;
  230.     vlc_bool_t b_ready;
  231.     int i_interval;
  232.     int i_buff;
  233.     int i_limit;
  234. };
  235. /* A SAP session descriptor, enqueued in the SAP handler queue */
  236. struct sap_session_t
  237. {
  238.     char          *psz_sdp;
  239.     char          *psz_data;
  240.     int            i_length;
  241.     sap_address_t *p_address;
  242.     /* Last and next send */
  243.     mtime_t        i_last;
  244.     mtime_t        i_next;
  245. };
  246. /* The SAP handler, running in a separate thread */
  247. struct sap_handler_t
  248. {
  249.     VLC_COMMON_MEMBERS /* needed to create a thread */
  250.     sap_session_t **pp_sessions;
  251.     sap_address_t **pp_addresses;
  252.     vlc_bool_t b_control;
  253.     int i_sessions;
  254.     int i_addresses;
  255.     int i_current_session;
  256.     int (*pf_add)  ( sap_handler_t*, session_descriptor_t *,announce_method_t*);
  257.     int (*pf_del)  ( sap_handler_t*, session_descriptor_t *);
  258. };
  259. /* The main announce handler object */
  260. struct announce_handler_t
  261. {
  262.     VLC_COMMON_MEMBERS
  263.     sap_handler_t *p_sap;
  264. };
  265. /* End */
  266. static inline sout_cfg_t *sout_cfg_find( sout_cfg_t *p_cfg, char *psz_name )
  267. {
  268.     while( p_cfg && strcmp( p_cfg->psz_name, psz_name ) )
  269.     {
  270.         p_cfg = p_cfg->p_next;
  271.     }
  272.     return p_cfg;
  273. }
  274. static inline char *sout_cfg_find_value( sout_cfg_t *p_cfg, char *psz_name )
  275. {
  276.     while( p_cfg && strcmp( p_cfg->psz_name, psz_name ) )
  277.     {
  278.         p_cfg = p_cfg->p_next;
  279.     }
  280.     if( p_cfg && p_cfg->psz_value )
  281.     {
  282.         return( p_cfg->psz_value );
  283.     }
  284.     return NULL;
  285. }
  286. /* Announce system */
  287. VLC_EXPORT( int,                sout_AnnounceRegister, (sout_instance_t *,session_descriptor_t*, announce_method_t* ) );
  288. VLC_EXPORT(session_descriptor_t*,sout_AnnounceRegisterSDP, (sout_instance_t *,char *, announce_method_t* ) );
  289. VLC_EXPORT( int,                sout_AnnounceUnRegister, (sout_instance_t *,session_descriptor_t* ) );
  290. VLC_EXPORT(session_descriptor_t*,sout_AnnounceSessionCreate, () );
  291. VLC_EXPORT(void,                 sout_AnnounceSessionDestroy, (session_descriptor_t *) );
  292. VLC_EXPORT(announce_method_t*,   sout_AnnounceMethodCreate, (int) );
  293. #define announce_HandlerCreate(a) __announce_HandlerCreate(VLC_OBJECT(a))
  294. announce_handler_t*  __announce_HandlerCreate( vlc_object_t *);
  295. /* Private functions for the announce handler */
  296. int announce_HandlerDestroy( announce_handler_t * );
  297. int announce_Register( announce_handler_t *p_announce,
  298.                 session_descriptor_t *p_session,
  299.                 announce_method_t *p_method );
  300. int announce_UnRegister( announce_handler_t *p_announce,
  301.                 session_descriptor_t *p_session );
  302. sap_handler_t *announce_SAPHandlerCreate( announce_handler_t *p_announce );
  303. void announce_SAPHandlerDestroy( sap_handler_t *p_sap );