mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
lavf: set internal thread names
This commit is contained in:
parent
5f82447dfc
commit
a2f5913857
@ -189,6 +189,8 @@ static void *async_buffer_task(void *arg)
|
||||
int ret = 0;
|
||||
int64_t seek_ret;
|
||||
|
||||
ff_thread_setname("async");
|
||||
|
||||
while (1) {
|
||||
int fifo_space, to_copy;
|
||||
|
||||
|
@ -432,6 +432,8 @@ static void *fifo_consumer_thread(void *data)
|
||||
fifo_thread_ctx.avf = avf;
|
||||
fifo_thread_ctx.last_received_dts = AV_NOPTS_VALUE;
|
||||
|
||||
ff_thread_setname("fifo-consumer");
|
||||
|
||||
while (1) {
|
||||
uint8_t just_flushed = 0;
|
||||
|
||||
|
@ -487,6 +487,8 @@ static void *circular_buffer_task_rx( void *_URLContext)
|
||||
UDPContext *s = h->priv_data;
|
||||
int old_cancelstate;
|
||||
|
||||
ff_thread_setname("udp-rx");
|
||||
|
||||
pthread_setcancelstate(PTHREAD_CANCEL_DISABLE, &old_cancelstate);
|
||||
pthread_mutex_lock(&s->mutex);
|
||||
if (ff_socket_nonblock(s->udp_fd, 0) < 0) {
|
||||
@ -552,6 +554,8 @@ static void *circular_buffer_task_tx( void *_URLContext)
|
||||
int64_t burst_interval = s->bitrate ? (s->burst_bits * 1000000 / s->bitrate) : 0;
|
||||
int64_t max_delay = s->bitrate ? ((int64_t)h->max_packet_size * 8 * 1000000 / s->bitrate + 1) : 0;
|
||||
|
||||
ff_thread_setname("udp-tx");
|
||||
|
||||
pthread_mutex_lock(&s->mutex);
|
||||
|
||||
if (ff_socket_nonblock(s->udp_fd, 0) < 0) {
|
||||
|
Loading…
Reference in New Issue
Block a user