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
90e23b41
Commit
90e23b41
authored
Sep 28, 2004
by
Gildas Bazin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* modules/gui/wxwindows/open.cpp: compilation fix.
parent
d1ffd81d
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
11 deletions
+11
-11
modules/gui/wxwindows/open.cpp
modules/gui/wxwindows/open.cpp
+11
-11
No files found.
modules/gui/wxwindows/open.cpp
View file @
90e23b41
...
...
@@ -793,7 +793,7 @@ void OpenDialog::UpdateMRL( int i_access_method )
{
case
FILE_ACCESS
:
mrltemp
=
file_combo
->
GetValue
();
caching_name
=
"file-caching"
;
caching_name
=
wxT
(
"file-caching"
)
;
break
;
case
DISC_ACCESS
:
...
...
@@ -806,12 +806,12 @@ void OpenDialog::UpdateMRL( int i_access_method )
if
(
i_disc_type_selection
==
0
)
{
mrltemp
=
wxT
(
"dvd://"
)
+
disc_device
->
GetValue
();
caching_name
=
"dvdnav-caching"
;
caching_name
=
wxT
(
"dvdnav-caching"
)
;
}
else
{
mrltemp
=
wxT
(
"dvdsimple://"
)
+
disc_device
->
GetValue
();
caching_name
=
"dvdread-caching"
;
caching_name
=
wxT
(
"dvdread-caching"
)
;
}
if
(
i_disc_title
>
0
)
...
...
@@ -844,7 +844,7 @@ void OpenDialog::UpdateMRL( int i_access_method )
mrltemp
+=
wxString
::
Format
(
wxT
(
" :spu-channel=%d"
),
i_disc_sub
);
caching_name
=
"vcd-caching"
;
caching_name
=
wxT
(
"vcd-caching"
)
;
break
;
case
3
:
/* CD-DA */
...
...
@@ -852,7 +852,7 @@ void OpenDialog::UpdateMRL( int i_access_method )
if
(
i_disc_title
>
0
)
mrltemp
+=
wxString
::
Format
(
wxT
(
"@%d"
),
i_disc_title
);
caching_name
=
"cdda-caching"
;
caching_name
=
wxT
(
"cdda-caching"
)
;
break
;
default:
...
...
@@ -877,7 +877,7 @@ void OpenDialog::UpdateMRL( int i_access_method )
mrltemp
+=
wxString
::
Format
(
wxT
(
"@:%d"
),
i_net_ports
[
0
]
);
}
caching_name
=
"udp-caching"
;
caching_name
=
wxT
(
"udp-caching"
)
;
break
;
case
1
:
...
...
@@ -898,7 +898,7 @@ void OpenDialog::UpdateMRL( int i_access_method )
mrltemp
+=
wxString
::
Format
(
wxT
(
":%d"
),
i_net_ports
[
1
]
);
}
caching_name
=
"udp-caching"
;
caching_name
=
wxT
(
"udp-caching"
)
;
break
;
case
2
:
...
...
@@ -909,7 +909,7 @@ void OpenDialog::UpdateMRL( int i_access_method )
}
mrltemp
+=
net_addrs
[
2
]
->
GetLineText
(
0
);
caching_name
=
"http-caching"
;
caching_name
=
wxT
(
"http-caching"
)
;
break
;
case
3
:
...
...
@@ -920,7 +920,7 @@ void OpenDialog::UpdateMRL( int i_access_method )
}
mrltemp
+=
net_addrs
[
3
]
->
GetLineText
(
0
);
caching_name
=
"rtsp-caching"
;
caching_name
=
wxT
(
"rtsp-caching"
)
;
break
;
}
break
;
...
...
@@ -980,8 +980,8 @@ void OpenDialog::UpdateMRL( int i_access_method )
{
if
(
caching_value
->
IsEnabled
()
)
{
mrltemp
+=
wx
String
::
Format
(
wxT
(
" :%s=%d"
),
caching_name
.
mb_str
(),
i_caching
);
mrltemp
+=
wx
T
(
" :"
)
+
caching_name
+
wxString
::
Format
(
wxT
(
"=%d"
),
i_caching
);
}
else
{
...
...
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