[FFmpeg-devel] [PATCH] Message queue API

Lukasz Marek lukasz.m.luki2 at gmail.com
Sun May 4 18:31:06 CEST 2014


On 04.05.2014 16:59, Nicolas George wrote:
> +/**
> + * Free a message queue.
> + */
> +void av_thread_message_queue_free(AVThreadMessageQueue **mq);
> +
> +/**
> + * Send a message on the queue.
> + *
> + * The message queue must no longer be in use by another thread.

I believe this regards previous function, not this one.

> + */
> +int av_thread_message_queue_send(AVThreadMessageQueue *mq,
> +                                 void *msg,
> +                                 unsigned flags);
> +

I use this API locally and works fine,
No more remarks from me for patches 1,2/3. I haven't reviewed 3rd.



More information about the ffmpeg-devel mailing list