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

📄 lirc.c

📁 VLC媒体播放程序
💻 C
📖 第 1 页 / 共 2 页
字号:
/***************************************************************************** * lirc.c : lirc module for vlc ***************************************************************************** * Copyright (C) 2004 VideoLAN * $Id: lirc.c,v 1.11 2004/02/15 19:40:41 sigmunau Exp $ * * Author: 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. *****************************************************************************//***************************************************************************** * Preamble *****************************************************************************/#include <stdlib.h>                                      /* malloc(), free() */#include <string.h>#include <fcntl.h>#include <vlc/vlc.h>#include <vlc/intf.h>#include <vlc/vout.h>#include <vlc/aout.h>#include <osd.h>#include <lirc/lirc_client.h>/***************************************************************************** * intf_sys_t: description and status of FB interface *****************************************************************************/struct intf_sys_t{    struct lirc_config *config;    vlc_mutex_t         change_lock;    input_thread_t *    p_input;    vout_thread_t *     p_vout;};/***************************************************************************** * Local prototypes *****************************************************************************/static int  Open    ( vlc_object_t * );static void Close   ( vlc_object_t * );static void Run     ( intf_thread_t * );/***************************************************************************** * Module descriptor *****************************************************************************/vlc_module_begin();    set_description( _("Infrared remote control interface") );    set_capability( "interface", 0 );    set_callbacks( Open, Close );vlc_module_end();/***************************************************************************** * Open: initialize interface *****************************************************************************/static int Open( vlc_object_t *p_this ){    intf_thread_t *p_intf = (intf_thread_t *)p_this;    int i_fd;    /* Allocate instance and initialize some members */    p_intf->p_sys = malloc( sizeof( intf_sys_t ) );    if( p_intf->p_sys == NULL )    {        msg_Err( p_intf, "out of memory" );        return 1;    }    p_intf->pf_run = Run;    i_fd = lirc_init( "vlc", 1 );    if( i_fd == -1 )    {        msg_Err( p_intf, "lirc_init failed" );        free( p_intf->p_sys );        return 1;    }    /* We want polling */    fcntl( i_fd, F_SETFL, fcntl( i_fd, F_GETFL ) | O_NONBLOCK );    if( lirc_readconfig( NULL, &p_intf->p_sys->config, NULL ) != 0 )    {        msg_Err( p_intf, "lirc_readconfig failed" );        lirc_deinit();        free( p_intf->p_sys );        return 1;    }    p_intf->p_sys->p_input = NULL;    return 0;}/***************************************************************************** * Close: destroy interface *****************************************************************************/static void Close( vlc_object_t *p_this ){    intf_thread_t *p_intf = (intf_thread_t *)p_this;    if( p_intf->p_sys->p_input )    {        vlc_object_release( p_intf->p_sys->p_input );    }    if( p_intf->p_sys->p_vout )    {        vlc_object_release( p_intf->p_sys->p_vout );    }    /* Destroy structure */    lirc_freeconfig( p_intf->p_sys->config );    lirc_deinit();    free( p_intf->p_sys );}/***************************************************************************** * Run: main loop *****************************************************************************/static void Run( intf_thread_t *p_intf ){    char *code, *c;    playlist_t *p_playlist;    input_thread_t *p_input;    vout_thread_t *p_vout = NULL;    while( !p_intf->b_die )    {        /* Sleep a bit */        msleep( INTF_IDLE_SLEEP );        /* Update the input */        if( p_intf->p_sys->p_input == NULL )        {            p_intf->p_sys->p_input = vlc_object_find( p_intf, VLC_OBJECT_INPUT,                                                              FIND_ANYWHERE );        }        else if( p_intf->p_sys->p_input->b_dead )        {            vlc_object_release( p_intf->p_sys->p_input );            p_intf->p_sys->p_input = NULL;        }        p_input = p_intf->p_sys->p_input;        /* Update the vout */        if( p_vout == NULL )        {            p_vout = vlc_object_find( p_intf, VLC_OBJECT_VOUT,                                      FIND_ANYWHERE );            p_intf->p_sys->p_vout = p_vout;        }        else if( p_vout->b_die )        {            vlc_object_release( p_vout );            p_vout = NULL;            p_intf->p_sys->p_vout = NULL;        }        /* We poll the lircsocket */        if( lirc_nextcode(&code) != 0 )        {            break;        }        if( code == NULL )        {            continue;        }        while( !p_intf->b_die                && lirc_code2char( p_intf->p_sys->config, code, &c ) == 0                && c != NULL )        {            if( !strcmp( c, "QUIT" ) )            {                p_intf->p_vlc->b_die = VLC_TRUE;                vout_OSDMessage( p_intf, _("Quit" ) );                continue;            }            else if( !strcmp( c, "VOL_UP" ) )            {                audio_volume_t i_newvol;                aout_VolumeUp( p_intf, 1, &i_newvol );                vout_OSDMessage( p_intf, _("Vol %%%d"), i_newvol*100/AOUT_VOLUME_MAX );            }            else if( !strcmp( c, "VOL_DOWN" ) )            {                audio_volume_t i_newvol;                aout_VolumeDown( p_intf, 1, &i_newvol );                vout_OSDMessage( p_intf, _("Vol %%%d"), i_newvol*100/AOUT_VOLUME_MAX );            }            else if( !strcmp( c, "MUTE" ) )            {                audio_volume_t i_newvol = -1;                aout_VolumeMute( p_intf, &i_newvol );                if( i_newvol == 0 )                {                    vout_OSDMessage( p_intf, _( "Mute" ) );                }                else                {                    vout_OSDMessage( p_intf, _("Vol %d%%"), i_newvol*100/AOUT_VOLUME_MAX );                }            }            if( p_vout )            {                if( !strcmp( c, "FULLSCREEN" ) )                {                    p_vout->i_changes |= VOUT_FULLSCREEN_CHANGE;                    continue;                }                if( !strcmp( c, "ACTIVATE" ) )                {                    vlc_value_t val;                    val.psz_string = "ENTER";                    if (var_Set( p_vout, "key-pressed", val ) != VLC_SUCCESS)                    {                        msg_Warn( p_intf, "key-press failed" );                    }                    continue;                }                if( !strcmp( c, "LEFT" ) )                {                    vlc_value_t val;                    val.psz_string = "LEFT";                    if (var_Set( p_vout, "key-pressed", val ) != VLC_SUCCESS)                    {                        msg_Warn( p_intf, "key-press failed" );

⌨️ 快捷键说明

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