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

📄 shoutcast.c

📁 uclinux 下的vlc播放器源代码
💻 C
📖 第 1 页 / 共 2 页
字号:
/***************************************************************************** * shoutcast.c: Winamp >=5.2 shoutcast demuxer ***************************************************************************** * Copyright (C) 2006 the VideoLAN team * $Id: shoutcast.c 15409 2006-04-28 21:19:51Z zorglub $ * * Authors: Antoine Cellerier <dionoea -@t- videolan -Dot- org> *          based on b4s.c by Sigmund Augdal Helberg <dnumgis@videolan.org> * * 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., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA. *****************************************************************************//***************************************************************************** * Preamble *****************************************************************************/#include <stdlib.h>                                      /* malloc(), free() */#include <ctype.h>                                              /* isspace() */#include <vlc/vlc.h>#include <vlc/input.h>#include <vlc/intf.h>#include <errno.h>                                                 /* ENOMEM */#include "playlist.h"#include "vlc_xml.h"struct demux_sys_t{    playlist_t *p_playlist;    playlist_item_t *p_current;    xml_t *p_xml;    xml_reader_t *p_xml_reader;    vlc_bool_t b_adult;};/* duplicate from modules/services_discovery/shout.c */#define SHOUTCAST_BASE_URL "http/shout-winamp://www.shoutcast.com/sbin/newxml.phtml"#define SHOUTCAST_TUNEIN_BASE_URL "http://www.shoutcast.com"#define SHOUTCAST_TV_TUNEIN_URL "http://www.shoutcast.com/sbin/tunein-tvstation.pls?id="/***************************************************************************** * Local prototypes *****************************************************************************/static int Demux( demux_t *p_demux);static int Control( demux_t *p_demux, int i_query, va_list args );static int DemuxGenre( demux_t *p_demux );static int DemuxStation( demux_t *p_demux );/***************************************************************************** * Import_Shoutcast: main import function *****************************************************************************/int E_(Import_Shoutcast)( vlc_object_t *p_this ){    demux_t *p_demux = (demux_t *)p_this;    demux_sys_t *p_sys;    char    *psz_ext;    psz_ext = strrchr ( p_demux->psz_path, '.' );    if( !p_demux->psz_demux || strcmp(p_demux->psz_demux, "shout-winamp") )    {        return VLC_EGENERIC;    }    msg_Dbg( p_demux, "using shoutcast playlist import");    p_demux->pf_control = Control;    p_demux->pf_demux = Demux;    p_demux->p_sys = p_sys = malloc( sizeof(demux_sys_t) );    if( p_sys == NULL )    {        msg_Err( p_demux, "out of memory" );        return VLC_ENOMEM;    }    p_sys->p_playlist = NULL;    p_sys->p_xml = NULL;    p_sys->p_xml_reader = NULL;    /* Do we want to list adult content ? */    var_Create( p_demux, "shoutcast-show-adult",                VLC_VAR_BOOL | VLC_VAR_DOINHERIT );    p_sys->b_adult = var_GetBool( p_demux, "shoutcast-show-adult" );    return VLC_SUCCESS;}/***************************************************************************** * Deactivate: frees unused data *****************************************************************************/void E_(Close_Shoutcast)( vlc_object_t *p_this ){    demux_t *p_demux = (demux_t *)p_this;    demux_sys_t *p_sys = p_demux->p_sys;    if( p_sys->p_playlist )        vlc_object_release( p_sys->p_playlist );    if( p_sys->p_xml_reader )        xml_ReaderDelete( p_sys->p_xml, p_sys->p_xml_reader );    if( p_sys->p_xml )        xml_Delete( p_sys->p_xml );    free( p_sys );}static int Demux( demux_t *p_demux ){    demux_sys_t *p_sys = p_demux->p_sys;    playlist_t *p_playlist;    xml_t *p_xml;    xml_reader_t *p_xml_reader;    char *psz_eltname = NULL;    p_playlist = (playlist_t *) vlc_object_find( p_demux, VLC_OBJECT_PLAYLIST,                                                 FIND_ANYWHERE );    if( !p_playlist )    {        msg_Err( p_demux, "can't find playlist" );        return -1;    }    p_sys->p_playlist = p_playlist;    E_(FindItem)( p_demux, p_playlist, &p_sys->p_current );    playlist_ItemToNode( p_playlist, p_sys->p_current );    p_sys->p_current->input.i_type = ITEM_TYPE_PLAYLIST;    p_xml = p_sys->p_xml = xml_Create( p_demux );    if( !p_xml ) return -1;    p_xml_reader = xml_ReaderCreate( p_xml, p_demux->s );    if( !p_xml_reader ) return -1;    p_sys->p_xml_reader = p_xml_reader;    /* xml */    /* check root node */    if( xml_ReaderRead( p_xml_reader ) != 1 )    {        msg_Err( p_demux, "invalid file (no root node)" );        return -1;    }    if( xml_ReaderNodeType( p_xml_reader ) != XML_READER_STARTELEM ||        ( psz_eltname = xml_ReaderName( p_xml_reader ) ) == NULL ||        ( strcmp( psz_eltname, "genrelist" )          && strcmp( psz_eltname, "stationlist" ) ) )    {        msg_Err( p_demux, "invalid root node %i, %s",                 xml_ReaderNodeType( p_xml_reader ), psz_eltname );        if( psz_eltname ) free( psz_eltname );        return -1;    }    if( !strcmp( psz_eltname, "genrelist" ) )    {        /* we're reading a genre list */        free( psz_eltname );        if( DemuxGenre( p_demux ) ) return -1;    }    else    {        /* we're reading a station list */        free( psz_eltname );        if( DemuxStation( p_demux ) ) return -1;    }    vlc_object_release( p_playlist );    p_sys->p_playlist = NULL;    return VLC_SUCCESS;}#define GET_VALUE( a ) \                        if( !strcmp( psz_attrname, #a ) ) \                        { \                            psz_ ## a = strdup( psz_attrvalue ); \                        }/* <genrelist> *   <genre name="the name"></genre> *   ... * </genrelist> **/static int DemuxGenre( demux_t *p_demux ){    demux_sys_t *p_sys = p_demux->p_sys;    char *psz_name = NULL; /* genre name */    char *psz_eltname = NULL; /* tag name */#define FREE(a) if( a ) free( a ); a = NULL;    while( xml_ReaderRead( p_sys->p_xml_reader ) == 1 )    {        int i_type;        // Get the node type        i_type = xml_ReaderNodeType( p_sys->p_xml_reader );        switch( i_type )        {            // Error            case -1:                return -1;                break;            case XML_READER_STARTELEM:                // Read the element name                psz_eltname = xml_ReaderName( p_sys->p_xml_reader );                if( !psz_eltname ) return -1;                if( !strcmp( psz_eltname, "genre" ) )                {                    // Read the attributes                    while( xml_ReaderNextAttr( p_sys->p_xml_reader ) == VLC_SUCCESS )                    {                        char *psz_attrname = xml_ReaderName( p_sys->p_xml_reader );                        char *psz_attrvalue =                            xml_ReaderValue( p_sys->p_xml_reader );                        if( !psz_attrname || !psz_attrvalue )                        {                            FREE(psz_attrname);                            FREE(psz_attrvalue);                            free(psz_eltname);                            /*FIXME: isn't return a bit too much. what about break*/                            return -1;                        }                        GET_VALUE( name )                        else                        {                            msg_Warn( p_demux,                                      "unexpected attribure %s in element %s",                                      psz_attrname,                                      psz_eltname );                        }                        free( psz_attrname );                        free( psz_attrvalue );                    }                }                free( psz_eltname ); psz_eltname = NULL;                break;            case XML_READER_TEXT:                break;            // End element            case XML_READER_ENDELEM:                // Read the element name                psz_eltname = xml_ReaderName( p_sys->p_xml_reader );                if( !psz_eltname ) return -1;                if( !strcmp( psz_eltname, "genre" ) )                {                    playlist_item_t *p_item;                    char *psz_mrl = malloc( strlen( SHOUTCAST_BASE_URL )                            + strlen( "?genre=" ) + strlen( psz_name ) + 1 );                    sprintf( psz_mrl, SHOUTCAST_BASE_URL "?genre=%s",                             psz_name );                    p_item = playlist_ItemNew( p_sys->p_playlist, psz_mrl,                                               psz_name );                    p_item->i_flags &= ~PLAYLIST_SKIP_FLAG;                    free( psz_mrl );                    playlist_NodeAddItem( p_sys->p_playlist, p_item,

⌨️ 快捷键说明

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