Changeset 5e0c0bbd7b23d538b5d1d5ea5c9c89adee3a92b8

Show
Ignore:
Timestamp:
01/09/07 13:57:33 (1 year ago)
Author:
Felix Paul Kühne <fkuehne@videolan.org>
git-committer:
Felix Paul Kühne <fkuehne@videolan.org> 1188647853 +0000
git-parent:

[c08be60a2fdbcd093e4f6920737f6b12e61d7888]

git-author:
Felix Paul Kühne <fkuehne@videolan.org> 1188647853 +0000
Message:

* set svn:keywords correctly and fixed some minor stuff here and there

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • modules/gui/minimal_macosx/VLCMinimalVoutWindow.h

    r8d7e530 r5e0c0bb  
    22 * VLCMinimalVoutWindow.h: MacOS X Minimal window for a vout 
    33 ***************************************************************************** 
    4  * Copyright (C) 2001-2004 the VideoLAN team 
     4 * Copyright (C) 2007 the VideoLAN team 
    55 * $Id$ 
    66 * 
  • modules/gui/minimal_macosx/VLCMinimalVoutWindow.m

    r8d7e530 r5e0c0bb  
    22 * VLCMinimalVoutWindow.m: MacOS X Minimal interface window 
    33 ***************************************************************************** 
    4  * Copyright (C) 2001-2004 the VideoLAN team 
     4 * Copyright (C) 2007 the VideoLAN team 
    55 * $Id$ 
    66 * 
  • modules/gui/minimal_macosx/VLCOpenGLVoutView.h

    r437d815 r5e0c0bb  
    22 * VLCOpenGLVoutView.h: MacOS X OpenGL provider 
    33 ***************************************************************************** 
    4  * Copyright (C) 2001-2004 the VideoLAN team 
     4 * Copyright (C) 2001-2007 the VideoLAN team 
    55 * $Id$ 
    66 * 
  • modules/gui/minimal_macosx/VLCOpenGLVoutView.m

    r8d7e530 r5e0c0bb  
    22 * VLCOpenGLVoutView.m: MacOS X OpenGL provider 
    33 ***************************************************************************** 
    4  * Copyright (C) 2001-2004 the VideoLAN team 
     4 * Copyright (C) 2001-2007 the VideoLAN team 
    55 * $Id$ 
    66 * 
     
    1212 *          Benjamin Pracht <bigben at videolan dot org> 
    1313 *          Damien Fouilleul <damienf at videolan dot org> 
    14  *          Pierr d'Herbemont <pdherbemont at videolan dot org> 
     14 *          Pierre d'Herbemont <pdherbemont at videolan dot org> 
    1515 * 
    1616 * This program is free software; you can redistribute it and/or modify 
  • modules/gui/minimal_macosx/intf.h

    r8d7e530 r5e0c0bb  
    22 * intf.h: MacOS X interface module 
    33 ***************************************************************************** 
    4  * Copyright (C) 2002-2006 the VideoLAN team 
     4 * Copyright (C) 2002-2007 the VideoLAN team 
    55 * $Id$ 
    66 * 
     
    3737 * Local prototypes. 
    3838 *****************************************************************************/ 
    39   
    40 /* switch this to 1, if you want to use Obj-C with GC */ 
    41 #define GC_ENABLED 0 
    4239 
    4340/***************************************************************************** 
  • modules/gui/minimal_macosx/macosx.c

    r2d1afcc r5e0c0bb  
    11/***************************************************************************** 
    2  * macosx.m: Mac OS X module for vlc 
     2 * macosx.m: minimal Mac OS X module for vlc 
    33 ***************************************************************************** 
    4  * Copyright (C) 2001-2006 the VideoLAN team 
     4 * Copyright (C) 2001-2007 the VideoLAN team 
    55 * $Id$ 
    66 * 
     
    4949    /* Minimal interface. see intf.m */ 
    5050    set_shortname( _( "minimal_macosx" )); 
    51     set_description( _("Mac OS X minimal interface") ); 
     51    set_description( _("Minimal Mac OS X interface") ); 
    5252    set_capability( "interface", 50 ); 
    5353    set_callbacks( E_(OpenIntf), E_(CloseIntf) ); 
     
    5757    add_submodule(); 
    5858        /* Will be loaded even without interface module. see voutgl.m */ 
    59         set_description( "Mac OS X minimal OpenGL video output (opens a borderless window)" ); 
     59        set_description( _("Minimal Mac OS X OpenGL video output (opens a borderless window)") ); 
    6060        set_capability( "opengl provider", 50 ); 
    6161        set_category( CAT_VIDEO); 
  • modules/gui/minimal_macosx/voutagl.m

    r437d815 r5e0c0bb  
    22 * voutagl.c: MacOS X agl OpenGL provider (used by webbrowser.plugin) 
    33 ***************************************************************************** 
    4  * Copyright (C) 2001-2004 the VideoLAN team 
     4 * Copyright (C) 2001-2007 the VideoLAN team 
    55 * $Id$ 
    66 * 
     
    6767    if( NULL == pixFormat ) 
    6868    { 
    69         msg_Err( p_vout, "no screen renderer available for required attributes." ); 
     69        msg_Err( p_vout, "No screen renderer available for required attributes." ); 
    7070        return VLC_EGENERIC; 
    7171    } 
     
    7575    if( NULL == p_vout->p_sys->agl_ctx ) 
    7676    { 
    77         msg_Err( p_vout, "cannot create AGL context." ); 
     77        msg_Err( p_vout, "Cannot create AGL context." ); 
    7878        return VLC_EGENERIC; 
    7979    } 
  • modules/gui/minimal_macosx/voutgl.h

    r437d815 r5e0c0bb  
    22 * voutgl.h: MacOS X OpenGL provider 
    33 ***************************************************************************** 
    4  * Copyright (C) 2001-2006 the VideoLAN team 
     4 * Copyright (C) 2001-2007 the VideoLAN team 
    55 * $Id$ 
    66 * 
  • modules/gui/minimal_macosx/voutgl.m

    r437d815 r5e0c0bb  
    22 * voutgl.m: MacOS X OpenGL provider 
    33 ***************************************************************************** 
    4  * Copyright (C) 2001-2004 the VideoLAN team 
     4 * Copyright (C) 2001-2007 the VideoLAN team 
    55 * $Id$ 
    66 * 
     
    4141    if( !CGDisplayUsesOpenGLAcceleration( kCGDirectMainDisplay ) ) 
    4242    { 
    43         msg_Warn( p_vout, "no OpenGL hardware acceleration found. " 
     43        msg_Warn( p_vout, "No OpenGL hardware acceleration found. " 
    4444                          "Video display will be slow" ); 
    4545        return( 1 );