avutil/threadmessage: fix build without HAVE_THREADS, new attempt

This commit is contained in:
Clément Bœsch 2015-12-07 16:39:57 +01:00
parent 312c83e057
commit 5e0c47d41c
1 changed files with 2 additions and 0 deletions

View File

@ -93,7 +93,9 @@ int av_thread_message_queue_alloc(AVThreadMessageQueue **mq,
void av_thread_message_queue_set_free_func(AVThreadMessageQueue *mq,
void (*free_func)(void *msg))
{
#if HAVE_THREADS
mq->free_func = free_func;
#endif
}
void av_thread_message_queue_free(AVThreadMessageQueue **mq)