Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-1.1
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-1.1
Commits
924d4ff8
Commit
924d4ff8
authored
Oct 10, 2009
by
Felix Paul Kühne
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
macosx: fixed logic errors in previous commit pointed by Pierre
parent
0d24c85c
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
42 additions
and
42 deletions
+42
-42
modules/gui/macosx/AppleRemote.m
modules/gui/macosx/AppleRemote.m
+42
-42
No files found.
modules/gui/macosx/AppleRemote.m
View file @
924d4ff8
...
...
@@ -66,7 +66,7 @@ const NSTimeInterval HOLD_RECOGNITION_TIME_INTERVAL=0.4;
#pragma public interface
-
(
id
)
init
{
self
=
[
super
init
];
if
((
self
=
[
super
init
]))
{
openInExclusiveMode
=
YES
;
queue
=
NULL
;
hidDeviceInterface
=
NULL
;
...
...
@@ -104,7 +104,7 @@ const NSTimeInterval HOLD_RECOGNITION_TIME_INTERVAL=0.4;
[
cookieToButtonMapping
setObject
:[
NSNumber
numberWithInt
:
kRemoteButtonPlay_Sleep
]
forKey
:
@"37_33_21_20_2_37_33_21_20_2_"
];
[
cookieToButtonMapping
setObject
:[
NSNumber
numberWithInt
:
kRemoteControl_Switched
]
forKey
:
@"42_33_21_20_14_12_2_"
];
}
}
/* defaults */
[
self
setSimulatesPlusMinusHold
:
YES
];
...
...
@@ -347,7 +347,7 @@ static AppleRemote* sharedInstance=nil;
if
(
cookieString
==
nil
||
[
cookieString
length
]
==
0
)
return
nil
;
NSEnumerator
*
keyEnum
=
[[
self
cookieToButtonMapping
]
keyEnumerator
];
NSString
*
key
;
while
(
key
==
[
keyEnum
nextObject
]
)
{
while
(
(
key
=
[
keyEnum
nextObject
])
)
{
NSRange
range
=
[
cookieString
rangeOfString
:
key
];
if
(
range
.
location
==
0
)
return
key
;
}
...
...
@@ -458,7 +458,7 @@ static AppleRemote* sharedInstance=nil;
// happen when the main thread is too busy to handle all incoming events in time.
NSString
*
subCookieString
;
NSString
*
lastSubCookieString
=
nil
;
while
(
subCookieString
==
[
self
validCookieSubstring
:
cookieString
]
)
{
while
(
(
subCookieString
=
[
self
validCookieSubstring
:
cookieString
])
)
{
cookieString
=
[
cookieString
substringFromIndex
:
[
subCookieString
length
]];
lastSubCookieString
=
subCookieString
;
if
(
processesBacklog
)
[
self
handleEventWithCookieString
:
subCookieString
sumOfValues
:
sumOfValues
];
...
...
@@ -670,7 +670,7 @@ static void QueueCallbackFunction(void* target, IOReturn result, void* refcon,
@implementation
AppleRemoteApplicationDelegate
-
(
id
)
initWithApplicationDelegate
:
(
id
)
delegate
{
self
=
[
super
init
];
if
((
self
=
[
super
init
]))
applicationDelegate
=
[
delegate
retain
];
return
self
;
}
...
...
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