Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
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-gpu
Commits
7adeecde
Commit
7adeecde
authored
Sep 04, 2004
by
Benjamin Pracht
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* syntax to specify the dvd title/chapter to open has changed...
parent
9c36906f
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
modules/gui/macosx/open.m
modules/gui/macosx/open.m
+3
-3
No files found.
modules/gui/macosx/open.m
View file @
7adeecde
...
...
@@ -555,7 +555,7 @@ NSArray *GetEjectableMediaOfClass( const char *psz_class )
if
(
[
o_device
isEqualToString
:
[
NSString
stringWithFormat
:
_NS
(
"No %@s found"
),
o_type
]]
)
o_device
=
@""
;
o_mrl_string
=
[
NSString
stringWithFormat
:
@"vcd://%@@%i
,
%i"
,
o_mrl_string
=
[
NSString
stringWithFormat
:
@"vcd://%@@%i
:
%i"
,
o_device
,
i_title
,
i_chapter
];
}
else
if
(
[
o_type
isEqualToString
:
_NS
(
"Audio CD"
)]
)
...
...
@@ -575,7 +575,7 @@ NSArray *GetEjectableMediaOfClass( const char *psz_class )
o_mrl_string
=
[
NSString
stringWithFormat
:
@"dvdnav://%@"
,
o_device
];
else
o_mrl_string
=
[
NSString
stringWithFormat
:
@"dvdread://%@@%i
,
%i"
,
o_mrl_string
=
[
NSString
stringWithFormat
:
@"dvdread://%@@%i
:
%i"
,
o_device
,
i_title
,
i_chapter
];
}
else
/* VIDEO_TS folder */
...
...
@@ -584,7 +584,7 @@ NSArray *GetEjectableMediaOfClass( const char *psz_class )
o_mrl_string
=
[
NSString
stringWithFormat
:
@"dvdnav://%@"
,
o_videots
];
else
o_mrl_string
=
[
NSString
stringWithFormat
:
@"dvdread://%@@%i
,
%i"
,
o_mrl_string
=
[
NSString
stringWithFormat
:
@"dvdread://%@@%i
:
%i"
,
o_videots
,
i_title
,
i_chapter
];
}
...
...
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