Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
F
ffmpeg.wasm-core
Project
Project
Details
Activity
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
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Linshizhi
ffmpeg.wasm-core
Commits
f811cd2d
Commit
f811cd2d
authored
Jan 07, 2013
by
Martin Storsjö
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
rtsp: Respect max_delay for the reordering queue when using custom IO
Signed-off-by:
Martin Storsjö
<
martin@martin.st
>
parent
8729698d
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
1 deletion
+5
-1
rtsp.c
libavformat/rtsp.c
+5
-1
No files found.
libavformat/rtsp.c
View file @
f811cd2d
...
...
@@ -1912,7 +1912,11 @@ redo:
ff_rtp_check_and_send_back_rr
(
rtsp_st
->
transport_priv
,
rtsp_st
->
rtp_handle
,
NULL
,
len
);
break
;
case
RTSP_LOWER_TRANSPORT_CUSTOM
:
len
=
ffio_read_partial
(
s
->
pb
,
rt
->
recvbuf
,
RECVBUF_SIZE
);
if
(
first_queue_st
&&
rt
->
transport
==
RTSP_TRANSPORT_RTP
&&
wait_end
&&
wait_end
<
av_gettime
())
len
=
AVERROR
(
EAGAIN
);
else
len
=
ffio_read_partial
(
s
->
pb
,
rt
->
recvbuf
,
RECVBUF_SIZE
);
len
=
pick_stream
(
s
,
&
rtsp_st
,
rt
->
recvbuf
,
len
);
if
(
len
>
0
&&
rtsp_st
->
transport_priv
&&
rt
->
transport
==
RTSP_TRANSPORT_RTP
)
ff_rtp_check_and_send_back_rr
(
rtsp_st
->
transport_priv
,
NULL
,
s
->
pb
,
len
);
...
...
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