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
2ebc21a4
Commit
2ebc21a4
authored
Apr 03, 2009
by
Laurent Aimar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Removed unused block_t->p_prev field.
parent
7389caa4
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
1 addition
and
2 deletions
+1
-2
include/vlc_block.h
include/vlc_block.h
+0
-1
src/misc/block.c
src/misc/block.c
+1
-1
No files found.
include/vlc_block.h
View file @
2ebc21a4
...
...
@@ -95,7 +95,6 @@ typedef void (*block_free_t) (block_t *);
struct
block_t
{
block_t
*
p_next
;
block_t
*
p_prev
;
uint32_t
i_flags
;
...
...
src/misc/block.c
View file @
2ebc21a4
...
...
@@ -57,7 +57,7 @@ static void BlockNoRelease( block_t *b )
void
block_Init
(
block_t
*
restrict
b
,
void
*
buf
,
size_t
size
)
{
/* Fill all fields to their default */
b
->
p_next
=
b
->
p_prev
=
NULL
;
b
->
p_next
=
NULL
;
b
->
i_flags
=
0
;
b
->
i_pts
=
b
->
i_dts
=
b
->
i_length
=
0
;
b
->
i_rate
=
0
;
...
...
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