Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
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-2-2
Commits
8e3dd711
Commit
8e3dd711
authored
Aug 14, 2012
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Unexport block_FifoWake()
parent
210225b2
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
1 addition
and
4 deletions
+1
-4
include/vlc_block.h
include/vlc_block.h
+1
-3
src/libvlccore.sym
src/libvlccore.sym
+0
-1
No files found.
include/vlc_block.h
View file @
8e3dd711
...
...
@@ -298,8 +298,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
* only one getting data from the fifo.
* - block_FifoCount : how many packets are waiting in the fifo
* - block_FifoWake : wake ups a thread with block_FifoGet() = NULL
* (this is used to wakeup a thread when there is no data to queue)
*
* block_FifoGet and block_FifoShow are cancellation points.
****************************************************************************/
...
...
@@ -309,7 +307,7 @@ VLC_API void block_FifoRelease( block_fifo_t * );
VLC_API
void
block_FifoPace
(
block_fifo_t
*
fifo
,
size_t
max_depth
,
size_t
max_size
);
VLC_API
void
block_FifoEmpty
(
block_fifo_t
*
);
VLC_API
size_t
block_FifoPut
(
block_fifo_t
*
,
block_t
*
);
VLC_API
void
block_FifoWake
(
block_fifo_t
*
);
void
block_FifoWake
(
block_fifo_t
*
);
VLC_API
block_t
*
block_FifoGet
(
block_fifo_t
*
)
VLC_USED
;
VLC_API
block_t
*
block_FifoShow
(
block_fifo_t
*
);
size_t
block_FifoSize
(
const
block_fifo_t
*
p_fifo
)
VLC_USED
;
...
...
src/libvlccore.sym
View file @
8e3dd711
...
...
@@ -25,7 +25,6 @@ block_FifoPace
block_FifoPut
block_FifoRelease
block_FifoShow
block_FifoWake
block_File
block_heap_Alloc
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