Browse Source

avutil/threadmessage: fix build without HAVE_THREADS, new attempt

tags/n3.0
Clément Bœsch 9 years ago
parent
commit
5e0c47d41c
1 changed files with 2 additions and 0 deletions
  1. +2
    -0
      libavutil/threadmessage.c

+ 2
- 0
libavutil/threadmessage.c 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)


Loading…
Cancel
Save