Commit 80a3227b authored by Michael Niedermayer's avatar Michael Niedermayer

ffprobe: make function replacement macros behave correctly

Signed-off-by: 's avatarMichael Niedermayer <michael@niedermayer.cc>
parent c0443c1a
......@@ -57,11 +57,11 @@
# ifdef pthread_mutex_lock
# undef pthread_mutex_lock
# endif
# define pthread_mutex_lock(a)
# define pthread_mutex_lock(a) do{}while(0)
# ifdef pthread_mutex_unlock
# undef pthread_mutex_unlock
# endif
# define pthread_mutex_unlock(a)
# define pthread_mutex_unlock(a) do{}while(0)
#endif
typedef struct InputStream {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment