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

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * announce.c : announce handler
  3.  *****************************************************************************
  4.  * Copyright (C) 2002-2007 the VideoLAN team
  5.  * $Id: 261b69dd31f929f6dfd7d24b68a6802b7a1089a6 $
  6.  *
  7.  * Authors: Clément Stenac <zorglub@videolan.org>
  8.  *
  9.  * This program is free software; you can redistribute it and/or modify
  10.  * it under the terms of the GNU General Public License as published by
  11.  * the Free Software Foundation; either version 2 of the License, or
  12.  * (at your option) any later version.
  13.  *
  14.  * This program is distributed in the hope that it will be useful,
  15.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  17.  * GNU General Public License for more details.
  18.  *
  19.  * You should have received a copy of the GNU General Public License
  20.  * along with this program; if not, write to the Free Software
  21.  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  22.  *****************************************************************************/
  23. /*****************************************************************************
  24.  * Preamble
  25.  *****************************************************************************/
  26. #ifdef HAVE_CONFIG_H
  27. # include "config.h"
  28. #endif
  29. #include <vlc_common.h>
  30. #include <vlc_sout.h>
  31. #include "stream_output.h"
  32. #include "libvlc.h"
  33. #include <assert.h>
  34. struct announce_method_t
  35. {
  36. } sap_method;
  37. /****************************************************************************
  38.  * Sout-side functions
  39.  ****************************************************************************/
  40. static void sap_destroy (vlc_object_t *p_this)
  41. {
  42.     libvlc_priv (p_this->p_libvlc)->p_sap = NULL;
  43. }
  44. #undef sout_AnnounceRegisterSDP
  45. /**
  46.  *  Registers a new session with the announce handler, using a pregenerated SDP
  47.  *
  48.  * param obj a VLC object
  49.  * param psz_sdp the SDP to register
  50.  * param psz_dst session address (needed for SAP address auto detection)
  51.  * param p_method an announce method descriptor
  52.  * return the new session descriptor structure
  53.  */
  54. session_descriptor_t *
  55. sout_AnnounceRegisterSDP( vlc_object_t *obj, const char *psz_sdp,
  56.                           const char *psz_dst, announce_method_t *p_method )
  57. {
  58.     assert (p_method == &sap_method);
  59.     (void) p_method;
  60.     session_descriptor_t *p_session = calloc( 1, sizeof (*p_session) );
  61.     if( !p_session )
  62.         return NULL;
  63.     p_session->psz_sdp = strdup( psz_sdp );
  64.     /* GRUIK. We should not convert back-and-forth from string to numbers */
  65.     struct addrinfo *res;
  66.     if (vlc_getaddrinfo (obj, psz_dst, 0, NULL, &res) == 0)
  67.     {
  68.         if (res->ai_addrlen <= sizeof (p_session->addr))
  69.             memcpy (&p_session->addr, res->ai_addr,
  70.                     p_session->addrlen = res->ai_addrlen);
  71.         vlc_freeaddrinfo (res);
  72.     }
  73.     vlc_value_t lockval;
  74.     if (var_Create (obj->p_libvlc, "sap_mutex", VLC_VAR_MUTEX)
  75.      || var_Get (obj->p_libvlc, "sap_mutex", &lockval))
  76.        goto error;
  77.     vlc_mutex_lock (lockval.p_address);
  78.     sap_handler_t *p_sap = libvlc_priv (obj->p_libvlc)->p_sap;
  79.     if (p_sap == NULL)
  80.     {
  81.         p_sap = SAP_Create (VLC_OBJECT (obj->p_libvlc));
  82.         libvlc_priv (obj->p_libvlc)->p_sap = p_sap;
  83.         vlc_object_set_destructor ((vlc_object_t *)p_sap, sap_destroy);
  84.     }
  85.     else
  86.         vlc_object_hold ((vlc_object_t *)p_sap);
  87.     vlc_mutex_unlock (lockval.p_address);
  88.     if (p_sap == NULL)
  89.         goto error;
  90.     msg_Dbg (obj, "adding SAP session");
  91.     SAP_Add (p_sap, p_session );
  92.     return p_session;
  93. error:
  94.     free (p_session->psz_sdp);
  95.     free (p_session);
  96.     return NULL;
  97. }
  98. #undef sout_AnnounceUnRegister
  99. /**
  100.  *  Unregisters an existing session
  101.  *
  102.  * param obj a VLC object
  103.  * param p_session the session descriptor
  104.  * return VLC_SUCCESS or an error
  105.  */
  106. int sout_AnnounceUnRegister( vlc_object_t *obj,
  107.                              session_descriptor_t *p_session )
  108. {
  109.     sap_handler_t *p_sap = libvlc_priv (obj->p_libvlc)->p_sap;
  110.     msg_Dbg (obj, "removing SAP session");
  111.     SAP_Del (p_sap, p_session);
  112.     vlc_value_t lockval;
  113.     var_Create (obj->p_libvlc, "sap_mutex", VLC_VAR_MUTEX);
  114.     var_Get (obj->p_libvlc, "sap_mutex", &lockval);
  115.     vlc_mutex_lock (lockval.p_address);
  116.     vlc_object_release ((vlc_object_t *)p_sap);
  117.     vlc_mutex_unlock (lockval.p_address);
  118.     free (p_session->psz_sdp);
  119.     free (p_session);
  120.     return 0;
  121. }
  122. /**
  123.  * return the SAP announce method
  124.  */
  125. announce_method_t * sout_SAPMethod (void)
  126. {
  127.     return &sap_method;
  128. }
  129. void sout_MethodRelease (announce_method_t *m)
  130. {
  131.     assert (m == &sap_method);
  132. }