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
901bde54
Commit
901bde54
authored
Feb 06, 2003
by
Christophe Massiot
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed interface freezes in the OS X interface.
parent
a82ee54f
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
8 additions
and
8 deletions
+8
-8
include/vlc_threads.h
include/vlc_threads.h
+3
-3
modules/gui/macosx/intf.m
modules/gui/macosx/intf.m
+3
-3
src/input/input_ext-plugins.c
src/input/input_ext-plugins.c
+2
-2
No files found.
include/vlc_threads.h
View file @
901bde54
...
...
@@ -3,7 +3,7 @@
* This header provides portable declarations for mutexes & conditions
*****************************************************************************
* Copyright (C) 1999, 2002 VideoLAN
* $Id: vlc_threads.h,v 1.2
7 2003/02/06 21:39:34 titer
Exp $
* $Id: vlc_threads.h,v 1.2
8 2003/02/06 23:55:28 massiot
Exp $
*
* Authors: Jean-Marc Dressler <polux@via.ecp.fr>
* Samuel Hocevar <sam@via.ecp.fr>
...
...
@@ -72,10 +72,10 @@
/* Thread priorities */
#ifdef SYS_DARWIN
# define VLC_THREAD_PRIORITY_LOW 3
1
# define VLC_THREAD_PRIORITY_LOW 3
2
# define VLC_THREAD_PRIORITY_INPUT 34
# define VLC_THREAD_PRIORITY_AUDIO 35
# define VLC_THREAD_PRIORITY_VIDEO 3
2
# define VLC_THREAD_PRIORITY_VIDEO 3
1
# define VLC_THREAD_PRIORITY_OUTPUT 33
#elif defined(WIN32) || defined(UNDER_CE)
...
...
modules/gui/macosx/intf.m
View file @
901bde54
...
...
@@ -2,7 +2,7 @@
* intf.m: MacOS X interface plugin
*****************************************************************************
* Copyright (C) 2002-2003 VideoLAN
* $Id: intf.m,v 1.4
6 2003/02/05 16:23:06 hartman
Exp $
* $Id: intf.m,v 1.4
7 2003/02/06 23:55:28 massiot
Exp $
*
* Authors: Jon Lech Johansen <jon-vl@nanocrew.net>
* Christophe Massiot <massiot@via.ecp.fr>
...
...
@@ -360,7 +360,7 @@ int ExecuteOnMainThread( id target, SEL sel, void * p_arg )
addPort:
p_intf
->
p_sys
->
o_sendport
forMode:
NSDefaultRunLoopMode
];
[
NSTimer
scheduledTimerWithTimeInterval
:
0
.
1
[
NSTimer
scheduledTimerWithTimeInterval
:
0
.
5
target:
self
selector
:
@selector
(
manageIntf
:
)
userInfo:
nil
repeats
:
TRUE
];
...
...
@@ -405,7 +405,7 @@ int ExecuteOnMainThread( id target, SEL sel, void * p_arg )
vlc_mutex_unlock
(
&
p_intf
->
change_lock
);
o_sleep_date
=
[
NSDate
dateWithTimeIntervalSinceNow
:
0
.
1
];
o_sleep_date
=
[
NSDate
dateWithTimeIntervalSinceNow
:
.
5
];
[
NSThread
sleepUntilDate
:
o_sleep_date
];
}
...
...
src/input/input_ext-plugins.c
View file @
901bde54
...
...
@@ -2,7 +2,7 @@
* input_ext-plugins.c: useful functions for access and demux plug-ins
*****************************************************************************
* Copyright (C) 2001, 2002 VideoLAN
* $Id: input_ext-plugins.c,v 1.2
7 2003/01/25 03:12:20 fenrir
Exp $
* $Id: input_ext-plugins.c,v 1.2
8 2003/02/06 23:55:29 massiot
Exp $
*
* Authors: Christophe Massiot <massiot@via.ecp.fr>
*
...
...
@@ -145,7 +145,7 @@ void input_BuffersEnd( input_thread_t * p_input, input_buffers_t * p_buffers )
if
(
p_buffers
->
i_allocated
)
{
msg_Err
(
p_input
,
"%
d
bytes have not been freed, "
msg_Err
(
p_input
,
"%
u
bytes have not been freed, "
"expect memory leak"
,
p_buffers
->
i_allocated
);
}
...
...
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