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

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * vlc_vlm.h: VLM core structures
  3.  *****************************************************************************
  4.  * Copyright (C) 2000, 2001 the VideoLAN team
  5.  * $Id: 0f16f4d6aa3d386ba98a7f59bdfb0c7383884df1 $
  6.  *
  7.  * Authors: Simon Latapie <garf@videolan.org>
  8.  *          Laurent Aimar <fenrir@videolan.org>
  9.  *
  10.  * This program is free software; you can redistribute it and/or modify
  11.  * it under the terms of the GNU General Public License as published by
  12.  * the Free Software Foundation; either version 2 of the License, or
  13.  * (at your option) any later version.
  14.  *
  15.  * This program is distributed in the hope that it will be useful,
  16.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  17.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  18.  * GNU General Public License for more details.
  19.  *
  20.  * You should have received a copy of the GNU General Public License
  21.  * along with this program; if not, write to the Free Software
  22.  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  23.  *****************************************************************************/
  24. #ifndef VLC_VLM_H
  25. #define VLC_VLM_H 1
  26. /**
  27.  * file
  28.  * This file defines VLM core functions and structures in vlc
  29.  */
  30. #include <vlc_input.h>
  31. /**
  32.  * defgroup server VLM
  33.  * VLM is the server core in vlc that allows streaming of multiple media streams
  34.  * at the same time. It provides broadcast, schedule and video on demand features
  35.  * for streaming using several streaming and network protocols.
  36.  * @{
  37.  */
  38. /** VLM media */
  39. typedef struct
  40. {
  41.     int64_t     id;     /*< numeric id for vlm_media_t item */
  42.     bool  b_enabled;    /*< vlm_media_t is enabled */
  43.     char *psz_name;     /*< descriptive name of vlm_media_t item */
  44.     int  i_input;       /*< number of input options */
  45.     char **ppsz_input;  /*< array of input options */
  46.     int  i_option;      /*< number of output options */
  47.     char **ppsz_option; /*< array of output options */
  48.     char *psz_output;   /*< */
  49.     bool b_vod;         /*< vlm_media_t is of type VOD */
  50.     struct
  51.     {
  52.         bool b_loop;    /*< this vlc_media_t broadcast item should loop */
  53.     } broadcast;        /*< Broadcast specific information */
  54.     struct
  55.     {
  56.         char *psz_mux;  /*< name of muxer to use */
  57.     } vod;              /*< VOD specific information */
  58. } vlm_media_t;
  59. /** VLM media instance */
  60. typedef struct
  61. {
  62.     char *psz_name;         /*< vlm media instance descriptive name */
  63.     int64_t     i_time;     /*< vlm media instance vlm media current time */
  64.     int64_t     i_length;   /*< vlm media instance vlm media item length */
  65.     double      d_position; /*< vlm media instance position in stream */
  66.     bool        b_paused;   /*< vlm media instance is paused */
  67.     int         i_rate;     // normal is INPUT_RATE_DEFAULT
  68. } vlm_media_instance_t;
  69. #if 0
  70. typedef struct
  71. {
  72. } vlm_schedule_t
  73. #endif
  74. /** VLM events
  75.  * You can catch vlm event by adding a callback on the variable "intf-event"
  76.  * of the VLM object.
  77.  * This variable is an address that will hold a vlm_event_t* value.
  78.  */
  79. enum vlm_event_type_e
  80. {
  81.     /* */
  82.     VLM_EVENT_MEDIA_ADDED   = 0x100,
  83.     VLM_EVENT_MEDIA_REMOVED,
  84.     VLM_EVENT_MEDIA_CHANGED,
  85.     /* */
  86.     VLM_EVENT_MEDIA_INSTANCE_STARTED    = 0x200,
  87.     VLM_EVENT_MEDIA_INSTANCE_STOPPED,
  88. };
  89. typedef struct
  90. {
  91.     int         i_type;     /* a vlm_event_type_e value */
  92.     int64_t     id;         /* Media ID */
  93.     const char *psz_name;   /* Media name */
  94. } vlm_event_t;
  95. /** VLM control query */
  96. enum vlm_query_e
  97. {
  98.     /* --- Media control */
  99.     /* Get all medias */
  100.     VLM_GET_MEDIAS,                     /* arg1=vlm_media_t ***, int *pi_media      */
  101.     /* Delete all medias */
  102.     VLM_CLEAR_MEDIAS,                   /* no arg */
  103.     /* Add a new media */
  104.     VLM_ADD_MEDIA,                      /* arg1=vlm_media_t* arg2=int64_t *p_id         res=can fail */
  105.     /* Delete an existing media */
  106.     VLM_DEL_MEDIA,                      /* arg1=int64_t id */
  107.     /* Change properties of an existing media (all fields but id and b_vod) */
  108.     VLM_CHANGE_MEDIA,                   /* arg1=vlm_media_t*                            res=can fail */
  109.     /* Get 1 media by it's ID */
  110.     VLM_GET_MEDIA,                      /* arg1=int64_t id arg2=vlm_media_t **  */
  111.     /* Get media ID from its name */
  112.     VLM_GET_MEDIA_ID,                   /* arg1=const char *psz_name arg2=int64_t*  */
  113.     /* Media instance control XXX VOD control are for internal use only */
  114.     /* Get all media instances */
  115.     VLM_GET_MEDIA_INSTANCES,            /* arg1=int64_t id arg2=vlm_media_instance_t *** arg3=int *pi_instance */
  116.     /* Delete all media instances */
  117.     VLM_CLEAR_MEDIA_INSTANCES,          /* arg1=int64_t id */
  118.     /* Control broadcast instance */
  119.     VLM_START_MEDIA_BROADCAST_INSTANCE, /* arg1=int64_t id, arg2=const char *psz_instance_name, int i_input_index  res=can fail */
  120.     /* Control VOD instance */
  121.     VLM_START_MEDIA_VOD_INSTANCE,       /* arg1=int64_t id, arg2=const char *psz_instance_name, int i_input_index char *psz_vod_output res=can fail */
  122.     /* Stop an instance */
  123.     VLM_STOP_MEDIA_INSTANCE,            /* arg1=int64_t id, arg2=const char *psz_instance_name      res=can fail */
  124.     /* Pause an instance */
  125.     VLM_PAUSE_MEDIA_INSTANCE,           /* arg1=int64_t id, arg2=const char *psz_instance_name      res=can fail */
  126.     /* Get instance position time (in microsecond) */
  127.     VLM_GET_MEDIA_INSTANCE_TIME,        /* arg1=int64_t id, arg2=const char *psz_instance_name arg3=int64_t *   */
  128.     /* Set instance position time (in microsecond) */
  129.     VLM_SET_MEDIA_INSTANCE_TIME,        /* arg1=int64_t id, arg2=const char *psz_instance_name arg3=int64_t     */
  130.     /* Get instance position ([0.0 .. 1.0]) */
  131.     VLM_GET_MEDIA_INSTANCE_POSITION,    /* arg1=int64_t id, arg2=const char *psz_instance_name arg3=double *   */
  132.     /* Set instance position ([0.0 .. 1.0]) */
  133.     VLM_SET_MEDIA_INSTANCE_POSITION,    /* arg1=int64_t id, arg2=const char *psz_instance_name arg3=double     */
  134.     /* Schedule control */
  135.     VLM_CLEAR_SCHEDULES,                /* no arg */
  136.     /* TODO: missing schedule control */
  137.     /* */
  138. };
  139. /* VLM specific - structures and functions */
  140. /* ok, here is the structure of a vlm_message:
  141.    The parent node is ( name_of_the_command , NULL ), or
  142.    ( name_of_the_command , message_error ) on error.
  143.    If a node has children, it should not have a value (=NULL).*/
  144. struct vlm_message_t
  145. {
  146.     char *psz_name;         /*< message name */
  147.     char *psz_value;        /*< message value */
  148.     int           i_child;  /*< number of child messages */
  149.     vlm_message_t **child;  /*< array of vlm_message_t */
  150. };
  151. #ifdef __cpluplus
  152. extern "C" {
  153. #endif
  154. #define vlm_New( a ) __vlm_New( VLC_OBJECT(a) )
  155. VLC_EXPORT( vlm_t *, __vlm_New, ( vlc_object_t * ) );
  156. VLC_EXPORT( void,      vlm_Delete, ( vlm_t * ) );
  157. VLC_EXPORT( int,       vlm_ExecuteCommand, ( vlm_t *, const char *, vlm_message_t ** ) );
  158. VLC_EXPORT( int,       vlm_Control, ( vlm_t *p_vlm, int i_query, ... ) );
  159. VLC_EXPORT( vlm_message_t *, vlm_MessageSimpleNew, ( const char * ) );
  160. VLC_EXPORT( vlm_message_t *, vlm_MessageNew, ( const char *, const char *, ... ) LIBVLC_FORMAT( 2, 3 ) );
  161. VLC_EXPORT( vlm_message_t *, vlm_MessageAdd, ( vlm_message_t *, vlm_message_t * ) );
  162. VLC_EXPORT( void,            vlm_MessageDelete, ( vlm_message_t * ) );
  163. /* media helpers */
  164. /**
  165.  * Initialize a vlm_media_t instance
  166.  * param p_media vlm_media_t instance to initialize
  167.  */
  168. static inline void vlm_media_Init( vlm_media_t *p_media )
  169. {
  170.     memset( p_media, 0, sizeof(vlm_media_t) );
  171.     p_media->id = 0;    // invalid id
  172.     p_media->psz_name = NULL;
  173.     TAB_INIT( p_media->i_input, p_media->ppsz_input );
  174.     TAB_INIT( p_media->i_option, p_media->ppsz_option );
  175.     p_media->psz_output = NULL;
  176.     p_media->b_vod = false;
  177.     p_media->vod.psz_mux = NULL;
  178.     p_media->broadcast.b_loop = false;
  179. }
  180. /**
  181.  * Copy a vlm_media_t instance into another vlm_media_t instance
  182.  * param p_dst vlm_media_t instance to copy to
  183.  * param p_src vlm_media_t instance to copy from
  184.  */
  185. static inline void vlm_media_Copy( vlm_media_t *p_dst, vlm_media_t *p_src )
  186. {
  187.     int i;
  188.     memset( p_dst, 0, sizeof(vlm_media_t) );
  189.     p_dst->id = p_src->id;
  190.     p_dst->b_enabled = p_src->b_enabled;
  191.     if( p_src->psz_name )
  192.         p_dst->psz_name = strdup( p_src->psz_name );
  193.     for( i = 0; i < p_src->i_input; i++ )
  194.         TAB_APPEND_CPP( char, p_dst->i_input, p_dst->ppsz_input, strdup(p_src->ppsz_input[i]) );
  195.     for( i = 0; i < p_src->i_option; i++ )
  196.         TAB_APPEND_CPP( char, p_dst->i_option, p_dst->ppsz_option, strdup(p_src->ppsz_option[i]) );
  197.     if( p_src->psz_output )
  198.         p_dst->psz_output = strdup( p_src->psz_output );
  199.     p_dst->b_vod = p_src->b_vod;
  200.     if( p_src->b_vod )
  201.     {
  202.         if( p_src->vod.psz_mux )
  203.             p_dst->vod.psz_mux = strdup( p_src->vod.psz_mux );
  204.     }
  205.     else
  206.     {
  207.         p_dst->broadcast.b_loop = p_src->broadcast.b_loop;
  208.     }
  209. }
  210. /**
  211.  * Cleanup and release memory associated with this vlm_media_t instance.
  212.  * You still need to release p_media itself with vlm_media_Delete().
  213.  * param p_media vlm_media_t to cleanup
  214.  */
  215. static inline void vlm_media_Clean( vlm_media_t *p_media )
  216. {
  217.     int i;
  218.     free( p_media->psz_name );
  219.     for( i = 0; i < p_media->i_input; i++ )
  220.         free( p_media->ppsz_input[i]) ;
  221.     TAB_CLEAN(p_media->i_input, p_media->ppsz_input );
  222.     for( i = 0; i < p_media->i_option; i++ )
  223.         free( p_media->ppsz_option[i]) ;
  224.     TAB_CLEAN(p_media->i_option, p_media->ppsz_option );
  225.     free( p_media->psz_output );
  226.     if( p_media->b_vod )
  227.         free( p_media->vod.psz_mux );
  228. }
  229. /**
  230.  * Allocate a new vlm_media_t instance
  231.  * return vlm_media_t instance
  232.  */
  233. static inline vlm_media_t *vlm_media_New(void)
  234. {
  235.     vlm_media_t *p_media = (vlm_media_t *)malloc( sizeof(vlm_media_t) );
  236.     if( p_media )
  237.         vlm_media_Init( p_media );
  238.     return p_media;
  239. }
  240. /**
  241.  * Delete a vlm_media_t instance
  242.  * param p_media vlm_media_t instance to delete
  243.  */
  244. static inline void vlm_media_Delete( vlm_media_t *p_media )
  245. {
  246.     vlm_media_Clean( p_media );
  247.     free( p_media );
  248. }
  249. /**
  250.  * Copy a vlm_media_t instance
  251.  * param p_src vlm_media_t instance to copy
  252.  * return vlm_media_t duplicate of p_src
  253.  */
  254. static inline vlm_media_t *vlm_media_Duplicate( vlm_media_t *p_src )
  255. {
  256.     vlm_media_t *p_dst = vlm_media_New();
  257.     if( p_dst )
  258.         vlm_media_Copy( p_dst, p_src );
  259.     return p_dst;
  260. }
  261. /* media instance helpers */
  262. /**
  263.  * Initialize vlm_media_instance_t
  264.  * param p_instance vlm_media_instance_t to initialize
  265.  */
  266. static inline void vlm_media_instance_Init( vlm_media_instance_t *p_instance )
  267. {
  268.     memset( p_instance, 0, sizeof(vlm_media_instance_t) );
  269.     p_instance->psz_name = NULL;
  270.     p_instance->i_time = 0;
  271.     p_instance->i_length = 0;
  272.     p_instance->d_position = 0.0;
  273.     p_instance->b_paused = false;
  274.     p_instance->i_rate = INPUT_RATE_DEFAULT;
  275. }
  276. /**
  277.  * Cleanup vlm_media_instance_t
  278.  * param p_instance vlm_media_instance_t to cleanup
  279.  */
  280. static inline void vlm_media_instance_Clean( vlm_media_instance_t *p_instance )
  281. {
  282.     free( p_instance->psz_name );
  283. }
  284. /**
  285.  * Allocate a new vlm_media_instance_t
  286.  * return a new vlm_media_instance_t
  287.  */
  288. static inline vlm_media_instance_t *vlm_media_instance_New(void)
  289. {
  290.     vlm_media_instance_t *p_instance = (vlm_media_instance_t *) malloc( sizeof(vlm_media_instance_t) );
  291.     if( p_instance )
  292.         vlm_media_instance_Init( p_instance );
  293.     return p_instance;
  294. }
  295. /**
  296.  * Delete a vlm_media_instance_t
  297.  * param p_instance vlm_media_instance_t to delete
  298.  */
  299. static inline void vlm_media_instance_Delete( vlm_media_instance_t *p_instance )
  300. {
  301.     vlm_media_instance_Clean( p_instance );
  302.     free( p_instance );
  303. }
  304. #ifdef __cpluplus
  305. }
  306. #endif
  307. /**@}*/
  308. #endif