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
bbab5a93
Commit
bbab5a93
authored
Aug 03, 2011
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
block_Bytestream: use block_Release() and simplify a little
parent
68dbf6ec
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
24 additions
and
20 deletions
+24
-20
include/vlc_block_helper.h
include/vlc_block_helper.h
+24
-20
No files found.
include/vlc_block_helper.h
View file @
bbab5a93
...
...
@@ -28,10 +28,10 @@
typedef
struct
block_bytestream_t
{
block_t
*
p_chain
;
block_t
*
p_block
;
size_t
i_offset
;
block_t
*
p_chain
;
/**< byte stream head block */
block_t
*
p_block
;
/**< byte stream read pointer block */
size_t
i_offset
;
/**< byte stream read pointer offset within block */
/* TODO? add tail pointer for faster push? */
}
block_bytestream_t
;
/*****************************************************************************
...
...
@@ -45,12 +45,12 @@ static inline void block_BytestreamInit( block_bytestream_t *p_bytestream )
static
inline
void
block_BytestreamRelease
(
block_bytestream_t
*
p_bytestream
)
{
while
(
p_bytestream
->
p_chain
)
for
(
block_t
*
block
=
p_bytestream
->
p_chain
;
block
!=
NULL
;
)
{
block_t
*
p_next
;
p_next
=
p_bytestream
->
p_chain
->
p_next
;
p_bytestream
->
p_chain
->
pf_release
(
p_bytestream
->
p_chain
);
p_bytestream
->
p_chain
=
p_next
;
block_t
*
p_next
=
block
->
p_next
;
block_Release
(
block
);
block
=
p_next
;
}
}
...
...
@@ -68,22 +68,26 @@ static inline void block_BytestreamEmpty( block_bytestream_t *p_bytestream )
*/
static
inline
void
block_BytestreamFlush
(
block_bytestream_t
*
p_bytestream
)
{
while
(
p_bytestream
->
p_chain
!=
p_bytestream
->
p_block
)
block_t
*
block
=
p_bytestream
->
p_chain
;
while
(
block
!=
p_bytestream
->
p_block
)
{
block_t
*
p_next
;
p_next
=
p_bytestream
->
p_chain
->
p_next
;
p_bytestream
->
p_chain
->
pf_release
(
p_bytestream
->
p_chain
);
p_bytestream
->
p_chain
=
p_next
;
block_t
*
p_next
=
block
->
p_next
;
block_Release
(
block
);
block
=
p_next
;
}
while
(
p_bytestream
->
p_block
&&
(
p_bytestream
->
p_block
->
i_buffer
-
p_bytestream
->
i_offset
)
==
0
)
while
(
block
!=
NULL
&&
block
->
i_buffer
==
p_bytestream
->
i_offset
)
{
block_t
*
p_next
;
p_next
=
p_bytestream
->
p_chain
->
p_next
;
p_bytestream
->
p_chain
->
pf_release
(
p_bytestream
->
p_chain
);
p_bytestream
->
p_chain
=
p_bytestream
->
p_
block
=
p_next
;
block_t
*
p_next
=
block
->
p_next
;
block_Release
(
block
);
block
=
p_next
;
p_bytestream
->
i_offset
=
0
;
}
p_bytestream
->
p_chain
=
p_bytestream
->
p_block
=
block
;
}
static
inline
void
block_BytestreamPush
(
block_bytestream_t
*
p_bytestream
,
...
...
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