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
37be0f0e
Commit
37be0f0e
authored
Nov 01, 2014
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
picture_pool: fix prototype, fix warnings
parent
2befefd4
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
include/vlc_picture_pool.h
include/vlc_picture_pool.h
+1
-1
src/misc/picture_pool.c
src/misc/picture_pool.c
+1
-1
No files found.
include/vlc_picture_pool.h
View file @
37be0f0e
...
...
@@ -131,7 +131,7 @@ VLC_USED;
/**
* It returns the size of the given pool.
*/
VLC_API
int
picture_pool_GetSize
(
picture_pool_t
*
);
VLC_API
unsigned
picture_pool_GetSize
(
const
picture_pool_t
*
);
#endif
/* VLC_PICTURE_POOL_H */
...
...
src/misc/picture_pool.c
View file @
37be0f0e
...
...
@@ -326,7 +326,7 @@ void picture_pool_NonEmpty(picture_pool_t *pool)
vlc_mutex_unlock
(
&
pool
->
lock
);
}
int
picture_pool_GetSize
(
picture_pool_t
*
pool
)
unsigned
picture_pool_GetSize
(
const
picture_pool_t
*
pool
)
{
return
pool
->
picture_count
;
}
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