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
8697e6ef
Commit
8697e6ef
authored
Mar 27, 2005
by
Steve Lhomme
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mkv.cpp: new options for the demuxer
fr.po: small translation fix
parent
f732680c
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
3 deletions
+11
-3
modules/demux/mkv.cpp
modules/demux/mkv.cpp
+10
-2
po/fr.po
po/fr.po
+1
-1
No files found.
modules/demux/mkv.cpp
View file @
8697e6ef
...
...
@@ -121,7 +121,15 @@ vlc_module_begin();
set_category
(
CAT_INPUT
);
set_subcategory
(
SUBCAT_INPUT_DEMUX
);
add_bool
(
"mkv-seek-percent"
,
1
,
NULL
,
add_bool
(
"mkv-use-ordered-chapters"
,
1
,
NULL
,
N_
(
"Ordered chapters"
),
N_
(
"Play chapters in the specified order as specified in the file"
),
VLC_TRUE
);
add_bool
(
"mkv-use-chapter-codec"
,
1
,
NULL
,
N_
(
"Chapter codecs"
),
N_
(
"Use chapter codecs found in the file"
),
VLC_TRUE
);
add_bool
(
"mkv-seek-percent"
,
0
,
NULL
,
N_
(
"Seek based on percent not time"
),
N_
(
"Seek based on percent not time"
),
VLC_TRUE
);
...
...
@@ -3100,7 +3108,7 @@ void matroska_segment_t::ParseChapters( EbmlElement *chapters )
}
else
if
(
MKV_IS_ID
(
l
,
KaxEditionFlagOrdered
)
)
{
edition
.
b_ordered
=
uint8
(
*
static_cast
<
KaxEditionFlagOrdered
*>
(
l
))
!=
0
;
edition
.
b_ordered
=
config_GetInt
(
&
sys
.
demuxer
,
"mkv-use-ordered-chapters"
)
?
(
uint8
(
*
static_cast
<
KaxEditionFlagOrdered
*>
(
l
))
!=
0
)
:
0
;
}
else
if
(
MKV_IS_ID
(
l
,
KaxEditionFlagDefault
)
)
{
...
...
po/fr.po
View file @
8697e6ef
...
...
@@ -8093,7 +8093,7 @@ msgstr "Déplacements basés sur le pourcentage et non le temps"
#: modules/demux/mkv.cpp:3043
msgid "Segment filename"
msgstr "
Segment de nom de fichier
"
msgstr "
Nom de fichier du Segment
"
#: modules/demux/mkv.cpp:3047
msgid "Muxing application"
...
...
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