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

📄 intf.c

📁 video linux conference
💻 C
📖 第 1 页 / 共 2 页
字号:
/***************************************************************************** * intf.c: interface for CMML annotations/hyperlinks ***************************************************************************** * Copyright (C) 2003-2004 Commonwealth Scientific and Industrial Research *                         Organisation (CSIRO) Australia * Copyright (C) 2004 VideoLAN * * $Id: intf.c 10101 2005-03-02 16:47:31Z robux4 $ * * Authors: Andre Pang <Andre.Pang@csiro.au> * * 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. *****************************************************************************//***************************************************************************** * Preamble *****************************************************************************/#include <stdlib.h>                                      /* malloc(), free() */#include <string.h>#include <vlc/vlc.h>#ifdef HAVE_UNISTD_H#    include <unistd.h>#endif#include <vlc/decoder.h>#include <vlc/input.h>#include <vlc/intf.h>#include <vlc/vout.h>#include <osd.h>#include "vlc_keys.h"#include "browser_open.h"#include "history.h"#include "xstrcat.h"#include "xurl.h"#undef  CMML_INTF_USE_TIMED_URIS#undef  CMML_INTF_DEBUG#undef  CMML_INTF_HISTORY_DEBUG/***************************************************************************** * intf_sys_t: description and status of interface *****************************************************************************/struct intf_sys_t{    decoder_t *         p_cmml_decoder;    input_thread_t *    p_input;    vlc_bool_t          b_key_pressed;};struct navigation_history_t{    int i_history_size;    int i_last_item;};/***************************************************************************** * Local prototypes. *****************************************************************************/static int   InitThread                 ( intf_thread_t * );static int   MouseEvent                 ( vlc_object_t *, char const *,                                          vlc_value_t, vlc_value_t, void * );static int   KeyEvent                   ( vlc_object_t *, char const *,                                          vlc_value_t, vlc_value_t, void * );static void  FollowAnchor               ( intf_thread_t * );static void  GoBack                     ( intf_thread_t * );static void  GoForward                  ( intf_thread_t * );static int   FollowAnchorCallback       ( vlc_object_t *, char const *,                                          vlc_value_t, vlc_value_t, void * );static int   GoBackCallback             ( vlc_object_t *, char const *,                                          vlc_value_t, vlc_value_t, void * );static int   GoForwardCallback          ( vlc_object_t *, char const *,                                          vlc_value_t, vlc_value_t, void * );static char *GetTimedURLFromPlaylistItem( intf_thread_t *, playlist_item_t * );static char *GetTimedURIFragmentForTime ( int );static int   GetCurrentTimeInSeconds    ( input_thread_t * );static int   DisplayAnchor              ( intf_thread_t *, vout_thread_t *,                                          char *, char * );static int   DisplayPendingAnchor       ( intf_thread_t *, vout_thread_t * );static history_t * GetHistory           ( playlist_t * );static void  ReplacePlaylistItem        ( playlist_t *, char * );/* Exported functions */static void RunIntf        ( intf_thread_t *p_intf );/***************************************************************************** * OpenIntf: initialize CMML interface *****************************************************************************/int E_(OpenIntf) ( vlc_object_t *p_this ){    intf_thread_t *p_intf = (intf_thread_t *)p_this;    p_intf->p_sys = malloc( sizeof( intf_sys_t ) );    if( p_intf->p_sys == NULL )    {        return( 1 );    };    p_intf->pf_run = RunIntf;    var_AddCallback( p_intf->p_vlc, "key-pressed", KeyEvent, p_intf );    /* we also need to add the callback for "mouse-clicked", but do that later     * when we've found a p_vout */    var_Create( p_intf->p_vlc, "browse-go-back", VLC_VAR_VOID );    var_AddCallback( p_intf->p_vlc, "browse-go-back",                     GoBackCallback, p_intf );    var_Create( p_intf->p_vlc, "browse-go-forward", VLC_VAR_VOID );    var_AddCallback( p_intf->p_vlc, "browse-go-forward",                     GoForwardCallback, p_intf );    var_Create( p_intf->p_vlc, "browse-follow-anchor", VLC_VAR_VOID );    var_AddCallback( p_intf->p_vlc, "browse-follow-anchor",                     FollowAnchorCallback, p_intf );    return( 0 );}/***************************************************************************** * CloseIntf: destroy dummy interface *****************************************************************************/void E_(CloseIntf) ( vlc_object_t *p_this ){    intf_thread_t * p_intf = (intf_thread_t *)p_this;    vout_thread_t * p_vout;#ifdef CMML_INTF_DEBUG    msg_Dbg( p_intf, "freeing CMML interface" );#endif    /* erase the anchor text description from the video output if it exists */    p_vout = vlc_object_find( p_intf, VLC_OBJECT_VOUT, FIND_ANYWHERE );    if( p_vout )    {        /* enable CMML as a subtitle track */        spu_Control( p_vout->p_spu, SPU_CHANNEL_CLEAR, DEFAULT_CHAN );        vlc_object_release( p_vout );    }    var_DelCallback( p_intf->p_vlc, "key-pressed", KeyEvent, p_intf );    vlc_object_release( p_intf->p_sys->p_cmml_decoder );    free( p_intf->p_sys );}/***************************************************************************** * RunIntf: main loop *****************************************************************************/static void RunIntf( intf_thread_t *p_intf ){    vout_thread_t * p_vout = NULL;    if( InitThread( p_intf ) < 0 )    {        msg_Err( p_intf, "can't initialize CMML interface" );        return;    }#ifdef CMML_INTF_DEBUG    msg_Dbg( p_intf, "CMML intf initialized" );#endif    /* if video output is dying, disassociate ourselves from it */    if( p_vout && p_vout->b_die )    {        var_DelCallback( p_vout, "mouse-clicked", MouseEvent, p_intf );        vlc_object_release( p_vout );        p_vout = NULL;    }    /* Main loop */    while( !p_intf->b_die )    {                /* find a video output if we currently don't have one */        if( p_vout == NULL )        {            p_vout = vlc_object_find( p_intf->p_sys->p_input,                                      VLC_OBJECT_VOUT, FIND_CHILD );            if( p_vout )            {#ifdef CMML_INTF_DEBUG                msg_Dbg( p_intf, "found vout thread" );#endif                var_AddCallback( p_vout, "mouse-clicked", MouseEvent, p_intf );            }        }        vlc_mutex_lock( &p_intf->change_lock );        /*         * keyboard event         */        if( p_intf->p_sys->b_key_pressed )        {            vlc_value_t val;            int i, i_action = -1;            struct hotkey *p_hotkeys = p_intf->p_vlc->p_hotkeys;            /* Find action triggered by hotkey (if any) */            var_Get( p_intf->p_vlc, "key-pressed", &val );            /* Acknowledge that we've handled the b_key_pressed event */            p_intf->p_sys->b_key_pressed = VLC_FALSE;#ifdef CMML_INTF_DEBUG            msg_Dbg( p_intf, "Got a keypress: %d", val.i_int );#endif            for( i = 0; p_hotkeys[i].psz_action != NULL; i++ )            {                if( p_hotkeys[i].i_key == val.i_int )                    i_action = p_hotkeys[i].i_action;            }            /* What did the user do? */            if( i_action != -1 )            {                switch( i_action )                {                    case ACTIONID_NAV_ACTIVATE:                        FollowAnchor( p_intf );                        break;                    case ACTIONID_HISTORY_BACK:                        GoBack( p_intf );                        break;                    case ACTIONID_HISTORY_FORWARD:                        GoForward( p_intf );                        break;                    default:                        break;                }            }        }        vlc_mutex_unlock( &p_intf->change_lock );        (void) DisplayPendingAnchor( p_intf, p_vout );        /* Wait a bit */        msleep( INTF_IDLE_SLEEP );    }    /* if we're here, the video output is dying: release the vout object */    if( p_vout )    {        var_DelCallback( p_vout, "mouse-clicked", MouseEvent, p_intf );        vlc_object_release( p_vout );    }    vlc_object_release( p_intf->p_sys->p_input );}/***************************************************************************** * DisplayPendingAnchor: get a pending anchor description/URL from the CMML * decoder and display it on screen *****************************************************************************/static int DisplayPendingAnchor( intf_thread_t *p_intf, vout_thread_t *p_vout ){    decoder_t *p_cmml_decoder;    char *psz_description = NULL;    char *psz_url = NULL;    intf_thread_t *p_primary_intf;    vlc_value_t val;    p_cmml_decoder = p_intf->p_sys->p_cmml_decoder;    if( var_Get( p_cmml_decoder, "psz-current-anchor-description", &val )            != VLC_SUCCESS )    {        return VLC_TRUE;    }    if( !val.p_address )        return VLC_TRUE;    psz_description = val.p_address;    if( var_Get( p_cmml_decoder, "psz-current-anchor-url", &val )            == VLC_SUCCESS )    {        psz_url = val.p_address;    }    if( p_vout != NULL )    {        /* don't display anchor if main interface can display it */        p_primary_intf = vlc_object_find( p_intf->p_vlc, VLC_OBJECT_INTF,                FIND_CHILD );        if( p_primary_intf )        {            if( var_Get( p_primary_intf, "intf-displays-cmml-description", &val )                    == VLC_SUCCESS )            {                if( val.b_bool == VLC_TRUE )                {                    vlc_object_release( p_primary_intf );                    return VLC_TRUE;                }            }            vlc_object_release( p_primary_intf );        }        /* display anchor as subtitle on-screen */        if( DisplayAnchor( p_intf, p_vout, psz_description, psz_url )                != VLC_SUCCESS )        {            /* text render unsuccessful: do nothing */            return VLC_FALSE;        }        /* text render successful: clear description */        val.p_address = NULL;        if( var_Set( p_cmml_decoder, "psz-current-anchor-description", val )                != VLC_SUCCESS )        {            msg_Dbg( p_intf,                     "reset of psz-current-anchor-description failed" );        }        free( psz_description );        psz_url = NULL;    }    return VLC_TRUE;}/***************************************************************************** * InitThread: *****************************************************************************/static int InitThread( intf_thread_t * p_intf ){    /* We might need some locking here */    if( !p_intf->b_die )    {        input_thread_t * p_input;        decoder_t *p_cmml_decoder;        p_cmml_decoder = vlc_object_find( p_intf, VLC_OBJECT_DECODER, FIND_PARENT );        p_input = vlc_object_find( p_intf, VLC_OBJECT_INPUT, FIND_PARENT );#ifdef CMML_INTF_DEBUG        msg_Dbg( p_intf, "cmml decoder at %p, input thread at %p",                 p_cmml_decoder, p_input );#endif        /* Maybe the input just died */        if( p_input == NULL )        {            return VLC_EGENERIC;        }        vlc_mutex_lock( &p_intf->change_lock );        p_intf->p_sys->p_input = p_input;        p_intf->p_sys->p_cmml_decoder = p_cmml_decoder;        p_intf->p_sys->b_key_pressed = VLC_FALSE;        vlc_mutex_unlock( &p_intf->change_lock );        return VLC_SUCCESS;    }    else    {        return VLC_EGENERIC;    }}/***************************************************************************** * MouseEvent: callback for mouse events *****************************************************************************/static int MouseEvent( vlc_object_t *p_this, char const *psz_var,                       vlc_value_t oldval, vlc_value_t newval, void *p_data ){    /* TODO: handle mouse clicks on the anchor text */    return VLC_SUCCESS;}/***************************************************************************** * KeyEvent: callback for keyboard events *****************************************************************************/static int KeyEvent( vlc_object_t *p_this, char const *psz_var,                       vlc_value_t oldval, vlc_value_t newval, void *p_data ){    intf_thread_t *p_intf = (intf_thread_t *)p_data;    vlc_mutex_lock( &p_intf->change_lock );    p_intf->p_sys->b_key_pressed = VLC_TRUE;        vlc_mutex_unlock( &p_intf->change_lock );    return VLC_SUCCESS;}/***************************************************************************** * FollowAnchor: follow the current anchor being displayed to the user *****************************************************************************/static void FollowAnchor ( intf_thread_t *p_intf ){    intf_sys_t *p_sys;    decoder_t *p_cmml_decoder;    char *psz_url = NULL;    vlc_value_t val;    msg_Dbg( p_intf, "User followed anchor" );    p_sys = p_intf->p_sys;    p_cmml_decoder = p_sys->p_cmml_decoder;    if( var_Get( p_cmml_decoder, "psz-current-anchor-url", &val ) ==            VLC_SUCCESS )    {        if( val.p_address ) psz_url = val.p_address;    }#ifdef CMML_INTF_DEBUG    msg_Dbg( p_intf, "Current URL is \"%s\"", psz_url );#endif    if( psz_url )    {        playlist_t *p_playlist;        playlist_item_t *p_current_item;

⌨️ 快捷键说明

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