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
00b61f82
Commit
00b61f82
authored
May 03, 2015
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avcodec: macro expansion safety
parent
363541c9
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
4 deletions
+11
-4
modules/codec/avcodec/video.c
modules/codec/avcodec/video.c
+11
-4
No files found.
modules/codec/avcodec/video.c
View file @
00b61f82
...
...
@@ -82,11 +82,18 @@ struct decoder_sys_t
};
#ifdef HAVE_AVCODEC_MT
# define wait_mt(s) vlc_sem_wait( &s->sem_mt )
# define post_mt(s) vlc_sem_post( &s->sem_mt )
static
inline
void
wait_mt
(
decoder_sys_t
*
sys
)
{
vlc_sem_wait
(
&
sys
->
sem_mt
);
}
static
inline
void
post_mt
(
decoder_sys_t
*
sys
)
{
vlc_sem_post
(
&
sys
->
sem_mt
);
}
#else
#
define wait_mt(
s)
#
define post_mt(
s)
#
define wait_mt(s) ((void)
s)
#
define post_mt(s) ((void)
s)
#endif
/*****************************************************************************
...
...
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