Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
VLC
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Terraform modules
Monitor
Service Desk
Analyze
Contributor analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Ujjawal Kumar
VLC
Commits
d1b18e94
Commit
d1b18e94
authored
14 years ago
by
Laurent Aimar
Browse files
Options
Downloads
Patches
Plain Diff
Export title length in dvdnav access_demux.
You need a recent enough libdvdnav. It is related to #4021.
parent
6759cca2
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
configure.ac
+3
-0
3 additions, 0 deletions
configure.ac
modules/access/dvdnav.c
+19
-6
19 additions, 6 deletions
modules/access/dvdnav.c
with
22 additions
and
6 deletions
configure.ac
+
3
−
0
View file @
d1b18e94
...
...
@@ -1944,6 +1944,9 @@ then
AC_CHECK_LIB(dvdnav, dvdnav_get_video_resolution,
AC_DEFINE(HAVE_DVDNAV_GET_VIDEO_RESOLUTION, 1, [Define if you have dvdnav_get_video_resolution.]),
[], [${LIBS_dvdnav}])
AC_CHECK_LIB(dvdnav, dvdnav_describe_title_chapters,
AC_DEFINE(HAVE_DVDNAV_DESCRIBE_TITLE_CHAPTERS, 1, [Define if you have dvdnav_describe_title_chapters.]),
[], [${LIBS_dvdnav}])
fi
fi
...
...
This diff is collapsed.
Click to expand it.
modules/access/dvdnav.c
+
19
−
6
View file @
d1b18e94
...
...
@@ -998,13 +998,26 @@ static void DemuxTitles( demux_t *p_demux )
dvdnav_get_number_of_titles
(
p_sys
->
dvdnav
,
&
i_titles
);
for
(
i
=
1
;
i
<=
i_titles
;
i
++
)
{
int32_t
i_chapters
=
0
;
int
j
;
dvdnav_get_number_of_parts
(
p_sys
->
dvdnav
,
i
,
&
i_chapters
);
int32_t
i_chapters
;
uint64_t
i_title_length
;
#if defined(HAVE_DVDNAV_DESCRIBE_TITLE_CHAPTERS)
uint64_t
*
p_chapters_time
;
i_chapters
=
dvdnav_describe_title_chapters
(
p_sys
->
dvdnav
,
i
,
&
p_chapters_time
,
&
i_title_length
);
if
(
i_chapters
>
0
)
free
(
p_chapters_time
);
else
i_title_length
=
0
;
#else
if
(
dvdnav_get_number_of_parts
(
p_sys
->
dvdnav
,
i
,
&
i_chapters
)
!=
DVDNAV_STATUS_OK
)
i_chapters
=
0
;
i_title_length
=
0
;
#endif
t
=
vlc_input_title_New
();
for
(
j
=
0
;
j
<
__MAX
(
i_chapters
,
1
);
j
++
)
t
->
i_length
=
i_title_length
*
1000
/
90
;
for
(
int
j
=
0
;
j
<
__MAX
(
i_chapters
,
1
);
j
++
)
{
s
=
vlc_seekpoint_New
();
TAB_APPEND
(
t
->
i_seekpoint
,
t
->
seekpoint
,
s
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment