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
f42b56bb
Commit
f42b56bb
authored
Sep 16, 2010
by
Francois Cartegnie
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
broken avi dialog: don't confuse user by asking a binary answer
parent
dea4f0a1
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
modules/demux/avi/avi.c
modules/demux/avi/avi.c
+5
-5
No files found.
modules/demux/avi/avi.c
View file @
f42b56bb
...
...
@@ -655,11 +655,11 @@ aviindex:
b_index
=
true
;
goto
aviindex
;
}
switch
(
dialog_Question
(
p_demux
,
_
(
"AVI Index"
)
,
_
(
"
This AVI file is broken. S
eeking will not work correctly.
\n
"
"
Do you want to try to fix it?
\n
\n
"
"
This might take a long time.
"
),
_
(
"Repair
"
),
_
(
"Don't repair"
),
_
(
"Cancel
"
)
)
)
switch
(
dialog_Question
(
p_demux
,
_
(
"
Broken
AVI Index"
)
,
_
(
"
Because this AVI file is broken, s
eeking will not work correctly.
\n
"
"
It can be fixed, but this step might take a long time.
\n
"
"
What do you want to do ?
"
),
_
(
"Repair
and play"
),
_
(
"Play as is"
),
_
(
"Do not play
"
)
)
)
{
case
1
:
b_index
=
true
;
...
...
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