Browse Source

avutil/threadmessage: fix build without HAVE_THREADS

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

+ 2
- 0
libavutil/threadmessage.c View File

@@ -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…
Cancel
Save