Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
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-2-2
Commits
9654fccc
Commit
9654fccc
authored
Dec 21, 2009
by
Pierre d'Herbemont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
macosx/framework: improve comments in VLCMediaPlayer.h.
parent
6f4f5211
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
22 additions
and
3 deletions
+22
-3
projects/macosx/framework/Headers/Public/VLCMediaPlayer.h
projects/macosx/framework/Headers/Public/VLCMediaPlayer.h
+22
-3
No files found.
projects/macosx/framework/Headers/Public/VLCMediaPlayer.h
View file @
9654fccc
...
...
@@ -157,12 +157,18 @@ extern NSString * VLCMediaPlayerStateToString(VLCMediaPlayerState state);
@property
(
readonly
)
int
fps
;
/**
* Return the current video subtitle index
, or
* \return
NSNotFound
if none is set.
* Return the current video subtitle index
* \return
0
if none is set.
*
*
To disable subtitle pass NSNotFound
.
*
Pass 0 to disable
.
*/
@property
(
readwrite
)
NSUInteger
currentVideoSubTitleIndex
;
/**
* Return the video subtitle tracks
*
* It includes the disabled fake track at index 0.
*/
-
(
NSArray
*
)
videoSubTitles
;
/**
...
...
@@ -196,7 +202,20 @@ extern NSString * VLCMediaPlayerStateToString(VLCMediaPlayerState state);
-
(
NSArray
*
)
titles
;
/* Audio Options */
/**
* Return the current audio track index
* \return 0 if none is set.
*
* Pass 0 to disable.
*/
@property
(
readwrite
)
NSUInteger
currentAudioTrackIndex
;
/**
* Return the audio tracks
*
* It includes the "Disable" fake track at index 0.
*/
-
(
NSArray
*
)
audioTracks
;
-
(
void
)
setAudioChannel
:(
int
)
value
;
...
...
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