Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
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
Commits
d1adb68e
Commit
d1adb68e
authored
Jun 08, 2002
by
Sam Hocevar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* ./plugins/macosx/*: additional minor fixes.
parent
58ac1870
Changes
9
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
19 additions
and
26 deletions
+19
-26
plugins/macosx/intf_controller.m
plugins/macosx/intf_controller.m
+2
-2
plugins/macosx/intf_macosx.m
plugins/macosx/intf_macosx.m
+2
-2
plugins/macosx/intf_open.m
plugins/macosx/intf_open.m
+2
-2
plugins/macosx/macosx.h
plugins/macosx/macosx.h
+3
-1
plugins/macosx/macosx.m
plugins/macosx/macosx.m
+2
-2
plugins/macosx/vout_macosx.m
plugins/macosx/vout_macosx.m
+1
-3
plugins/macosx/vout_qdview.m
plugins/macosx/vout_qdview.m
+2
-2
plugins/macosx/vout_vlc_wrapper.m
plugins/macosx/vout_vlc_wrapper.m
+3
-10
plugins/macosx/vout_window.m
plugins/macosx/vout_window.m
+2
-2
No files found.
plugins/macosx/intf_controller.m
View file @
d1adb68e
/*****************************************************************************
* intf_controller.
c
: MacOS X plugin for vlc
* intf_controller.
m
: MacOS X plugin for vlc
*****************************************************************************
* Copyright (C) 2001 VideoLAN
* $Id: intf_controller.m,v 1.
8 2002/06/02 22:31:52 massiot
Exp $
* $Id: intf_controller.m,v 1.
9 2002/06/08 19:32:19 sam
Exp $
*
* Authors: Florian G. Pflug <fgp@phlo.org>
* Jon Lech Johansen <jon-vl@nanocrew.net>
...
...
plugins/macosx/intf_macosx.m
View file @
d1adb68e
/*****************************************************************************
* intf_macosx.
c
: MacOS X interface plugin
* intf_macosx.
m
: MacOS X interface plugin
*****************************************************************************
* Copyright (C) 2001 VideoLAN
* $Id: intf_macosx.m,v 1.
4 2002/06/02 12:16:31 massiot
Exp $
* $Id: intf_macosx.m,v 1.
5 2002/06/08 19:32:19 sam
Exp $
*
* Authors: Colin Delacroix <colin@zoy.org>
* Florian G. Pflug <fgp@phlo.org>
...
...
plugins/macosx/intf_open.m
View file @
d1adb68e
/*****************************************************************************
* intf_open.
c
: MacOS X plugin for vlc
* intf_open.
m
: MacOS X plugin for vlc
*****************************************************************************
* Copyright (C) 2001 VideoLAN
* $Id: intf_open.m,v 1.
4 2002/06/02 22:31:52 massiot
Exp $
* $Id: intf_open.m,v 1.
5 2002/06/08 19:32:19 sam
Exp $
*
* Authors: Jon Lech Johansen <jon-vl@nanocrew.net>
*
...
...
plugins/macosx/macosx.h
View file @
d1adb68e
...
...
@@ -2,7 +2,7 @@
* macosx.h: MacOS X plugin for vlc
*****************************************************************************
* Copyright (C) 2001 VideoLAN
* $Id: macosx.h,v 1.1
2 2002/06/02 12:16:31 massiot
Exp $
* $Id: macosx.h,v 1.1
3 2002/06/08 19:32:19 sam
Exp $
*
* Authors: Colin Delacroix <colin@zoy.org>
* Eugenio Jarosiewicz <ej0@cise.ufl.edu>
...
...
@@ -67,6 +67,8 @@ struct vout_sys_s
MatrixRecordPtr
p_matrix
;
DecompressorComponent
img_dc
;
ImageDescriptionHandle
h_img_descr
;
intf_thread_t
*
p_intf
;
};
/*****************************************************************************
...
...
plugins/macosx/macosx.m
View file @
d1adb68e
/*****************************************************************************
* macosx.
c
: MacOS X plugin for vlc
* macosx.
m
: MacOS X plugin for vlc
*****************************************************************************
* Copyright (C) 2001 VideoLAN
* $Id: macosx.m,v 1.
2 2002/06/01 12:32:00
sam Exp $
* $Id: macosx.m,v 1.
3 2002/06/08 19:32:19
sam Exp $
*
* Authors: Colin Delacroix
<colin
@
zoy
.
org
>
* Eugenio Jarosiewicz
<ej0
@
cise
.
ufl
.
edu
>
...
...
plugins/macosx/vout_macosx.m
View file @
d1adb68e
...
...
@@ -39,8 +39,6 @@
struct picture_sys_s
{
intf_thread_t *p_intf;
void *p_info;
unsigned int i_size;
...
...
@@ -103,7 +101,7 @@ static int vout_Create( vout_thread_t *p_vout )
}
if( p_intf->p_module == NULL
|| strcmp( p_intf->p_module->psz_name, MODULE_STRING ) != 0 )
|| strcmp( p_intf->p_module->psz_
object_
name, MODULE_STRING ) != 0 )
{
msg_Err( p_vout, "MacOS X interface module required" );
vlc_object_release( p_intf );
...
...
plugins/macosx/vout_qdview.m
View file @
d1adb68e
/*****************************************************************************
* vout_qdview.
c
: MacOS X plugin for vlc
* vout_qdview.
m
: MacOS X plugin for vlc
*****************************************************************************
* Copyright (C) 2001 VideoLAN
* $Id: vout_qdview.m,v 1.
3 2002/05/18 18:48:24 massiot
Exp $
* $Id: vout_qdview.m,v 1.
4 2002/06/08 19:32:19 sam
Exp $
*
* Authors: Florian G. Pflug <fgp@phlo.org>
* Jon Lech Johansen <jon-vl@nanocrew.net>
...
...
plugins/macosx/vout_vlc_wrapper.m
View file @
d1adb68e
/*****************************************************************************
* vout_vlc_wrapper.
c
: MacOS X plugin for vlc
* vout_vlc_wrapper.
m
: MacOS X plugin for vlc
*****************************************************************************
* Copyright (C) 2001 VideoLAN
* $Id: vout_vlc_wrapper.m,v 1.
4 2002/06/01 23:42:04 massiot
Exp $
* $Id: vout_vlc_wrapper.m,v 1.
5 2002/06/08 19:32:19 sam
Exp $
*
* Authors: Jon Lech Johansen <jon-vl@nanocrew.net>
*
...
...
@@ -126,14 +126,7 @@ static Vout_VLCWrapper *o_vout = nil;
break
;
case
' '
:
if
(
p_input_bank
->
pp_input
[
0
]
!=
NULL
)
{
input_SetStatus
(
p_input_bank
->
pp_input
[
0
],
INPUT_STATUS_PAUSE
);
vlc_mutex_lock
(
&
p_main
->
p_playlist
->
change_lock
);
p_main
->
p_playlist
->
b_stopped
=
0
;
vlc_mutex_unlock
(
&
p_main
->
p_playlist
->
change_lock
);
}
input_SetStatus
(
p_vout
,
INPUT_STATUS_PAUSE
);
break
;
default:
...
...
plugins/macosx/vout_window.m
View file @
d1adb68e
/*****************************************************************************
* vout_window.
c
: MacOS X plugin for vlc
* vout_window.
m
: MacOS X plugin for vlc
*****************************************************************************
* Copyright (C) 2001 VideoLAN
* $Id: vout_window.m,v 1.
2 2002/06/01 12:32:00
sam Exp $
* $Id: vout_window.m,v 1.
3 2002/06/08 19:32:19
sam Exp $
*
* Authors: Jon Lech Johansen <jon-vl@nanocrew.net>
*
...
...
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