⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 shout.c

📁 video linux conference
💻 C
字号:
/***************************************************************************** * shout.c:  Shoutcast services discovery module ***************************************************************************** * Copyright (C) 2005 VideoLAN * $Id: shout.c 10985 2005-05-12 18:49:54Z fkuehne $ * * Authors: Sigmund Augdal <sigmunau@idi.ntnu.no> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA. *****************************************************************************//***************************************************************************** * Includes *****************************************************************************/#include <stdlib.h>                                      /* malloc(), free() */#include <vlc/vlc.h>#include <vlc/intf.h>#include <vlc/input.h>#include "network.h"#include <errno.h>                                                 /* ENOMEM */#ifdef HAVE_UNISTD_H#    include <unistd.h>#endif#ifdef HAVE_SYS_TIME_H#    include <sys/time.h>#endif/************************************************************************ * Macros and definitions ************************************************************************/#define MAX_LINE_LENGTH 256/***************************************************************************** * Module descriptor *****************************************************************************//* Callbacks */    static int  Open ( vlc_object_t * );    static void Close( vlc_object_t * );#define LIMIT_TEXT N_("Maximum number of shoutcast servers to be listed")#define LIMIT_LONGTEXT LIMIT_TEXTvlc_module_begin();    set_shortname( "Shoutcast");    set_description( _("Shoutcast radio listings") );    set_category( CAT_PLAYLIST );    set_subcategory( SUBCAT_PLAYLIST_SD );    add_integer( "shoutcast-limit", 1000, NULL, LIMIT_TEXT,                    LIMIT_LONGTEXT, VLC_TRUE );    set_capability( "services_discovery", 0 );    set_callbacks( Open, Close );vlc_module_end();/***************************************************************************** * Local structures *****************************************************************************/struct services_discovery_sys_t{    /* playlist node */    playlist_item_t *p_node;    input_thread_t *p_input;};/***************************************************************************** * Local prototypes *****************************************************************************//* Main functions */    static void Run    ( services_discovery_t *p_intf );/***************************************************************************** * Open: initialize and create stuff *****************************************************************************/static int Open( vlc_object_t *p_this ){    services_discovery_t *p_sd = ( services_discovery_t* )p_this;    services_discovery_sys_t *p_sys  = malloc(                                    sizeof( services_discovery_sys_t ) );    vlc_value_t         val;    playlist_t          *p_playlist;    playlist_view_t     *p_view;    playlist_item_t     *p_item;    int i_limit;    char *psz_shoutcast_url;    char *psz_shoutcast_title;    p_sd->pf_run = Run;    p_sd->p_sys  = p_sys;    /* Create our playlist node */    p_playlist = (playlist_t *)vlc_object_find( p_sd, VLC_OBJECT_PLAYLIST,                                                FIND_ANYWHERE );    if( !p_playlist )    {        msg_Warn( p_sd, "unable to find playlist, cancelling");        return VLC_EGENERIC;    }    i_limit = config_GetInt( p_this->p_libvlc, "shoutcast-limit" );    #define SHOUTCAST_BASE_URL "http/shout-b4s://shoutcast.com/sbin/xmllister.phtml?service=vlc&no_compress=1&limit="    psz_shoutcast_url = (char *)malloc( strlen( SHOUTCAST_BASE_URL ) + 20 );    psz_shoutcast_title = (char *)malloc( 6 + 20 );    sprintf( psz_shoutcast_url, SHOUTCAST_BASE_URL "%d", i_limit );    sprintf( psz_shoutcast_title, "Top %d", i_limit );    p_view = playlist_ViewFind( p_playlist, VIEW_CATEGORY );    p_sys->p_node = playlist_NodeCreate( p_playlist, VIEW_CATEGORY,                                         _("Shoutcast"), p_view->p_root );    p_item = playlist_ItemNew( p_playlist, psz_shoutcast_url,                                     psz_shoutcast_title );    free( psz_shoutcast_url );    free( psz_shoutcast_title );    playlist_NodeAddItem( p_playlist, p_item,                          p_sys->p_node->pp_parents[0]->i_view,                          p_sys->p_node, PLAYLIST_APPEND,                          PLAYLIST_END );    /* We need to declare the parents of the node as the same of the     * parent's ones */    playlist_CopyParents( p_sys->p_node, p_item );        p_sys->p_input = input_CreateThread( p_playlist, &p_item->input );    p_sys->p_node->i_flags |= PLAYLIST_RO_FLAG;    val.b_bool = VLC_TRUE;    var_Set( p_playlist, "intf-change", val );    vlc_object_release( p_playlist );    return VLC_SUCCESS;}/***************************************************************************** * Close: *****************************************************************************/static void Close( vlc_object_t *p_this ){    services_discovery_t *p_sd = ( services_discovery_t* )p_this;    services_discovery_sys_t *p_sys  = p_sd->p_sys;    playlist_t *p_playlist =  (playlist_t *) vlc_object_find( p_sd,                                 VLC_OBJECT_PLAYLIST, FIND_ANYWHERE );    if( p_sd->p_sys->p_input )    {        input_StopThread( p_sd->p_sys->p_input );        input_DestroyThread( p_sd->p_sys->p_input );        vlc_object_detach( p_sd->p_sys->p_input );        vlc_object_destroy( p_sd->p_sys->p_input );        p_sd->p_sys->p_input = NULL;            }    if( p_playlist )    {        playlist_NodeDelete( p_playlist, p_sys->p_node, VLC_TRUE, VLC_TRUE );        vlc_object_release( p_playlist );    }    free( p_sys );}/***************************************************************************** * Run: main thread *****************************************************************************/static void Run( services_discovery_t *p_sd ){    while( !p_sd->b_die )    {        if( p_sd->p_sys->p_input &&            ( p_sd->p_sys->p_input->b_eof || p_sd->p_sys->p_input->b_error ) )        {            input_StopThread( p_sd->p_sys->p_input );            input_DestroyThread( p_sd->p_sys->p_input );            vlc_object_detach( p_sd->p_sys->p_input );            vlc_object_destroy( p_sd->p_sys->p_input );            p_sd->p_sys->p_input = NULL;        }        msleep( 100000 );    }}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -