mirror of
https://github.com/nyanmisaka/ffmpeg-rockchip.git
synced 2025-10-06 17:29:08 +08:00
lavu/threadmessage: add av_thread_message_queue_nb_elems()
This commit is contained in:
@@ -130,7 +130,9 @@ static void *receiver_thread(void *arg)
|
||||
|
||||
for (i = 0; i < rd->workload; i++) {
|
||||
if (rand() % rd->workload < rd->workload / 10) {
|
||||
av_log(NULL, AV_LOG_INFO, "receiver #%d: flushing the queue\n", rd->id);
|
||||
av_log(NULL, AV_LOG_INFO, "receiver #%d: flushing the queue, "
|
||||
"discarding %d message(s)\n", rd->id,
|
||||
av_thread_message_queue_nb_elems(rd->queue));
|
||||
av_thread_message_flush(rd->queue);
|
||||
} else {
|
||||
struct message msg;
|
||||
|
Reference in New Issue
Block a user