mirror of https://git.ffmpeg.org/ffmpeg.git
avutil/threadmessage: fix build without HAVE_THREADS
This commit is contained in:
parent
4a2058bf4e
commit
d4b1b33e69
|
@ -202,11 +202,13 @@ void av_thread_message_queue_set_err_recv(AVThreadMessageQueue *mq,
|
|||
#endif /* HAVE_THREADS */
|
||||
}
|
||||
|
||||
#if HAVE_THREADS
|
||||
static void free_func_wrap(void *arg, void *msg, int size)
|
||||
{
|
||||
AVThreadMessageQueue *mq = arg;
|
||||
mq->free_func(msg);
|
||||
}
|
||||
#endif
|
||||
|
||||
void av_thread_message_flush(AVThreadMessageQueue *mq)
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue