Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-gpu
Commits
ed203c00
Commit
ed203c00
authored
Feb 23, 2005
by
Derk-Jan Hartman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* Update copyright to 2005 where appropriate.
parent
837444bb
Changes
12
Show whitespace changes
Inline
Side-by-side
Showing
12 changed files
with
14 additions
and
14 deletions
+14
-14
modules/gui/macosx/about.h
modules/gui/macosx/about.h
+1
-1
modules/gui/macosx/about.m
modules/gui/macosx/about.m
+1
-1
modules/gui/macosx/controls.h
modules/gui/macosx/controls.h
+1
-1
modules/gui/macosx/controls.m
modules/gui/macosx/controls.m
+1
-1
modules/gui/macosx/macosx.m
modules/gui/macosx/macosx.m
+1
-1
modules/gui/macosx/open.h
modules/gui/macosx/open.h
+1
-1
modules/gui/macosx/open.m
modules/gui/macosx/open.m
+1
-1
modules/gui/macosx/playlistinfo.m
modules/gui/macosx/playlistinfo.m
+1
-1
modules/gui/macosx/vout.h
modules/gui/macosx/vout.h
+1
-1
modules/gui/macosx/vout.m
modules/gui/macosx/vout.m
+3
-3
modules/gui/macosx/voutgl.m
modules/gui/macosx/voutgl.m
+1
-1
modules/gui/macosx/voutqt.m
modules/gui/macosx/voutqt.m
+1
-1
No files found.
modules/gui/macosx/about.h
View file @
ed203c00
/*****************************************************************************
* about.h: MacOS X About Panel
*****************************************************************************
* Copyright (C) 2001-200
3
VideoLAN
* Copyright (C) 2001-200
5
VideoLAN
* $Id$
*
* Authors: Derk-Jan Hartman <thedj@users.sourceforge.net>
...
...
modules/gui/macosx/about.m
View file @
ed203c00
/*****************************************************************************
* about.m: MacOS X About Panel
*****************************************************************************
* Copyright (C) 2001-200
3
VideoLAN
* Copyright (C) 2001-200
5
VideoLAN
* $Id$
*
* Authors: Derk-Jan Hartman <thedj@users.sourceforge.net>
...
...
modules/gui/macosx/controls.h
View file @
ed203c00
/*****************************************************************************
* controls.h: MacOS X interface module
*****************************************************************************
* Copyright (C) 2002-200
3
VideoLAN
* Copyright (C) 2002-200
5
VideoLAN
* $Id$
*
* Authors: Jon Lech Johansen <jon-vl@nanocrew.net>
...
...
modules/gui/macosx/controls.m
View file @
ed203c00
/*****************************************************************************
* controls.m: MacOS X interface module
*****************************************************************************
* Copyright (C) 2002-200
3
VideoLAN
* Copyright (C) 2002-200
5
VideoLAN
* $Id$
*
* Authors: Jon Lech Johansen <jon-vl@nanocrew.net>
...
...
modules/gui/macosx/macosx.m
View file @
ed203c00
/*****************************************************************************
* macosx.m: Mac OS X module for vlc
*****************************************************************************
* Copyright (C) 2001-200
3
VideoLAN
* Copyright (C) 2001-200
5
VideoLAN
* $Id$
*
* Authors: Colin Delacroix
<colin
@
zoy
.
org
>
...
...
modules/gui/macosx/open.h
View file @
ed203c00
/*****************************************************************************
* open.h: MacOS X module for vlc
*****************************************************************************
* Copyright (C) 2002-200
3
VideoLAN
* Copyright (C) 2002-200
5
VideoLAN
* $Id$
*
* Authors: Jon Lech Johansen <jon-vl@nanocrew.net>
...
...
modules/gui/macosx/open.m
View file @
ed203c00
/*****************************************************************************
* open.m: MacOS X module for vlc
*****************************************************************************
* Copyright (C) 2002-200
3
VideoLAN
* Copyright (C) 2002-200
5
VideoLAN
* $Id$
*
* Authors: Jon Lech Johansen <jon-vl@nanocrew.net>
...
...
modules/gui/macosx/playlistinfo.m
View file @
ed203c00
/*****************************************************************************
r playlistinfo.m: MacOS X interface module
*****************************************************************************
* Copyright (C) 2002-200
4
VideoLAN
* Copyright (C) 2002-200
5
VideoLAN
* $Id$
*
* Authors: Benjamin Pracht <bigben at videolan dot org>
...
...
modules/gui/macosx/vout.h
View file @
ed203c00
/*****************************************************************************
* vout.h: MacOS X interface module
*****************************************************************************
* Copyright (C) 2001-200
3
VideoLAN
* Copyright (C) 2001-200
5
VideoLAN
* $Id$
*
* Authors: Colin Delacroix <colin@zoy.org>
...
...
modules/gui/macosx/vout.m
View file @
ed203c00
/*****************************************************************************
* vout.m: MacOS X video output module
*****************************************************************************
* Copyright (C) 2001-200
3
VideoLAN
* Copyright (C) 2001-200
5
VideoLAN
* $Id$
*
* Authors: Colin Delacroix <colin@zoy.org>
...
...
@@ -326,16 +326,16 @@
-
(
void
)
toggleFloatOnTop
{
vlc_value_t
val
;
if
(
var_Get
(
p_vout
,
"video-on-top"
,
&
val
)
>=
0
&&
val
.
b_bool
)
{
val
.
b_bool
=
VLC_FALSE
;
var_Set
(
p_vout
,
"video-on-top"
,
val
);
}
else
{
val
.
b_bool
=
VLC_TRUE
;
var_Set
(
p_vout
,
"video-on-top"
,
val
);
}
var_Set
(
p_vout
,
"video-on-top"
,
val
);
}
-
(
void
)
toggleFullscreen
...
...
modules/gui/macosx/voutgl.m
View file @
ed203c00
/*****************************************************************************
* voutgl.m: MacOS X OpenGL provider
*****************************************************************************
* Copyright (C) 2001-200
3
VideoLAN
* Copyright (C) 2001-200
4
VideoLAN
* $Id: vout.m 8351 2004-08-02 13:06:38Z hartman $
*
* Authors: Colin Delacroix <colin@zoy.org>
...
...
modules/gui/macosx/voutqt.m
View file @
ed203c00
/*****************************************************************************
* vout.m: MacOS X video output module
*****************************************************************************
* Copyright (C) 2001-200
3
VideoLAN
* Copyright (C) 2001-200
4
VideoLAN
* $Id: vout.m 8351 2004-08-02 13:06:38Z hartman $
*
* Authors: Colin Delacroix <colin@zoy.org>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment