Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
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
Commits
7df1090a
Commit
7df1090a
authored
Sep 26, 2011
by
Tobias Güntner
Committed by
Jean-Baptiste Kempf
Oct 02, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove unused struct member
Signed-off-by:
Jean-Baptiste Kempf
<
jb@videolan.org
>
parent
be5567ca
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
0 additions
and
4 deletions
+0
-4
include/vlc_input.h
include/vlc_input.h
+0
-2
modules/demux/mkv/virtual_segment.cpp
modules/demux/mkv/virtual_segment.cpp
+0
-2
No files found.
include/vlc_input.h
View file @
7df1090a
...
...
@@ -83,7 +83,6 @@ struct seekpoint_t
int64_t
i_byte_offset
;
int64_t
i_time_offset
;
char
*
psz_name
;
int
i_level
;
};
static
inline
seekpoint_t
*
vlc_seekpoint_New
(
void
)
...
...
@@ -91,7 +90,6 @@ static inline seekpoint_t *vlc_seekpoint_New( void )
seekpoint_t
*
point
=
(
seekpoint_t
*
)
malloc
(
sizeof
(
seekpoint_t
)
);
point
->
i_byte_offset
=
point
->
i_time_offset
=
-
1
;
point
->
i_level
=
0
;
point
->
psz_name
=
NULL
;
return
point
;
}
...
...
modules/demux/mkv/virtual_segment.cpp
View file @
7df1090a
...
...
@@ -501,7 +501,6 @@ int virtual_chapter_c::PublishChapters( input_title_t & title, int & i_user_chap
{
seekpoint_t
*
sk
=
vlc_seekpoint_New
();
sk
->
i_level
=
i_level
;
sk
->
i_time_offset
=
i_virtual_start_time
;
if
(
p_chapter
)
sk
->
psz_name
=
strdup
(
p_chapter
->
psz_name
.
c_str
()
);
...
...
@@ -534,7 +533,6 @@ int virtual_edition_c::PublishChapters( input_title_t & title, int & i_user_chap
{
seekpoint_t
*
sk
=
vlc_seekpoint_New
();
sk
->
i_level
=
i_level
;
sk
->
i_time_offset
=
0
;
if
(
p_edition
)
sk
->
psz_name
=
strdup
(
p_edition
->
psz_name
.
c_str
()
);
...
...
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