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
bcb37b8d
Commit
bcb37b8d
authored
Jan 14, 2013
by
Jean-Baptiste Kempf
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Ogg: remove unused function and variable
parent
972bd8c8
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
18 deletions
+0
-18
modules/demux/oggseek.c
modules/demux/oggseek.c
+0
-18
No files found.
modules/demux/oggseek.c
View file @
bcb37b8d
...
@@ -58,22 +58,6 @@ void oggseek_index_entries_free ( demux_index_entry_t *idx )
...
@@ -58,22 +58,6 @@ void oggseek_index_entries_free ( demux_index_entry_t *idx )
}
}
/* unlink and free idx. If idx is head of list, return new head */
static
demux_index_entry_t
*
index_entry_delete
(
demux_index_entry_t
*
idx
)
{
demux_index_entry_t
*
xidx
=
idx
;
if
(
idx
->
p_prev
!=
NULL
)
idx
->
p_prev
->
p_next
=
idx
->
p_next
;
else
xidx
=
idx
->
p_next
;
if
(
idx
->
p_next
!=
NULL
)
idx
->
p_next
->
p_prev
=
idx
->
p_prev
;
free
(
idx
);
return
xidx
;
}
/* internal function to create a new list member */
/* internal function to create a new list member */
static
demux_index_entry_t
*
index_entry_new
(
void
)
static
demux_index_entry_t
*
index_entry_new
(
void
)
...
@@ -391,13 +375,11 @@ static int64_t find_last_frame (demux_t *p_demux, logical_stream_t *p_stream)
...
@@ -391,13 +375,11 @@ static int64_t find_last_frame (demux_t *p_demux, logical_stream_t *p_stream)
int64_t
i_kframe
=
0
;
int64_t
i_kframe
=
0
;
int64_t
i_pos1
;
int64_t
i_pos1
;
int64_t
i_pos2
;
int64_t
i_pos2
;
int64_t
i_serialno
;
demux_sys_t
*
p_sys
=
p_demux
->
p_sys
;
demux_sys_t
*
p_sys
=
p_demux
->
p_sys
;
i_pos1
=
p_stream
->
i_data_start
;
i_pos1
=
p_stream
->
i_data_start
;
i_pos2
=
p_sys
->
i_total_length
;
i_pos2
=
p_sys
->
i_total_length
;
i_serialno
=
p_stream
->
os
.
serialno
;
i_start_pos
=
i_pos2
-
OGGSEEK_BYTES_TO_READ
;
i_start_pos
=
i_pos2
-
OGGSEEK_BYTES_TO_READ
;
...
...
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