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

📄 vout_intf.c

📁 uclinux 下的vlc播放器源代码
💻 C
📖 第 1 页 / 共 3 页
字号:
/***************************************************************************** * vout_intf.c : video output interface ***************************************************************************** * Copyright (C) 2000-2006 the VideoLAN team * $Id: vout_intf.c 19594 2007-04-01 00:48:20Z hartman $ * * Authors: Gildas Bazin <gbazin@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>                                                /* free() */#include <sys/types.h>                                          /* opendir() */#include <dirent.h>                                             /* opendir() */#include <vlc/vlc.h>#include <vlc/intf.h>#include <vlc_block.h>#include "vlc_video.h"#include "video_output.h"#include "vlc_image.h"#include "vlc_spu.h"#include "charset.h"#include <snapshot.h>#define DIR_SEP "\\"#define DIR_SEP "/"/***************************************************************************** * Local prototypes *****************************************************************************/static void InitWindowSize( vout_thread_t *, unsigned *, unsigned * );/* Object variables callbacks */static int ZoomCallback( vlc_object_t *, char const *,                         vlc_value_t, vlc_value_t, void * );static int CropCallback( vlc_object_t *, char const *,                         vlc_value_t, vlc_value_t, void * );static int AspectCallback( vlc_object_t *, char const *,                           vlc_value_t, vlc_value_t, void * );static int OnTopCallback( vlc_object_t *, char const *,                          vlc_value_t, vlc_value_t, void * );static int FullscreenCallback( vlc_object_t *, char const *,                               vlc_value_t, vlc_value_t, void * );static int SnapshotCallback( vlc_object_t *, char const *,                             vlc_value_t, vlc_value_t, void * );/***************************************************************************** * vout_RequestWindow: Create/Get a video window if possible. ***************************************************************************** * This function looks for the main interface and tries to request * a new video window. If it fails then the vout will still need to create the * window by itself. *****************************************************************************/void *vout_RequestWindow( vout_thread_t *p_vout,                          int *pi_x_hint, int *pi_y_hint,                          unsigned int *pi_width_hint,                          unsigned int *pi_height_hint ){    intf_thread_t *p_intf = NULL;    vlc_list_t *p_list;    void *p_window;    vlc_value_t val;    int i;    /* Small kludge */    if( !var_Type( p_vout, "aspect-ratio" ) ) vout_IntfInit( p_vout );    /* Get requested coordinates */    var_Get( p_vout, "video-x", &val );    *pi_x_hint = val.i_int ;    var_Get( p_vout, "video-y", &val );    *pi_y_hint = val.i_int;    *pi_width_hint = p_vout->i_window_width;    *pi_height_hint = p_vout->i_window_height;    /* Check whether someone provided us with a window ID */    var_Get( p_vout->p_vlc, "drawable", &val );    if( val.i_int ) return (void *)val.i_int;    /* Find if the main interface supports embedding */    p_list = vlc_list_find( p_vout, VLC_OBJECT_INTF, FIND_ANYWHERE );    if( !p_list ) return NULL;    for( i = 0; i < p_list->i_count; i++ )    {        p_intf = (intf_thread_t *)p_list->p_values[i].p_object;        if( p_intf->b_block && p_intf->pf_request_window ) break;        p_intf = NULL;    }    if( !p_intf )    {        vlc_list_release( p_list );        return NULL;    }    vlc_object_yield( p_intf );    vlc_list_release( p_list );    p_window = p_intf->pf_request_window( p_intf, p_vout, pi_x_hint, pi_y_hint,                                          pi_width_hint, pi_height_hint );    if( !p_window ) vlc_object_release( p_intf );    else p_vout->p_parent_intf = p_intf;    return p_window;}void vout_ReleaseWindow( vout_thread_t *p_vout, void *p_window ){    intf_thread_t *p_intf = p_vout->p_parent_intf;    if( !p_intf ) return;    vlc_mutex_lock( &p_intf->object_lock );    if( p_intf->b_dead )    {        vlc_mutex_unlock( &p_intf->object_lock );        return;    }    if( !p_intf->pf_release_window )    {        msg_Err( p_vout, "no pf_release_window");        vlc_mutex_unlock( &p_intf->object_lock );        vlc_object_release( p_intf );        return;    }    p_intf->pf_release_window( p_intf, p_window );    p_vout->p_parent_intf = NULL;    vlc_mutex_unlock( &p_intf->object_lock );    vlc_object_release( p_intf );}int vout_ControlWindow( vout_thread_t *p_vout, void *p_window,                        int i_query, va_list args ){    intf_thread_t *p_intf = p_vout->p_parent_intf;    int i_ret;    if( !p_intf ) return VLC_EGENERIC;    vlc_mutex_lock( &p_intf->object_lock );    if( p_intf->b_dead )    {        vlc_mutex_unlock( &p_intf->object_lock );        return VLC_EGENERIC;    }    if( !p_intf->pf_control_window )    {        msg_Err( p_vout, "no pf_control_window");        vlc_mutex_unlock( &p_intf->object_lock );        return VLC_EGENERIC;    }    i_ret = p_intf->pf_control_window( p_intf, p_window, i_query, args );    vlc_mutex_unlock( &p_intf->object_lock );    return i_ret;}/***************************************************************************** * vout_IntfInit: called during the vout creation to initialise misc things. *****************************************************************************/void vout_IntfInit( vout_thread_t *p_vout ){    vlc_value_t val, text, old_val;    vlc_bool_t b_force_par = VLC_FALSE;    char *psz_buf;    /* Create a few object variables we'll need later on */    var_Create( p_vout, "snapshot-path", VLC_VAR_STRING | VLC_VAR_DOINHERIT );    var_Create( p_vout, "snapshot-prefix", VLC_VAR_STRING | VLC_VAR_DOINHERIT );    var_Create( p_vout, "snapshot-format", VLC_VAR_STRING | VLC_VAR_DOINHERIT );    var_Create( p_vout, "snapshot-preview", VLC_VAR_BOOL | VLC_VAR_DOINHERIT );    var_Create( p_vout, "snapshot-sequential",                VLC_VAR_BOOL | VLC_VAR_DOINHERIT );    var_Create( p_vout, "snapshot-num", VLC_VAR_INTEGER );    var_SetInteger( p_vout, "snapshot-num", 1 );    var_Create( p_vout, "width", VLC_VAR_INTEGER | VLC_VAR_DOINHERIT );    var_Create( p_vout, "height", VLC_VAR_INTEGER | VLC_VAR_DOINHERIT );    var_Create( p_vout, "align", VLC_VAR_INTEGER | VLC_VAR_DOINHERIT );    var_Get( p_vout, "align", &val );    p_vout->i_alignment = val.i_int;    var_Create( p_vout, "video-x", VLC_VAR_INTEGER | VLC_VAR_DOINHERIT );    var_Create( p_vout, "video-y", VLC_VAR_INTEGER | VLC_VAR_DOINHERIT );    /* Zoom object var */    var_Create( p_vout, "zoom", VLC_VAR_FLOAT | VLC_VAR_ISCOMMAND |                VLC_VAR_HASCHOICE | VLC_VAR_DOINHERIT );    text.psz_string = _("Zoom");    var_Change( p_vout, "zoom", VLC_VAR_SETTEXT, &text, NULL );    var_Get( p_vout, "zoom", &old_val );    if( old_val.f_float == 0.25 ||        old_val.f_float == 0.5 ||        old_val.f_float == 1 ||        old_val.f_float == 2 )    {        var_Change( p_vout, "zoom", VLC_VAR_DELCHOICE, &old_val, NULL );    }    val.f_float = 0.25; text.psz_string = _("1:4 Quarter");    var_Change( p_vout, "zoom", VLC_VAR_ADDCHOICE, &val, &text );    val.f_float = 0.5; text.psz_string = _("1:2 Half");    var_Change( p_vout, "zoom", VLC_VAR_ADDCHOICE, &val, &text );    val.f_float = 1; text.psz_string = _("1:1 Original");    var_Change( p_vout, "zoom", VLC_VAR_ADDCHOICE, &val, &text );    val.f_float = 2; text.psz_string = _("2:1 Double");    var_Change( p_vout, "zoom", VLC_VAR_ADDCHOICE, &val, &text );    var_Set( p_vout, "zoom", old_val );    var_AddCallback( p_vout, "zoom", ZoomCallback, NULL );    /* Crop offset vars */    var_Create( p_vout, "crop-left", VLC_VAR_INTEGER );    var_Create( p_vout, "crop-top", VLC_VAR_INTEGER );    var_Create( p_vout, "crop-right", VLC_VAR_INTEGER );    var_Create( p_vout, "crop-bottom", VLC_VAR_INTEGER );    var_SetInteger( p_vout, "crop-left", 0 );    var_SetInteger( p_vout, "crop-top", 0 );    var_SetInteger( p_vout, "crop-right", 0 );    var_SetInteger( p_vout, "crop-bottom", 0 );    var_AddCallback( p_vout, "crop-left", CropCallback, NULL );    var_AddCallback( p_vout, "crop-top", CropCallback, NULL );    var_AddCallback( p_vout, "crop-right", CropCallback, NULL );    var_AddCallback( p_vout, "crop-bottom", CropCallback, NULL );    /* Crop object var */    var_Create( p_vout, "crop", VLC_VAR_STRING |                VLC_VAR_HASCHOICE | VLC_VAR_DOINHERIT );    text.psz_string = _("Crop");    var_Change( p_vout, "crop", VLC_VAR_SETTEXT, &text, NULL );    val.psz_string = "";    var_Change( p_vout, "crop", VLC_VAR_DELCHOICE, &val, 0 );    val.psz_string = ""; text.psz_string = _("Default");    var_Change( p_vout, "crop", VLC_VAR_ADDCHOICE, &val, &text );    val.psz_string = "1:1"; text.psz_string = "1:1";    var_Change( p_vout, "crop", VLC_VAR_ADDCHOICE, &val, &text );    val.psz_string = "4:3"; text.psz_string = "4:3";    var_Change( p_vout, "crop", VLC_VAR_ADDCHOICE, &val, &text );    val.psz_string = "16:9"; text.psz_string = "16:9";    var_Change( p_vout, "crop", VLC_VAR_ADDCHOICE, &val, &text );    val.psz_string = "16:10"; text.psz_string = "16:10";    var_Change( p_vout, "crop", VLC_VAR_ADDCHOICE, &val, &text );    val.psz_string = "221:100"; text.psz_string = "221:100";    var_Change( p_vout, "crop", VLC_VAR_ADDCHOICE, &val, &text );    val.psz_string = "5:4"; text.psz_string = "5:4";    var_Change( p_vout, "crop", VLC_VAR_ADDCHOICE, &val, &text );    /* Add custom crop ratios */    psz_buf = config_GetPsz( p_vout, "custom-crop-ratios" );    if( psz_buf && *psz_buf )    {        char *psz_cur = psz_buf;        char *psz_next;        while( psz_cur && *psz_cur )        {            psz_next = strchr( psz_cur, ',' );            if( psz_next )            {                *psz_next = '\0';                psz_next++;            }            val.psz_string = strdup( psz_cur );            text.psz_string = strdup( psz_cur );            var_Change( p_vout, "crop", VLC_VAR_ADDCHOICE, &val, &text);            free( val.psz_string );            free( text.psz_string );            psz_cur = psz_next;        }    }    if( psz_buf ) free( psz_buf );    var_AddCallback( p_vout, "crop", CropCallback, NULL );    var_Get( p_vout, "crop", &old_val );    if( old_val.psz_string && *old_val.psz_string )        var_Change( p_vout, "crop", VLC_VAR_TRIGGER_CALLBACKS, 0, 0 );    if( old_val.psz_string ) free( old_val.psz_string );    /* Monitor pixel aspect-ratio */    var_Create( p_vout, "monitor-par", VLC_VAR_STRING | VLC_VAR_DOINHERIT );    var_Get( p_vout, "monitor-par", &val );    if( val.psz_string && *val.psz_string )    {        char *psz_parser = strchr( val.psz_string, ':' );        unsigned int i_aspect_num = 0, i_aspect_den = 0;        float i_aspect = 0;        if( psz_parser )        {            i_aspect_num = strtol( val.psz_string, 0, 10 );            i_aspect_den = strtol( ++psz_parser, 0, 10 );        }        else        {            i_aspect = atof( val.psz_string );            vlc_ureduce( &i_aspect_num, &i_aspect_den,                         i_aspect *VOUT_ASPECT_FACTOR, VOUT_ASPECT_FACTOR, 0 );        }        if( !i_aspect_num || !i_aspect_den ) i_aspect_num = i_aspect_den = 1;        p_vout->i_par_num = i_aspect_num;        p_vout->i_par_den = i_aspect_den;        vlc_ureduce( &p_vout->i_par_num, &p_vout->i_par_den,                     p_vout->i_par_num, p_vout->i_par_den, 0 );        msg_Dbg( p_vout, "overriding monitor pixel aspect-ratio: %i:%i",                 p_vout->i_par_num, p_vout->i_par_den );        b_force_par = VLC_TRUE;    }    if( val.psz_string ) free( val.psz_string );    /* Aspect-ratio object var */    var_Create( p_vout, "aspect-ratio", VLC_VAR_STRING |                VLC_VAR_HASCHOICE | VLC_VAR_DOINHERIT );    text.psz_string = _("Aspect-ratio");    var_Change( p_vout, "aspect-ratio", VLC_VAR_SETTEXT, &text, NULL );    val.psz_string = "";    var_Change( p_vout, "aspect-ratio", VLC_VAR_DELCHOICE, &val, 0 );    val.psz_string = ""; text.psz_string = _("Default");    var_Change( p_vout, "aspect-ratio", VLC_VAR_ADDCHOICE, &val, &text );    val.psz_string = "1:1"; text.psz_string = "1:1";    var_Change( p_vout, "aspect-ratio", VLC_VAR_ADDCHOICE, &val, &text );    val.psz_string = "4:3"; text.psz_string = "4:3";    var_Change( p_vout, "aspect-ratio", VLC_VAR_ADDCHOICE, &val, &text );    val.psz_string = "16:9"; text.psz_string = "16:9";    var_Change( p_vout, "aspect-ratio", VLC_VAR_ADDCHOICE, &val, &text );    val.psz_string = "16:10"; text.psz_string = "16:10";    var_Change( p_vout, "aspect-ratio", VLC_VAR_ADDCHOICE, &val, &text );    val.psz_string = "221:100"; text.psz_string = "221:100";    var_Change( p_vout, "aspect-ratio", VLC_VAR_ADDCHOICE, &val, &text );    val.psz_string = "5:4"; text.psz_string = "5:4";    var_Change( p_vout, "aspect-ratio", VLC_VAR_ADDCHOICE, &val, &text );    /* Add custom aspect ratios */    psz_buf = config_GetPsz( p_vout, "custom-aspect-ratios" );    if( psz_buf && *psz_buf )    {        char *psz_cur = psz_buf;        char *psz_next;

⌨️ 快捷键说明

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