Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
F
ffmpeg
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Stefan Westerfeld
ffmpeg
Commits
a2f59138
Commit
a2f59138
authored
Oct 18, 2022
by
Anton Khirnov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
lavf: set internal thread names
parent
5f82447d
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
8 additions
and
0 deletions
+8
-0
async.c
libavformat/async.c
+2
-0
fifo.c
libavformat/fifo.c
+2
-0
udp.c
libavformat/udp.c
+4
-0
No files found.
libavformat/async.c
View file @
a2f59138
...
@@ -189,6 +189,8 @@ static void *async_buffer_task(void *arg)
...
@@ -189,6 +189,8 @@ static void *async_buffer_task(void *arg)
int
ret
=
0
;
int
ret
=
0
;
int64_t
seek_ret
;
int64_t
seek_ret
;
ff_thread_setname
(
"async"
);
while
(
1
)
{
while
(
1
)
{
int
fifo_space
,
to_copy
;
int
fifo_space
,
to_copy
;
...
...
libavformat/fifo.c
View file @
a2f59138
...
@@ -432,6 +432,8 @@ static void *fifo_consumer_thread(void *data)
...
@@ -432,6 +432,8 @@ static void *fifo_consumer_thread(void *data)
fifo_thread_ctx
.
avf
=
avf
;
fifo_thread_ctx
.
avf
=
avf
;
fifo_thread_ctx
.
last_received_dts
=
AV_NOPTS_VALUE
;
fifo_thread_ctx
.
last_received_dts
=
AV_NOPTS_VALUE
;
ff_thread_setname
(
"fifo-consumer"
);
while
(
1
)
{
while
(
1
)
{
uint8_t
just_flushed
=
0
;
uint8_t
just_flushed
=
0
;
...
...
libavformat/udp.c
View file @
a2f59138
...
@@ -487,6 +487,8 @@ static void *circular_buffer_task_rx( void *_URLContext)
...
@@ -487,6 +487,8 @@ static void *circular_buffer_task_rx( void *_URLContext)
UDPContext
*
s
=
h
->
priv_data
;
UDPContext
*
s
=
h
->
priv_data
;
int
old_cancelstate
;
int
old_cancelstate
;
ff_thread_setname
(
"udp-rx"
);
pthread_setcancelstate
(
PTHREAD_CANCEL_DISABLE
,
&
old_cancelstate
);
pthread_setcancelstate
(
PTHREAD_CANCEL_DISABLE
,
&
old_cancelstate
);
pthread_mutex_lock
(
&
s
->
mutex
);
pthread_mutex_lock
(
&
s
->
mutex
);
if
(
ff_socket_nonblock
(
s
->
udp_fd
,
0
)
<
0
)
{
if
(
ff_socket_nonblock
(
s
->
udp_fd
,
0
)
<
0
)
{
...
@@ -552,6 +554,8 @@ static void *circular_buffer_task_tx( void *_URLContext)
...
@@ -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
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
;
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
);
pthread_mutex_lock
(
&
s
->
mutex
);
if
(
ff_socket_nonblock
(
s
->
udp_fd
,
0
)
<
0
)
{
if
(
ff_socket_nonblock
(
s
->
udp_fd
,
0
)
<
0
)
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment