aboutsummaryrefslogtreecommitdiffstats
path: root/libavformat/udp.c
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2022-10-18 18:40:16 +0200
committerAnton Khirnov <anton@khirnov.net>2022-10-24 02:00:31 +0200
commita2f5913857b9ed5e2823aa02ea9293a035958456 (patch)
tree26b07e1fd601b374246734ff49c1359142ca5e15 /libavformat/udp.c
parent5f82447dfc4df8540ab52534dafb5fbd5aa99497 (diff)
downloadffmpeg-a2f5913857b9ed5e2823aa02ea9293a035958456.tar.gz
lavf: set internal thread names
Diffstat (limited to 'libavformat/udp.c')
-rw-r--r--libavformat/udp.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/libavformat/udp.c b/libavformat/udp.c
index 3b36a4a094..e8980b29d8 100644
--- a/libavformat/udp.c
+++ b/libavformat/udp.c
@@ -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) {