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
4c1a614b
Commit
4c1a614b
authored
Dec 26, 2009
by
Felix Paul Kühne
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
osx/framework: propagate NSInteger and NSUInteger
parent
474b2271
Changes
15
Hide whitespace changes
Inline
Side-by-side
Showing
15 changed files
with
73 additions
and
73 deletions
+73
-73
projects/macosx/framework/Headers/Public/VLCAudio.h
projects/macosx/framework/Headers/Public/VLCAudio.h
+1
-1
projects/macosx/framework/Headers/Public/VLCMediaList.h
projects/macosx/framework/Headers/Public/VLCMediaList.h
+8
-8
projects/macosx/framework/Headers/Public/VLCMediaListAspect.h
...ects/macosx/framework/Headers/Public/VLCMediaListAspect.h
+3
-3
projects/macosx/framework/Headers/Public/VLCMediaListPlayer.h
...ects/macosx/framework/Headers/Public/VLCMediaListPlayer.h
+1
-1
projects/macosx/framework/Headers/Public/VLCMediaPlayer.h
projects/macosx/framework/Headers/Public/VLCMediaPlayer.h
+5
-5
projects/macosx/framework/Headers/Public/VLCStreamSession.h
projects/macosx/framework/Headers/Public/VLCStreamSession.h
+1
-1
projects/macosx/framework/Headers/Public/VLCTime.h
projects/macosx/framework/Headers/Public/VLCTime.h
+1
-1
projects/macosx/framework/Sources/VLCAudio.m
projects/macosx/framework/Sources/VLCAudio.m
+4
-4
projects/macosx/framework/Sources/VLCEventManager.m
projects/macosx/framework/Sources/VLCEventManager.m
+1
-1
projects/macosx/framework/Sources/VLCLibrary.m
projects/macosx/framework/Sources/VLCLibrary.m
+1
-1
projects/macosx/framework/Sources/VLCMediaList.m
projects/macosx/framework/Sources/VLCMediaList.m
+13
-13
projects/macosx/framework/Sources/VLCMediaListAspect.m
projects/macosx/framework/Sources/VLCMediaListAspect.m
+14
-14
projects/macosx/framework/Sources/VLCMediaPlayer.m
projects/macosx/framework/Sources/VLCMediaPlayer.m
+18
-18
projects/macosx/framework/Sources/VLCTime.m
projects/macosx/framework/Sources/VLCTime.m
+1
-1
projects/macosx/framework/Sources/VLCVideoView.m
projects/macosx/framework/Sources/VLCVideoView.m
+1
-1
No files found.
projects/macosx/framework/Headers/Public/VLCAudio.h
View file @
4c1a614b
...
...
@@ -42,7 +42,7 @@ extern NSString * VLCMediaPlayerVolumeChanged;
-
(
void
)
setMute
:(
BOOL
)
value
;
@property
(
setter
=
setMute
:
)
BOOL
isMuted
;
@property
(
assign
)
int
volume
;
@property
(
assign
)
NSUInteger
volume
;
-
(
void
)
volumeDown
;
-
(
void
)
volumeUp
;
...
...
projects/macosx/framework/Headers/Public/VLCMediaList.h
View file @
4c1a614b
...
...
@@ -39,12 +39,12 @@ extern NSString * VLCMediaListItemDeleted;
/**
* TODO: Documentation - [VLCMediaListDelegate mediaList:mediaAdded:atIndex:]
*/
-
(
void
)
mediaList
:(
VLCMediaList
*
)
aMediaList
mediaAdded
:(
VLCMedia
*
)
media
atIndex
:(
int
)
index
;
-
(
void
)
mediaList
:(
VLCMediaList
*
)
aMediaList
mediaAdded
:(
VLCMedia
*
)
media
atIndex
:(
NSInteger
)
index
;
/**
* TODO: Documentation - [VLCMediaListDelegate mediaList:mediaRemovedAtIndex:]
*/
-
(
void
)
mediaList
:(
VLCMediaList
*
)
aMediaList
mediaRemovedAtIndex
:(
int
)
index
;
-
(
void
)
mediaList
:(
VLCMediaList
*
)
aMediaList
mediaRemovedAtIndex
:(
NSInteger
)
index
;
@end
/**
...
...
@@ -75,33 +75,33 @@ extern NSString * VLCMediaListItemDeleted;
/**
* TODO: Documentation - [VLCMediaList addMedia:]
*/
-
(
int
)
addMedia
:(
VLCMedia
*
)
media
;
-
(
NSInteger
)
addMedia
:(
VLCMedia
*
)
media
;
/**
* TODO: Documentation - [VLCMediaList insertMedia:atIndex:]
*/
-
(
void
)
insertMedia
:(
VLCMedia
*
)
media
atIndex
:(
int
)
index
;
-
(
void
)
insertMedia
:(
VLCMedia
*
)
media
atIndex
:(
NSInteger
)
index
;
/**
* TODO: Documentation - [VLCMediaList removeMediaAtIndex:]
*/
-
(
void
)
removeMediaAtIndex
:(
int
)
index
;
-
(
void
)
removeMediaAtIndex
:(
NSInteger
)
index
;
/**
* TODO: Documentation - [VLCMediaList mediaAtIndex:]
*/
-
(
VLCMedia
*
)
mediaAtIndex
:(
int
)
index
;
-
(
VLCMedia
*
)
mediaAtIndex
:(
NSInteger
)
index
;
/**
* TODO: Documentation - [VLCMediaList indexOfMedia:]
*/
-
(
int
)
indexOfMedia
:(
VLCMedia
*
)
media
;
-
(
NSInteger
)
indexOfMedia
:(
VLCMedia
*
)
media
;
/* Properties */
/**
* TODO: Documentation VLCMediaList.count
*/
@property
(
readonly
)
int
count
;
@property
(
readonly
)
NSInteger
count
;
/**
* TODO: Documentation VLCMediaList.delegate
...
...
projects/macosx/framework/Headers/Public/VLCMediaListAspect.h
View file @
4c1a614b
...
...
@@ -44,9 +44,9 @@
VLCMediaList
*
parentMediaList
;
BOOL
ownHisMediaList
;
}
-
(
VLCMedia
*
)
mediaAtIndex
:(
int
)
index
;
-
(
VLCMediaListAspectNode
*
)
nodeAtIndex
:(
int
)
index
;
-
(
int
)
count
;
-
(
VLCMedia
*
)
mediaAtIndex
:(
NSInteger
)
index
;
-
(
VLCMediaListAspectNode
*
)
nodeAtIndex
:(
NSInteger
)
index
;
-
(
NSInteger
)
count
;
-
(
VLCMediaList
*
)
parentMediaList
;
@end
projects/macosx/framework/Headers/Public/VLCMediaListPlayer.h
View file @
4c1a614b
...
...
@@ -35,7 +35,7 @@ enum VLCRepeatMode {
VLCRepeatCurrentItem
,
VLCRepeatAllItems
};
typedef
int
VLCRepeatMode
;
typedef
NSInteger
VLCRepeatMode
;
@interface
VLCMediaListPlayer
:
NSObject
{
void
*
instance
;
...
...
projects/macosx/framework/Headers/Public/VLCMediaPlayer.h
View file @
4c1a614b
...
...
@@ -110,8 +110,8 @@ extern NSString * VLCMediaPlayerStateToString(VLCMediaPlayerState state);
-
(
void
)
setVideoCropGeometry
:(
char
*
)
value
;
-
(
char
*
)
videoCropGeometry
;
-
(
void
)
setVideoTeleText
:(
int
)
value
;
-
(
int
)
videoTeleText
;
-
(
void
)
setVideoTeleText
:(
NSUInteger
)
value
;
-
(
NSUInteger
)
videoTeleText
;
/**
* Take a snapshot of the current video.
...
...
@@ -155,7 +155,7 @@ extern NSString * VLCMediaPlayerStateToString(VLCMediaPlayerState state);
-
(
VLCTime
*
)
time
;
@property
(
readonly
)
VLCTime
*
remainingTime
;
@property
(
readonly
)
int
fps
;
@property
(
readonly
)
NSUInteger
fps
;
/**
* Return the current video subtitle index
...
...
@@ -219,8 +219,8 @@ extern NSString * VLCMediaPlayerStateToString(VLCMediaPlayerState state);
*/
-
(
NSArray
*
)
audioTracks
;
-
(
void
)
setAudioChannel
:(
int
)
value
;
-
(
int
)
audioChannel
;
-
(
void
)
setAudioChannel
:(
NSInteger
)
value
;
-
(
NSInteger
)
audioChannel
;
/* Media Options */
-
(
void
)
setMedia
:(
VLCMedia
*
)
value
;
...
...
projects/macosx/framework/Headers/Public/VLCStreamSession.h
View file @
4c1a614b
...
...
@@ -30,7 +30,7 @@
@interface
VLCStreamSession
:
VLCMediaPlayer
{
VLCStreamOutput
*
streamOutput
;
VLCMedia
*
originalMedia
;
int
reattemptedConnections
;
NSUInteger
reattemptedConnections
;
BOOL
isComplete
;
}
...
...
projects/macosx/framework/Headers/Public/VLCTime.h
View file @
4c1a614b
...
...
@@ -33,7 +33,7 @@
/* Factories */
+
(
VLCTime
*
)
nullTime
;
+
(
VLCTime
*
)
timeWithNumber
:(
NSNumber
*
)
aNumber
;
+
(
VLCTime
*
)
timeWithInt
:(
int
)
aInt
;
+
(
VLCTime
*
)
timeWithInt
:(
NSInteger
)
aInt
;
/* Initializers */
-
(
id
)
initWithNumber
:(
NSNumber
*
)
aNumber
;
...
...
projects/macosx/framework/Sources/VLCAudio.m
View file @
4c1a614b
...
...
@@ -62,7 +62,7 @@ NSString * VLCMediaPlayerVolumeChanged = @"VLCMediaPlayerVolumeChanged";
return
libvlc_audio_get_mute
([
library
instance
]);
}
-
(
void
)
setVolume
:(
int
)
value
-
(
void
)
setVolume
:(
NSUInteger
)
value
{
if
(
value
<
VOLUME_MIN
)
value
=
VOLUME_MIN
;
...
...
@@ -73,7 +73,7 @@ NSString * VLCMediaPlayerVolumeChanged = @"VLCMediaPlayerVolumeChanged";
-
(
void
)
volumeUp
{
int
tempVolume
=
[
self
volume
]
+
VOLUME_STEP
;
NSUInteger
tempVolume
=
[
self
volume
]
+
VOLUME_STEP
;
if
(
tempVolume
>
VOLUME_MAX
)
tempVolume
=
VOLUME_MAX
;
else
if
(
tempVolume
<
VOLUME_MIN
)
...
...
@@ -83,7 +83,7 @@ NSString * VLCMediaPlayerVolumeChanged = @"VLCMediaPlayerVolumeChanged";
-
(
void
)
volumeDown
{
int
tempVolume
=
[
self
volume
]
-
VOLUME_STEP
;
NSUInteger
tempVolume
=
[
self
volume
]
-
VOLUME_STEP
;
if
(
tempVolume
>
VOLUME_MAX
)
tempVolume
=
VOLUME_MAX
;
else
if
(
tempVolume
<
VOLUME_MIN
)
...
...
@@ -91,7 +91,7 @@ NSString * VLCMediaPlayerVolumeChanged = @"VLCMediaPlayerVolumeChanged";
[
self
setVolume
:
tempVolume
];
}
-
(
int
)
volume
-
(
NSUInteger
)
volume
{
return
libvlc_audio_get_volume
([
library
instance
]);
}
...
...
projects/macosx/framework/Sources/VLCEventManager.m
View file @
4c1a614b
...
...
@@ -71,7 +71,7 @@ static void * EventDispatcherMainLoop(void * user_data)
NSAutoreleasePool
*
pool
=
[[
NSAutoreleasePool
alloc
]
init
];
message_t
*
message
,
*
message_newer
=
NULL
;
NSData
*
dataMessage
;
int
i
;
NSInteger
i
;
/* Sleep a bit not to flood the interface */
usleep
(
300
);
...
...
projects/macosx/framework/Sources/VLCLibrary.m
View file @
4c1a614b
...
...
@@ -83,7 +83,7 @@ void __catch_exception( void * e, const char * function, const char * file, int
vlcParams
=
defaultParams
;
}
int
paramNum
=
0
;
NSUInteger
paramNum
=
0
;
NSUInteger
count
=
[
vlcParams
count
];
const
char
*
lib_vlc_params
[
count
];
while
(
paramNum
<
count
)
{
...
...
projects/macosx/framework/Sources/VLCMediaList.m
View file @
4c1a614b
...
...
@@ -141,14 +141,14 @@ static void HandleMediaListItemDeleted( const libvlc_event_t * event, void * use
libvlc_media_list_unlock
(
p_mlist
);
}
-
(
int
)
addMedia
:(
VLCMedia
*
)
media
-
(
NSInteger
)
addMedia
:(
VLCMedia
*
)
media
{
int
index
=
[
self
count
];
[
self
insertMedia
:
media
atIndex
:
index
];
return
index
;
}
-
(
void
)
insertMedia
:(
VLCMedia
*
)
media
atIndex
:
(
int
)
index
-
(
void
)
insertMedia
:(
VLCMedia
*
)
media
atIndex
:
(
NSInteger
)
index
{
[
media
retain
];
...
...
@@ -159,7 +159,7 @@ static void HandleMediaListItemDeleted( const libvlc_event_t * event, void * use
catch_exception
(
&
p_e
);
}
-
(
void
)
removeMediaAtIndex
:(
int
)
index
-
(
void
)
removeMediaAtIndex
:(
NSInteger
)
index
{
[[
self
mediaAtIndex
:
index
]
release
];
...
...
@@ -170,33 +170,33 @@ static void HandleMediaListItemDeleted( const libvlc_event_t * event, void * use
catch_exception
(
&
p_e
);
}
-
(
VLCMedia
*
)
mediaAtIndex
:(
int
)
index
-
(
VLCMedia
*
)
mediaAtIndex
:(
NSInteger
)
index
{
return
[
cachedMedia
objectAtIndex
:
index
];
}
-
(
int
)
indexOfMedia
:(
VLCMedia
*
)
media
-
(
NSInteger
)
indexOfMedia
:(
VLCMedia
*
)
media
{
libvlc_exception_t
p_e
;
libvlc_exception_init
(
&
p_e
);
int
result
=
libvlc_media_list_index_of_item
(
p_mlist
,
[
media
libVLCMediaDescriptor
],
&
p_e
);
NSInteger
result
=
libvlc_media_list_index_of_item
(
p_mlist
,
[
media
libVLCMediaDescriptor
],
&
p_e
);
catch_exception
(
&
p_e
);
return
result
;
}
/* KVC Compliance: For the @"media" key */
-
(
int
)
countOfMedia
-
(
NSInteger
)
countOfMedia
{
return
[
self
count
];
}
-
(
id
)
objectInMediaAtIndex
:(
int
)
i
-
(
id
)
objectInMediaAtIndex
:(
NSInteger
)
i
{
return
[
self
mediaAtIndex
:
i
];
}
-
(
int
)
count
-
(
NSInteger
)
count
{
return
[
cachedMedia
count
];
}
...
...
@@ -264,7 +264,7 @@ static void HandleMediaListItemDeleted( const libvlc_event_t * event, void * use
libvlc_media_list_lock
(
p_mlist
);
cachedMedia
=
[[
NSMutableArray
alloc
]
initWithCapacity
:
libvlc_media_list_count
(
p_mlist
,
NULL
)];
int
i
,
count
=
libvlc_media_list_count
(
p_mlist
,
NULL
);
NSUInteger
i
,
count
=
libvlc_media_list_count
(
p_mlist
,
NULL
);
for
(
i
=
0
;
i
<
count
;
i
++
)
{
libvlc_media_t
*
p_md
=
libvlc_media_list_item_at_index
(
p_mlist
,
i
,
NULL
);
...
...
@@ -300,14 +300,14 @@ static void HandleMediaListItemDeleted( const libvlc_event_t * event, void * use
-
(
void
)
mediaListItemAdded
:(
NSArray
*
)
arrayOfArgs
{
/* We hope to receive index in a nide range, that could change one day */
int
start
=
[[[
arrayOfArgs
objectAtIndex
:
0
]
objectForKey
:
@"index"
]
intValue
];
int
end
=
[[[
arrayOfArgs
objectAtIndex
:
[
arrayOfArgs
count
]
-
1
]
objectForKey
:
@"index"
]
intValue
];
NSInteger
start
=
[[[
arrayOfArgs
objectAtIndex
:
0
]
objectForKey
:
@"index"
]
intValue
];
NSInteger
end
=
[[[
arrayOfArgs
objectAtIndex
:
[
arrayOfArgs
count
]
-
1
]
objectForKey
:
@"index"
]
intValue
];
NSRange
range
=
NSMakeRange
(
start
,
end
-
start
);
[
self
willChange
:
NSKeyValueChangeInsertion
valuesAtIndexes
:[
NSIndexSet
indexSetWithIndexesInRange
:
range
]
forKey
:
@"media"
];
for
(
NSDictionary
*
args
in
arrayOfArgs
)
{
int
index
=
[[
args
objectForKey
:
@"index"
]
intValue
];
NSInteger
index
=
[[
args
objectForKey
:
@"index"
]
intValue
];
VLCMedia
*
media
=
[
args
objectForKey
:
@"media"
];
/* Sanity check */
if
(
index
&&
index
>
[
cachedMedia
count
]
)
...
...
projects/macosx/framework/Sources/VLCMediaListAspect.m
View file @
4c1a614b
...
...
@@ -71,20 +71,20 @@
@implementation
VLCMediaListAspect
(
KeyValueCodingCompliance
)
/* For the @"media" key */
-
(
int
)
countOfMedia
-
(
NSInteger
)
countOfMedia
{
return
[
cachedNode
count
];
}
-
(
id
)
objectInMediaAtIndex
:(
int
)
i
-
(
id
)
objectInMediaAtIndex
:(
NSInteger
)
i
{
return
[[
cachedNode
objectAtIndex
:
i
]
media
];
}
/* For the @"node" key */
-
(
int
)
countOfNode
-
(
NSInteger
)
countOfNode
{
return
[
cachedNode
count
];
}
-
(
id
)
objectInNodeAtIndex
:(
int
)
i
-
(
id
)
objectInNodeAtIndex
:(
NSInteger
)
i
{
return
[
cachedNode
objectAtIndex
:
i
];
}
...
...
@@ -145,7 +145,7 @@ static void HandleMediaListViewItemDeleted( const libvlc_event_t * event, void *
-
(
NSString
*
)
description
{
NSMutableString
*
content
=
[
NSMutableString
string
];
int
i
;
NSUInteger
i
;
for
(
i
=
0
;
i
<
[
self
count
];
i
++
)
{
[
content
appendFormat
:
@"%@
\n
"
,
[
self
mediaAtIndex
:
i
]];
...
...
@@ -153,7 +153,7 @@ static void HandleMediaListViewItemDeleted( const libvlc_event_t * event, void *
return
[
NSString
stringWithFormat
:
@"<%@ %p> {
\n
%@}"
,
[
self
className
],
self
,
content
];
}
-
(
VLCMedia
*
)
mediaAtIndex
:(
int
)
index
-
(
VLCMedia
*
)
mediaAtIndex
:(
NSInteger
)
index
{
libvlc_exception_t
p_e
;
libvlc_exception_init
(
&
p_e
);
...
...
@@ -165,7 +165,7 @@ static void HandleMediaListViewItemDeleted( const libvlc_event_t * event, void *
return
[
VLCMedia
mediaWithLibVLCMediaDescriptor
:
p_md
];
}
-
(
VLCMediaListAspect
*
)
childrenAtIndex
:(
int
)
index
-
(
VLCMediaListAspect
*
)
childrenAtIndex
:(
NSInteger
)
index
{
libvlc_exception_t
p_e
;
libvlc_exception_init
(
&
p_e
);
...
...
@@ -180,7 +180,7 @@ static void HandleMediaListViewItemDeleted( const libvlc_event_t * event, void *
return
[
VLCMediaListAspect
mediaListAspectWithLibVLCMediaListView
:
p_sub_mlv
];
}
-
(
VLCMediaListAspectNode
*
)
nodeAtIndex
:(
int
)
index
-
(
VLCMediaListAspectNode
*
)
nodeAtIndex
:(
NSInteger
)
index
{
VLCMediaListAspectNode
*
node
=
[[[
VLCMediaListAspectNode
alloc
]
init
]
autorelease
];
[
node
setMedia
:[
self
mediaAtIndex
:
index
]];
...
...
@@ -193,11 +193,11 @@ static void HandleMediaListViewItemDeleted( const libvlc_event_t * event, void *
return
node
;
}
-
(
int
)
count
-
(
NSInteger
)
count
{
libvlc_exception_t
p_e
;
libvlc_exception_init
(
&
p_e
);
int
result
=
libvlc_media_list_view_count
(
p_mlv
,
&
p_e
);
NSInteger
result
=
libvlc_media_list_view_count
(
p_mlv
,
&
p_e
);
catch_exception
(
&
p_e
);
return
result
;
...
...
@@ -245,7 +245,7 @@ static void HandleMediaListViewItemDeleted( const libvlc_event_t * event, void *
libvlc_media_list_t
*
p_mlist
;
p_mlist
=
libvlc_media_list_view_parent_media_list
(
p_mlv
,
NULL
);
libvlc_media_list_lock
(
p_mlist
);
int
i
,
count
=
libvlc_media_list_view_count
(
p_mlv
,
NULL
);
NSUInteger
i
,
count
=
libvlc_media_list_view_count
(
p_mlv
,
NULL
);
for
(
i
=
0
;
i
<
count
;
i
++
)
{
libvlc_media_t
*
p_md
=
libvlc_media_list_view_item_at_index
(
p_mlv
,
i
,
NULL
);
...
...
@@ -291,15 +291,15 @@ static void HandleMediaListViewItemDeleted( const libvlc_event_t * event, void *
NSAssert
([
NSThread
isMainThread
],
@"We are not on main thread"
);
/* We hope to receive index in a nide range, that could change one day */
int
start
=
[[[
arrayOfArgs
objectAtIndex
:
0
]
objectForKey
:
@"index"
]
intValue
];
int
end
=
[[[
arrayOfArgs
objectAtIndex
:
[
arrayOfArgs
count
]
-
1
]
objectForKey
:
@"index"
]
intValue
];
NSInteger
start
=
[[[
arrayOfArgs
objectAtIndex
:
0
]
objectForKey
:
@"index"
]
intValue
];
NSInteger
end
=
[[[
arrayOfArgs
objectAtIndex
:
[
arrayOfArgs
count
]
-
1
]
objectForKey
:
@"index"
]
intValue
];
NSRange
range
=
NSMakeRange
(
start
,
end
-
start
);
[
self
willChange
:
NSKeyValueChangeInsertion
valuesAtIndexes
:[
NSIndexSet
indexSetWithIndexesInRange
:
range
]
forKey
:
@"media"
];
[
self
willChange
:
NSKeyValueChangeInsertion
valuesAtIndexes
:[
NSIndexSet
indexSetWithIndexesInRange
:
range
]
forKey
:
@"node"
];
for
(
NSDictionary
*
args
in
arrayOfArgs
)
{
int
index
=
[[
args
objectForKey
:
@"index"
]
intValue
];
NSInteger
index
=
[[
args
objectForKey
:
@"index"
]
intValue
];
VLCMedia
*
media
=
[
args
objectForKey
:
@"media"
];
VLCMediaListAspectNode
*
node
=
[[[
VLCMediaListAspectNode
alloc
]
init
]
autorelease
];
[
node
setMedia
:
media
];
...
...
projects/macosx/framework/Sources/VLCMediaPlayer.m
View file @
4c1a614b
...
...
@@ -287,7 +287,7 @@ static void HandleMediaPlayerMediaChanged(const libvlc_event_t * event, void * s
{
libvlc_exception_t
ex
;
libvlc_exception_init
(
&
ex
);
int
count
=
libvlc_video_get_spu_count
(
instance
,
&
ex
);
NSInteger
count
=
libvlc_video_get_spu_count
(
instance
,
&
ex
);
catch_exception
(
&
ex
);
if
(
count
<=
0
)
return
NSNotFound
;
...
...
@@ -309,7 +309,7 @@ static void HandleMediaPlayerMediaChanged(const libvlc_event_t * event, void * s
{
libvlc_exception_t
ex
;
libvlc_exception_init
(
&
ex
);
int
count
=
libvlc_video_get_spu_count
(
instance
,
&
ex
);
NSInteger
count
=
libvlc_video_get_spu_count
(
instance
,
&
ex
);
catch_exception
(
&
ex
);
libvlc_track_description_t
*
tracks
=
libvlc_video_get_spu_description
(
instance
,
&
ex
);
...
...
@@ -361,7 +361,7 @@ static void HandleMediaPlayerMediaChanged(const libvlc_event_t * event, void * s
return
result
;
}
-
(
void
)
setVideoTeleText
:(
int
)
value
-
(
void
)
setVideoTeleText
:(
NSUInteger
)
value
{
libvlc_exception_t
ex
;
libvlc_exception_init
(
&
ex
);
...
...
@@ -369,11 +369,11 @@ static void HandleMediaPlayerMediaChanged(const libvlc_event_t * event, void * s
catch_exception
(
&
ex
);
}
-
(
int
)
videoTeleText
-
(
NSUInteger
)
videoTeleText
{
libvlc_exception_t
ex
;
libvlc_exception_init
(
&
ex
);
int
result
=
libvlc_video_get_teletext
(
instance
,
&
ex
);
NSInteger
result
=
libvlc_video_get_teletext
(
instance
,
&
ex
);
catch_exception
(
&
ex
);
return
result
;
}
...
...
@@ -466,11 +466,11 @@ static void HandleMediaPlayerMediaChanged(const libvlc_event_t * event, void * s
return
cachedRemainingTime
;
}
-
(
int
)
fps
-
(
NSUInteger
)
fps
{
libvlc_exception_t
ex
;
libvlc_exception_init
(
&
ex
);
int
result
=
libvlc_media_player_get_fps
(
instance
,
&
ex
);
NSUInteger
result
=
libvlc_media_player_get_fps
(
instance
,
&
ex
);
catch_exception
(
&
ex
);
return
result
;
}
...
...
@@ -489,7 +489,7 @@ static void HandleMediaPlayerMediaChanged(const libvlc_event_t * event, void * s
{
libvlc_exception_t
ex
;
libvlc_exception_init
(
&
ex
);
int
count
=
libvlc_media_player_get_chapter_count
(
instance
,
&
ex
);
NSInteger
count
=
libvlc_media_player_get_chapter_count
(
instance
,
&
ex
);
catch_exception
(
&
ex
);
if
(
count
<=
0
)
return
NSNotFound
;
...
...
@@ -518,7 +518,7 @@ static void HandleMediaPlayerMediaChanged(const libvlc_event_t * event, void * s
{
libvlc_exception_t
ex
;
libvlc_exception_init
(
&
ex
);
int
count
=
libvlc_media_player_get_chapter_count
(
instance
,
&
ex
);
NSInteger
count
=
libvlc_media_player_get_chapter_count
(
instance
,
&
ex
);
if
(
count
<=
0
)
return
[
NSArray
array
];
...
...
@@ -549,7 +549,7 @@ static void HandleMediaPlayerMediaChanged(const libvlc_event_t * event, void * s
libvlc_exception_t
ex
;
libvlc_exception_init
(
&
ex
);
int
count
=
libvlc_media_player_get_title_count
(
instance
,
&
ex
);
NSInteger
count
=
libvlc_media_player_get_title_count
(
instance
,
&
ex
);
catch_exception
(
&
ex
);
if
(
count
<=
0
)
return
NSNotFound
;
...
...
@@ -559,11 +559,11 @@ static void HandleMediaPlayerMediaChanged(const libvlc_event_t * event, void * s
return
result
;
}
-
(
int
)
countOfTitles
-
(
NSUInteger
)
countOfTitles
{
libvlc_exception_t
ex
;
libvlc_exception_init
(
&
ex
);
int
result
=
libvlc_media_player_get_title_count
(
instance
,
&
ex
);
NSUInteger
result
=
libvlc_media_player_get_title_count
(
instance
,
&
ex
);
catch_exception
(
&
ex
);
return
result
;
}
...
...
@@ -597,7 +597,7 @@ static void HandleMediaPlayerMediaChanged(const libvlc_event_t * event, void * s
{
libvlc_exception_t
ex
;
libvlc_exception_init
(
&
ex
);
int
count
=
libvlc_audio_get_track_count
(
instance
,
&
ex
);
NSInteger
count
=
libvlc_audio_get_track_count
(
instance
,
&
ex
);
catch_exception
(
&
ex
);
if
(
count
<=
0
)
return
NSNotFound
;
...
...
@@ -611,14 +611,14 @@ static void HandleMediaPlayerMediaChanged(const libvlc_event_t * event, void * s
{
libvlc_exception_t
ex
;
libvlc_exception_init
(
&
ex
);
int
count
=
libvlc_audio_get_track_count
(
instance
,
&
ex
);
NSInteger
count
=
libvlc_audio_get_track_count
(
instance
,
&
ex
);
catch_exception
(
&
ex
);
if
(
count
<=
0
)
return
[
NSArray
array
];
libvlc_track_description_t
*
tracks
=
libvlc_audio_get_track_description
(
instance
,
&
ex
);
NSMutableArray
*
tempArray
=
[
NSMutableArray
array
];
NSInteger
i
;
NS
U
Integer
i
;
for
(
i
=
0
;
i
<
count
;
i
++
)
{
[
tempArray
addObject
:[
NSString
stringWithUTF8String
:
tracks
->
psz_name
]];
...
...
@@ -628,7 +628,7 @@ static void HandleMediaPlayerMediaChanged(const libvlc_event_t * event, void * s
return
[
NSArray
arrayWithArray
:
tempArray
];
}
-
(
void
)
setAudioChannel
:(
int
)
value
-
(
void
)
setAudioChannel
:(
NSInteger
)
value
{
libvlc_exception_t
ex
;
libvlc_exception_init
(
&
ex
);
...
...
@@ -636,11 +636,11 @@ static void HandleMediaPlayerMediaChanged(const libvlc_event_t * event, void * s
catch_exception
(
&
ex
);
}
-
(
int
)
audioChannel
-
(
NSInteger
)
audioChannel
{
libvlc_exception_t
ex
;
libvlc_exception_init
(
&
ex
);
int
result
=
libvlc_audio_get_channel
(
instance
,
&
ex
);
NSInteger
result
=
libvlc_audio_get_channel
(
instance
,
&
ex
);
catch_exception
(
&
ex
);
return
result
;
}
...
...
projects/macosx/framework/Sources/VLCTime.m
View file @
4c1a614b
...
...
@@ -39,7 +39,7 @@
return
[[[
VLCTime
alloc
]
initWithNumber
:
aNumber
]
autorelease
];
}
+
(
VLCTime
*
)
timeWithInt
:(
int
)
aInt
+
(
VLCTime
*
)
timeWithInt
:(
NSInteger
)
aInt
{
return
[[[
VLCTime
alloc
]
initWithInt
:
aInt
]
autorelease
];
}
...
...
projects/macosx/framework/Sources/VLCVideoView.m
View file @
4c1a614b
...
...
@@ -194,7 +194,7 @@
if
(
[[
self
subviews
]
count
]
)
{
/* XXX: This is a hack until core gets fixed */
int
i
;
NSUInteger
i
;
for
(
i
=
0
;
i
<
[[
self
subviews
]
count
];
i
++
)
{
[[[
self
subviews
]
objectAtIndex
:
i
]
detachFromVout
];
...
...
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