Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-1.1
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-1.1
Commits
496e7390
Commit
496e7390
authored
Aug 11, 2008
by
Jean-Paul Saman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Improve comment wording in vlc_block.h
parent
3e148f1b
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
include/vlc_block.h
include/vlc_block.h
+4
-4
No files found.
include/vlc_block.h
View file @
496e7390
...
...
@@ -135,6 +135,7 @@ static inline block_t *block_Duplicate( block_t *p_block )
return
p_dup
;
}
static
inline
void
block_Release
(
block_t
*
p_block
)
{
p_block
->
pf_release
(
p_block
);
...
...
@@ -146,14 +147,14 @@ VLC_EXPORT( block_t *, block_File, (int fd) );
/****************************************************************************
* Chains of blocks functions helper
****************************************************************************
* - block_ChainAppend : append a block t
he
the last block of a chain. Try to
* - block_ChainAppend : append a block t
o
the last block of a chain. Try to
* avoid using with a lot of data as it's really slow, prefer
* block_ChainLastAppend
* - block_ChainLastAppend : use a pointer over a pointer to the next blocks,
* and update it.
* - block_ChainRelease : release a chain of block
* - block_ChainExtract : extract data from a chain, return real bytes counts
* - block_ChainGather : gather a chain, free it and return
a
block.
* - block_ChainGather : gather a chain, free it and return
one
block.
****************************************************************************/
static
inline
void
block_ChainAppend
(
block_t
**
pp_list
,
block_t
*
p_block
)
{
...
...
@@ -170,7 +171,7 @@ static inline void block_ChainAppend( block_t **pp_list, block_t *p_block )
}
}
static
inline
void
block_ChainLastAppend
(
block_t
***
ppp_last
,
block_t
*
p_block
)
static
inline
void
block_ChainLastAppend
(
block_t
***
ppp_last
,
block_t
*
p_block
)
{
block_t
*
p_last
=
p_block
;
...
...
@@ -236,7 +237,6 @@ static inline block_t *block_ChainGather( block_t *p_list )
return
g
;
}
/****************************************************************************
* Fifos of blocks.
****************************************************************************
...
...
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