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

📄 mediacontrol_audio_video.c

📁 uclinux 下的vlc播放器源代码
💻 C
字号:
/***************************************************************************** * audio_video.c: Audio/Video management : volume, snapshot, OSD ***************************************************************************** * Copyright (C) 2005 the VideoLAN team * $Id: mediacontrol_audio_video.c 17322 2006-10-28 14:49:42Z jpsaman $ * * Authors: Olivier Aubert <olivier.aubert@liris.univ-lyon1.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., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA. *****************************************************************************/#include <mediacontrol_internal.h>#include <vlc/mediacontrol.h>#include <vlc/intf.h>#include <vlc/vout.h>#include <vlc/aout.h>#include <vlc_demux.h>#include <vlc_osd.h>#include <snapshot.h>#include <stdlib.h>                                      /* malloc(), free() */#include <string.h>#include <errno.h>                                                 /* ENOMEM */#include <stdio.h>#include <ctype.h>#ifdef HAVE_UNISTD_H#    include <unistd.h>#endif#ifdef HAVE_SYS_TIME_H#    include <sys/time.h>#endif#ifdef HAVE_SYS_TYPES_H#    include <sys/types.h>#endif#define RAISE( c, m )  exception->code = c; \                       exception->message = strdup(m);mediacontrol_RGBPicture *mediacontrol_snapshot( mediacontrol_Instance *self,                       const mediacontrol_Position * a_position,                       mediacontrol_Exception *exception ){    vlc_object_t* p_cache;    vout_thread_t* p_vout;    mediacontrol_RGBPicture *p_pic = NULL;    char path[256];    snapshot_t *p_snapshot;    exception=mediacontrol_exception_init( exception );    p_vout = vlc_object_find( self->p_playlist, VLC_OBJECT_VOUT, FIND_CHILD );    if( ! p_vout )    {        RAISE( mediacontrol_InternalException, "No video output" );        return NULL;    }    p_cache = vlc_object_create( self->p_playlist, VLC_OBJECT_GENERIC );    if( p_cache == NULL )    {        vlc_object_release( p_vout );        msg_Err( self->p_playlist, "out of memory" );        RAISE( mediacontrol_InternalException, "Out of memory" );        return NULL;    }    snprintf( path, 255, "object:%d", p_cache->i_object_id );    var_SetString( p_vout, "snapshot-path", path );    var_SetString( p_vout, "snapshot-format", "png" );    vlc_mutex_lock( &p_cache->object_lock );    vout_Control( p_vout, VOUT_SNAPSHOT );    vlc_cond_wait( &p_cache->object_wait, &p_cache->object_lock );    vlc_object_release( p_vout );    p_snapshot = ( snapshot_t* ) p_cache->p_private;    vlc_object_destroy( p_cache );    if( p_snapshot )    {        p_pic = _mediacontrol_createRGBPicture( p_snapshot->i_width,                                                p_snapshot->i_height,                                                VLC_FOURCC( 'p','n','g',' ' ),                                                p_snapshot->date,                                                p_snapshot->p_data,                                                p_snapshot->i_datasize );        if( !p_pic )            RAISE( mediacontrol_InternalException, "out of memory" );        free( p_snapshot->p_data );        free( p_snapshot );    }    else    {        RAISE( mediacontrol_InternalException, "Snapshot exception" );    }    return p_pic;}mediacontrol_RGBPicture **mediacontrol_all_snapshots( mediacontrol_Instance *self,                            mediacontrol_Exception *exception ){    exception=mediacontrol_exception_init( exception );    RAISE( mediacontrol_InternalException, "unsupported method" );    return NULL;}int mediacontrol_showtext( vout_thread_t *p_vout, int i_channel,                           char *psz_string, text_style_t *p_style,                           int i_flags, int i_hmargin, int i_vmargin,                           mtime_t i_start, mtime_t i_stop ){    subpicture_t *p_spu;    video_format_t fmt;    if( !psz_string ) return VLC_EGENERIC;    p_spu = spu_CreateSubpicture( p_vout->p_spu );    if( !p_spu ) return VLC_EGENERIC;    /* Create a new subpicture region */    memset( &fmt, 0, sizeof(video_format_t) );    fmt.i_chroma = VLC_FOURCC('T','E','X','T');    fmt.i_aspect = 0;    fmt.i_width = fmt.i_height = 0;    fmt.i_x_offset = fmt.i_y_offset = 0;    p_spu->p_region = p_spu->pf_create_region( VLC_OBJECT(p_vout), &fmt );    if( !p_spu->p_region )    {        msg_Err( p_vout, "cannot allocate SPU region" );        spu_DestroySubpicture( p_vout->p_spu, p_spu );        return VLC_EGENERIC;    }    p_spu->p_region->psz_text = strdup( psz_string );    p_spu->i_start = i_start;    p_spu->i_stop = i_stop;    p_spu->b_ephemer = VLC_FALSE;    p_spu->b_absolute = VLC_FALSE;    p_spu->i_x = i_hmargin;    p_spu->i_y = i_vmargin;    p_spu->i_flags = i_flags;    p_spu->i_channel = i_channel;    spu_DisplaySubpicture( p_vout->p_spu, p_spu );    return VLC_SUCCESS;}voidmediacontrol_display_text( mediacontrol_Instance *self,                           const char * message,                           const mediacontrol_Position * begin,                           const mediacontrol_Position * end,                           mediacontrol_Exception *exception ){    input_thread_t *p_input = NULL;    vout_thread_t *p_vout = NULL;    char* psz_message;    psz_message = strdup( message );    if( !psz_message )    {        RAISE( mediacontrol_InternalException, "no more memory" );        return;    }    p_vout = vlc_object_find( self->p_playlist, VLC_OBJECT_VOUT, FIND_CHILD );    if( ! p_vout )    {        RAISE( mediacontrol_InternalException, "no video output" );        return;    }    if( begin->origin == mediacontrol_RelativePosition &&        begin->value == 0 &&        end->origin == mediacontrol_RelativePosition )    {        mtime_t i_duration = 0;        mtime_t i_now = mdate();        i_duration = 1000 * mediacontrol_unit_convert(                                                self->p_playlist->p_input,                                                end->key,                                                mediacontrol_MediaTime,                                                end->value );        mediacontrol_showtext( p_vout, DEFAULT_CHAN, psz_message, NULL,                               OSD_ALIGN_BOTTOM | OSD_ALIGN_LEFT, 0, 0,                               i_now, i_now + i_duration );    }    else    {        mtime_t i_debut, i_fin, i_now;        p_input = self->p_playlist->p_input;        if( ! p_input )        {            RAISE( mediacontrol_InternalException, "No input" );            vlc_object_release( p_vout );            return;        }        /* FIXME */        /* i_now = input_ClockGetTS( p_input, NULL, 0 ); */        i_now = mdate();        i_debut = mediacontrol_position2microsecond( p_input,                                            ( mediacontrol_Position* ) begin );        i_debut += i_now;        i_fin = mediacontrol_position2microsecond( p_input,                                          ( mediacontrol_Position * ) end );        i_fin += i_now;        vout_ShowTextAbsolute( p_vout, DEFAULT_CHAN, psz_message, NULL,                               OSD_ALIGN_BOTTOM | OSD_ALIGN_LEFT, 0, 0,                               i_debut, i_fin );    }    vlc_object_release( p_vout );}unsigned shortmediacontrol_sound_get_volume( mediacontrol_Instance *self,                               mediacontrol_Exception *exception ){    short retval;    audio_volume_t i_volume;    if( !self->p_intf )    {        RAISE( mediacontrol_InternalException, "No interface module" );        return 0;    }    aout_VolumeGet( self->p_intf, &i_volume );    retval = i_volume;    return retval;}voidmediacontrol_sound_set_volume( mediacontrol_Instance *self,                               const unsigned short volume,                               mediacontrol_Exception *exception ){    if( !self->p_intf )    {        RAISE( mediacontrol_InternalException, "No interface module" );    }    else aout_VolumeSet( self->p_intf,( audio_volume_t )volume );}vlc_bool_t mediacontrol_set_visual( mediacontrol_Instance *self,                                    WINDOWHANDLE visual_id,                                    mediacontrol_Exception *exception ){    vlc_value_t value;    int ret;    if( !self->p_vlc )    {        RAISE( mediacontrol_InternalException, "No vlc reference" );        return VLC_FALSE;    }    value.i_int=visual_id;    ret = var_Set(self->p_vlc, "drawable", value);    return (ret == VLC_SUCCESS);}intmediacontrol_get_rate( mediacontrol_Instance *self,		       mediacontrol_Exception *exception ){    int retval;    input_thread_t *p_input = NULL;    p_input = self->p_playlist->p_input;    if( ! p_input )    {	    RAISE( mediacontrol_InternalException, "No input" );	    return 0;    }    retval = var_GetInteger(p_input, "rate") / 10;    return retval;}voidmediacontrol_set_rate( mediacontrol_Instance *self,		       const int rate,		       mediacontrol_Exception *exception ){    input_thread_t *p_input = NULL;    p_input = self->p_playlist->p_input;    if( ! p_input )    {	    RAISE( mediacontrol_InternalException, "No input" );	    return;    }    var_SetInteger(p_input, "rate", rate * 10);    return;}intmediacontrol_get_fullscreen( mediacontrol_Instance *self,			     mediacontrol_Exception *exception ){    vout_thread_t *p_vout = NULL;    vlc_value_t val;    int i_ret;    p_vout = vlc_object_find( self->p_playlist, VLC_OBJECT_VOUT, FIND_CHILD );    if( ! p_vout )    {        RAISE( mediacontrol_InternalException, "no video output" );        return 0;    }    i_ret = var_Get( p_vout, "fullscreen", &val );    vlc_object_release( p_vout );    if( i_ret )    {          RAISE( mediacontrol_InternalException, "Unexpected error while looking up fullscreen value" );          return 0;    }    return val.b_bool == VLC_TRUE ? 1 : 0;}voidmediacontrol_set_fullscreen( mediacontrol_Instance *self,			     const int b_fullscreen,			     mediacontrol_Exception *exception ){    vout_thread_t *p_vout = NULL;    vlc_value_t val;    int i_ret;    p_vout = vlc_object_find( self->p_playlist, VLC_OBJECT_VOUT, FIND_CHILD );    if( ! p_vout )    {        RAISE( mediacontrol_InternalException, "no video output" );        return;    }    if( b_fullscreen ) val.b_bool = VLC_TRUE;    else               val.b_bool = VLC_FALSE;    i_ret = var_Set( p_vout, "fullscreen", val );    vlc_object_release( p_vout );    if( i_ret )    {          RAISE( mediacontrol_InternalException, "Unexpected error while setting fullscreen value" );          return;    }    return;}

⌨️ 快捷键说明

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