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

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * stream_output.h : stream output module
  3.  *****************************************************************************
  4.  * Copyright (C) 2002-2008 the VideoLAN team
  5.  * $Id: f74fe9fd95f4301799af07bf687eec97b9a6923d $
  6.  *
  7.  * Authors: Christophe Massiot <massiot@via.ecp.fr>
  8.  *          Laurent Aimar <fenrir@via.ecp.fr>
  9.  *          Eric Petit <titer@videolan.org>
  10.  *          Jean-Paul Saman <jpsaman #_at_# m2x.nl>
  11.  *          Rémi Denis-Courmont
  12.  *
  13.  * This program is free software; you can redistribute it and/or modify
  14.  * it under the terms of the GNU General Public License as published by
  15.  * the Free Software Foundation; either version 2 of the License, or
  16.  * (at your option) any later version.
  17.  *
  18.  * This program is distributed in the hope that it will be useful,
  19.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  20.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  21.  * GNU General Public License for more details.
  22.  *
  23.  * You should have received a copy of the GNU General Public License
  24.  * along with this program; if not, write to the Free Software
  25.  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  26.  *****************************************************************************/
  27. #ifndef VLC_SOUT_H_
  28. #define VLC_SOUT_H_
  29. /**
  30.  * file
  31.  * This file defines structures and functions for stream ouput in vlc
  32.  */
  33. #ifdef __cplusplus
  34. extern "C" {
  35. #endif
  36. #include <vlc_es.h>
  37. /** Stream output instance */
  38. struct sout_instance_t
  39. {
  40.     VLC_COMMON_MEMBERS
  41.     char *psz_sout;
  42.     char *psz_chain;
  43.     /* meta data (Read only) XXX it won't be set before the first packet received */
  44.     vlc_meta_t          *p_meta;
  45.     /** count of output that can't control the space */
  46.     int                 i_out_pace_nocontrol;
  47.     vlc_mutex_t         lock;
  48.     sout_stream_t       *p_stream;
  49.     /** Private */
  50.     sout_instance_sys_t *p_sys;
  51. };
  52. /** Stream output statistics */
  53. typedef enum
  54. {
  55.     SOUT_STATISTIC_DECODED_VIDEO,
  56.     SOUT_STATISTIC_DECODED_AUDIO,
  57.     SOUT_STATISTIC_DECODED_SUBTITLE,
  58.     /* Use them only if you do not goes through a access_out module */
  59.     SOUT_STATISTIC_SENT_PACKET,
  60.     SOUT_STATISTIC_SENT_BYTE,
  61. } sout_statistic_t;
  62. VLC_EXPORT( void, sout_UpdateStatistic, ( sout_instance_t *p_sout, sout_statistic_t, int ) );
  63. /****************************************************************************
  64.  * sout_stream_id_t: opaque (private for all sout_stream_t)
  65.  ****************************************************************************/
  66. typedef struct sout_stream_id_t  sout_stream_id_t;
  67. /** Stream output access_output */
  68. struct sout_access_out_t
  69. {
  70.     VLC_COMMON_MEMBERS
  71.     module_t                *p_module;
  72.     char                    *psz_access;
  73.     int                      i_writes;
  74.     /** Local counter reset each time it is transferred to stats */
  75.     int64_t                  i_sent_bytes;
  76.     char                    *psz_path;
  77.     sout_access_out_sys_t   *p_sys;
  78.     int                     (*pf_seek)( sout_access_out_t *, off_t );
  79.     ssize_t                 (*pf_read)( sout_access_out_t *, block_t * );
  80.     ssize_t                 (*pf_write)( sout_access_out_t *, block_t * );
  81.     int                     (*pf_control)( sout_access_out_t *, int, va_list );
  82.     config_chain_t          *p_cfg;
  83. };
  84. enum access_out_query_e
  85. {
  86.     ACCESS_OUT_CONTROLS_PACE, /* arg1=bool *, can fail (assume true) */
  87. };
  88. VLC_EXPORT( sout_access_out_t *,sout_AccessOutNew, ( vlc_object_t *, const char *psz_access, const char *psz_name ) );
  89. #define sout_AccessOutNew( obj, access, name ) 
  90.         sout_AccessOutNew( VLC_OBJECT(obj), access, name )
  91. VLC_EXPORT( void, sout_AccessOutDelete, ( sout_access_out_t * ) );
  92. VLC_EXPORT( int, sout_AccessOutSeek, ( sout_access_out_t *, off_t ) );
  93. VLC_EXPORT( ssize_t, sout_AccessOutRead, ( sout_access_out_t *, block_t * ) );
  94. VLC_EXPORT( ssize_t, sout_AccessOutWrite, ( sout_access_out_t *, block_t * ) );
  95. VLC_EXPORT( int, sout_AccessOutControl, ( sout_access_out_t *, int, ... ) );
  96. static inline bool sout_AccessOutCanControlPace( sout_access_out_t *p_ao )
  97. {
  98.     bool b;
  99.     if( sout_AccessOutControl( p_ao, ACCESS_OUT_CONTROLS_PACE, &b ) )
  100.         return true;
  101.     return b;
  102. }
  103. /** Muxer structure */
  104. struct  sout_mux_t
  105. {
  106.     VLC_COMMON_MEMBERS
  107.     module_t            *p_module;
  108.     sout_instance_t     *p_sout;
  109.     char                *psz_mux;
  110.     config_chain_t          *p_cfg;
  111.     sout_access_out_t   *p_access;
  112.     int                 (*pf_addstream)( sout_mux_t *, sout_input_t * );
  113.     int                 (*pf_delstream)( sout_mux_t *, sout_input_t * );
  114.     int                 (*pf_mux)      ( sout_mux_t * );
  115.     int                 (*pf_control)  ( sout_mux_t *, int, va_list );
  116.     /* here are all inputs accepted by muxer */
  117.     int                 i_nb_inputs;
  118.     sout_input_t        **pp_inputs;
  119.     /* mux private */
  120.     sout_mux_sys_t      *p_sys;
  121.     /* XXX private to stream_output.c */
  122.     /* if muxer doesn't support adding stream at any time then we first wait
  123.      *  for stream then we refuse all stream and start muxing */
  124.     bool  b_add_stream_any_time;
  125.     bool  b_waiting_stream;
  126.     /* we wait one second after first stream added */
  127.     mtime_t     i_add_stream_start;
  128. };
  129. enum sout_mux_query_e
  130. {
  131.     /* capabilities */
  132.     MUX_CAN_ADD_STREAM_WHILE_MUXING,    /* arg1= bool *,      res=cannot fail */
  133.     /* properties */
  134.     MUX_GET_ADD_STREAM_WAIT,            /* arg1= bool *,      res=cannot fail */
  135.     MUX_GET_MIME,                       /* arg1= char **            res=can fail    */
  136. };
  137. struct sout_input_t
  138. {
  139.     sout_instance_t *p_sout;
  140.     es_format_t     *p_fmt;
  141.     block_fifo_t    *p_fifo;
  142.     void            *p_sys;
  143. };
  144. VLC_EXPORT( sout_mux_t *,   sout_MuxNew,          ( sout_instance_t*, char *, sout_access_out_t * ) );
  145. VLC_EXPORT( sout_input_t *, sout_MuxAddStream,    ( sout_mux_t *, es_format_t * ) );
  146. VLC_EXPORT( void,           sout_MuxDeleteStream, ( sout_mux_t *, sout_input_t * ) );
  147. VLC_EXPORT( void,           sout_MuxDelete,       ( sout_mux_t * ) );
  148. VLC_EXPORT( void,           sout_MuxSendBuffer, ( sout_mux_t *, sout_input_t  *, block_t * ) );
  149. static inline int sout_MuxControl( sout_mux_t *p_mux, int i_query, ... )
  150. {
  151.     va_list args;
  152.     int     i_result;
  153.     va_start( args, i_query );
  154.     i_result = p_mux->pf_control( p_mux, i_query, args );
  155.     va_end( args );
  156.     return i_result;
  157. }
  158. /****************************************************************************
  159.  * sout_stream:
  160.  ****************************************************************************/
  161. struct sout_stream_t
  162. {
  163.     VLC_COMMON_MEMBERS
  164.     module_t          *p_module;
  165.     sout_instance_t   *p_sout;
  166.     char              *psz_name;
  167.     config_chain_t        *p_cfg;
  168.     char              *psz_next;
  169.     /* Subpicture unit */
  170.     spu_t             *p_spu;
  171.     /* add, remove a stream */
  172.     sout_stream_id_t *(*pf_add)( sout_stream_t *, es_format_t * );
  173.     int               (*pf_del)( sout_stream_t *, sout_stream_id_t * );
  174.     /* manage a packet */
  175.     int               (*pf_send)( sout_stream_t *, sout_stream_id_t *, block_t* );
  176.     /* private */
  177.     sout_stream_sys_t *p_sys;
  178. };
  179. VLC_EXPORT( sout_stream_t *, sout_StreamNew, ( sout_instance_t *, char *psz_chain ) );
  180. VLC_EXPORT( void,            sout_StreamDelete, ( sout_stream_t * ) );
  181. static inline sout_stream_id_t *sout_StreamIdAdd( sout_stream_t *s, es_format_t *fmt )
  182. {
  183.     return s->pf_add( s, fmt );
  184. }
  185. static inline int sout_StreamIdDel( sout_stream_t *s, sout_stream_id_t *id )
  186. {
  187.     return s->pf_del( s, id );
  188. }
  189. static inline int sout_StreamIdSend( sout_stream_t *s, sout_stream_id_t *id, block_t *b )
  190. {
  191.     return s->pf_send( s, id, b );
  192. }
  193. /****************************************************************************
  194.  * Encoder
  195.  ****************************************************************************/
  196. VLC_EXPORT( encoder_t *, sout_EncoderCreate, ( vlc_object_t *obj ) );
  197. #define sout_EncoderCreate(o) sout_EncoderCreate(VLC_OBJECT(o))
  198. /****************************************************************************
  199.  * Announce handler
  200.  ****************************************************************************/
  201. VLC_EXPORT(session_descriptor_t*,sout_AnnounceRegisterSDP, ( vlc_object_t *, const char *, const char *, announce_method_t* ) );
  202. VLC_EXPORT( int,                sout_AnnounceUnRegister, (vlc_object_t *,session_descriptor_t* ) );
  203. #define sout_AnnounceRegisterSDP(o, sdp, addr, m) 
  204.         sout_AnnounceRegisterSDP(VLC_OBJECT (o), sdp, addr, m)
  205. #define sout_AnnounceUnRegister(o, a) 
  206.         sout_AnnounceUnRegister(VLC_OBJECT (o), a)
  207. VLC_EXPORT(announce_method_t*,   sout_SAPMethod, (void) );
  208. VLC_EXPORT(void,                 sout_MethodRelease, (announce_method_t *) );
  209. /** SDP */
  210. VLC_EXPORT( char *, vlc_sdp_Start, ( vlc_object_t *obj, const char *cfgpref, const struct sockaddr *src, size_t srclen, const struct sockaddr *addr, size_t addrlen ) );
  211. VLC_EXPORT( char *, sdp_AddMedia, (char **sdp, const char *type, const char *protocol, int dport, unsigned pt, bool bw_indep, unsigned bw, const char *ptname, unsigned clockrate, unsigned channels, const char *fmtp) );
  212. VLC_EXPORT( char *, sdp_AddAttribute, (char **sdp, const char *name, const char *fmt, ...) LIBVLC_FORMAT( 3, 4 ) );
  213. #ifdef __cplusplus
  214. }
  215. #endif
  216. #endif