Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-2-2
Commits
1cfc0623
Commit
1cfc0623
authored
Nov 27, 2008
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Revert "Fixed deadlock when no data are received in rtp."
This reverts commit
a34f0730
.
parent
e03130e4
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
4 deletions
+5
-4
modules/access/rtp/input.c
modules/access/rtp/input.c
+5
-4
No files found.
modules/access/rtp/input.c
View file @
1cfc0623
...
...
@@ -196,9 +196,10 @@ void rtp_process (demux_t *demux)
mtime_t
deadline
=
INT64_MAX
;
vlc_mutex_lock
(
&
p_sys
->
lock
);
if
(
!
rtp_dequeue
(
demux
,
p_sys
->
session
,
&
deadline
))
deadline
=
mdate
()
+
CLOCK_FREQ
/
5
;
vlc_cond_timedwait
(
&
p_sys
->
wait
,
&
p_sys
->
lock
,
deadline
);
if
(
rtp_dequeue
(
demux
,
p_sys
->
session
,
&
deadline
))
/* Pace the demux thread */
vlc_cond_timedwait
(
&
p_sys
->
wait
,
&
p_sys
->
lock
,
deadline
);
else
vlc_cond_wait
(
&
p_sys
->
wait
,
&
p_sys
->
lock
);
vlc_mutex_unlock
(
&
p_sys
->
lock
);
}
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