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
25f65d40
Commit
25f65d40
authored
Jan 05, 2009
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Unexport slightly unsafe block_FifoSize
parent
3d0df50b
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
1 addition
and
3 deletions
+1
-3
include/vlc_block.h
include/vlc_block.h
+1
-2
src/libvlccore.sym
src/libvlccore.sym
+0
-1
No files found.
include/vlc_block.h
View file @
25f65d40
...
@@ -291,7 +291,6 @@ static inline block_t *block_ChainGather( block_t *p_list )
...
@@ -291,7 +291,6 @@ static inline block_t *block_ChainGather( block_t *p_list )
* needed), be carefull, you can use it ONLY if you are sure to be the
* needed), be carefull, you can use it ONLY if you are sure to be the
* only one getting data from the fifo.
* only one getting data from the fifo.
* - block_FifoCount : how many packets are waiting in the fifo
* - block_FifoCount : how many packets are waiting in the fifo
* - block_FifoSize : how many cumulated bytes are waiting in the fifo
* - block_FifoWake : wake ups a thread with block_FifoGet() = NULL
* - block_FifoWake : wake ups a thread with block_FifoGet() = NULL
* (this is used to wakeup a thread when there is no data to queue)
* (this is used to wakeup a thread when there is no data to queue)
*
*
...
@@ -307,7 +306,7 @@ VLC_EXPORT( size_t, block_FifoPut, ( block_fifo_t *, block_t * ) );
...
@@ -307,7 +306,7 @@ VLC_EXPORT( size_t, block_FifoPut, ( block_fifo_t *, block_t * ) );
VLC_EXPORT
(
void
,
block_FifoWake
,
(
block_fifo_t
*
)
);
VLC_EXPORT
(
void
,
block_FifoWake
,
(
block_fifo_t
*
)
);
VLC_EXPORT
(
block_t
*
,
block_FifoGet
,
(
block_fifo_t
*
)
LIBVLC_USED
);
VLC_EXPORT
(
block_t
*
,
block_FifoGet
,
(
block_fifo_t
*
)
LIBVLC_USED
);
VLC_EXPORT
(
block_t
*
,
block_FifoShow
,
(
block_fifo_t
*
)
);
VLC_EXPORT
(
block_t
*
,
block_FifoShow
,
(
block_fifo_t
*
)
);
VLC_EXPORT
(
size_t
,
block_FifoSize
,
(
const
block_fifo_t
*
p_fifo
)
LIBVLC_USED
)
;
size_t
block_FifoSize
(
const
block_fifo_t
*
p_fifo
)
LIBVLC_USED
;
VLC_EXPORT
(
size_t
,
block_FifoCount
,
(
const
block_fifo_t
*
p_fifo
)
LIBVLC_USED
);
VLC_EXPORT
(
size_t
,
block_FifoCount
,
(
const
block_fifo_t
*
p_fifo
)
LIBVLC_USED
);
#endif
/* VLC_BLOCK_H */
#endif
/* VLC_BLOCK_H */
src/libvlccore.sym
View file @
25f65d40
...
@@ -41,7 +41,6 @@ block_FifoNew
...
@@ -41,7 +41,6 @@ block_FifoNew
block_FifoPut
block_FifoPut
block_FifoRelease
block_FifoRelease
block_FifoShow
block_FifoShow
block_FifoSize
block_FifoWake
block_FifoWake
block_File
block_File
block_Init
block_Init
...
...
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