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
61a89bc8
Commit
61a89bc8
authored
Jul 16, 2005
by
Rocky Bernstein
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Don't use "Track" for VCDX, "Entry" or "LID" should be used.
parent
e69d3141
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
16 additions
and
0 deletions
+16
-0
modules/gui/wxwindows/open.cpp
modules/gui/wxwindows/open.cpp
+16
-0
No files found.
modules/gui/wxwindows/open.cpp
View file @
61a89bc8
...
...
@@ -1377,12 +1377,28 @@ void OpenDialog::OnDiscProbe( wxCommandEvent& WXUNUSED(event) )
CdIo_t
*
p_cdio
=
cdio_open
(
psz_device
,
DRIVER_UNKNOWN
);
disc_device
->
SetValue
(
wxL2U
(
psz_device
)
);
#ifdef HAVE_VCDX
/* FIXME: get information from libvcdinfo. */
if
(
config_GetInt
(
p_intf
,
"vcdx-PBC"
))
{
/* Set largest LID. */
;
;
}
else
{
/* Set largest Entry */
;
}
#else
/* Set track range accurately if possible. */
if
(
p_cdio
)
{
track_t
i_last_track
=
cdio_get_last_track_num
(
p_cdio
);
disc_title
->
SetRange
(
0
,
i_last_track
-
1
);
}
#endif
free
(
psz_device
);
cdio_destroy
(
p_cdio
);
break
;
...
...
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