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

📄 playlist.cpp

📁 video linux conference
💻 CPP
字号:
/***************************************************************************** * playlist.cpp ***************************************************************************** * Copyright (C) 2003 VideoLAN * $Id: playlist.cpp 10101 2005-03-02 16:47:31Z robux4 $ * * Authors: Cyril Deguet     <asmax@via.ecp.fr> * * 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. *****************************************************************************/#include <vlc/vlc.h>#include "playlist.hpp"#include "../utils/ustring.hpp"#include "charset.h"Playlist::Playlist( intf_thread_t *pIntf ): VarList( pIntf ){    // Get the playlist VLC object    m_pPlaylist = pIntf->p_sys->p_playlist;    // Try to guess the current charset    char *pCharset;    vlc_current_charset( &pCharset );    iconvHandle = vlc_iconv_open( "UTF-8", pCharset );    msg_Dbg( pIntf, "Using character encoding: %s", pCharset );    free( pCharset );    if( iconvHandle == (vlc_iconv_t)-1 )    {        msg_Warn( pIntf, "Unable to do requested conversion" );    }    buildList();}Playlist::~Playlist(){    if( iconvHandle != (vlc_iconv_t)-1 ) vlc_iconv_close( iconvHandle );}void Playlist::delSelected(){    // Remove the items from the VLC playlist    int index = 0;    ConstIterator it;    for( it = begin(); it != end(); it++ )    {        if( (*it).m_selected )        {            playlist_item_t *p_item = playlist_LockItemGetByPos( m_pPlaylist,                                                                 index );            playlist_LockDelete( m_pPlaylist, p_item->input.i_id );        }        else        {            index++;        }    }    notify();}void Playlist::action( Elem_t *pItem ){    // Find the index of the item    int index = 0;    ConstIterator it;    for( it = begin(); it != end(); it++ )    {        if( &*it == pItem ) break;        index++;    }    // Item found ?    if( index < size() )    {        playlist_Goto( m_pPlaylist, index );    }}void Playlist::onChange(){    buildList();    notify();}void Playlist::buildList(){    clear();    vlc_mutex_lock( &m_pPlaylist->object_lock );    for( int i = 0; i < m_pPlaylist->i_size; i++ )    {        // Get the name of the playlist item        UString *pName = convertName( m_pPlaylist->pp_items[i]->input.psz_name );        // Is it the played stream ?        bool playing = (i == m_pPlaylist->i_index );        // Add the item in the list        m_list.push_back( Elem_t( UStringPtr( pName ), false, playing ) );    }    vlc_mutex_unlock( &m_pPlaylist->object_lock );}UString *Playlist::convertName( const char *pName ){    if( iconvHandle == (vlc_iconv_t)-1 )    {        return new UString( getIntf(), pName );    }    char *pNewName, *pBufferOut;    const char *pBufferIn;    size_t ret, inbytesLeft, outbytesLeft;    // Try to convert the playlist item into UTF8    pNewName = (char*)malloc( 6 * strlen( pName ) );    pBufferOut = pNewName;    pBufferIn = pName;    inbytesLeft = strlen( pName );    outbytesLeft = 6 * inbytesLeft;    // ICONV_CONST is defined in config.h    ret = vlc_iconv( iconvHandle, (char **)&pBufferIn, &inbytesLeft,                     &pBufferOut, &outbytesLeft );    *pBufferOut = '\0';    if( inbytesLeft )    {        msg_Warn( getIntf(), "Failed to convert the playlist item into UTF8" );        free( pNewName );        return new UString( getIntf(), pName );    }    else    {        UString *pString = new UString( getIntf(), pNewName );        free( pNewName );        return pString;    }}

⌨️ 快捷键说明

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