Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
GSoC
GSoC2018
macOS
vlc
Commits
8ee331bf
Commit
8ee331bf
authored
Nov 11, 2005
by
Marian Durkovic
Browse files
forwardport [13195]
parent
3c3f388b
Changes
1
Hide whitespace changes
Inline
Side-by-side
modules/access/udp.c
View file @
8ee331bf
...
...
@@ -99,7 +99,7 @@ struct access_sys_t
vlc_bool_t
b_auto_mtu
;
/* reorder rtp packets when out-of-sequence */
int64
_t
i_rtp_late
;
mtime
_t
i_rtp_late
;
uint16_t
i_last_seqno
;
block_t
*
p_list
;
block_t
*
p_end
;
...
...
@@ -458,6 +458,7 @@ static block_t *BlockParseRTP( access_t *p_access, block_t *p_block )
/* Return the packet without the RTP header, remember seqno in i_dts */
p_block
->
i_buffer
-=
i_skip
;
p_block
->
p_buffer
+=
i_skip
;
p_block
->
i_pts
=
mdate
();
p_block
->
i_dts
=
(
mtime_t
)
i_sequence_number
;
#if 0
...
...
@@ -482,19 +483,19 @@ trash:
static
block_t
*
BlockPrebufferRTP
(
access_t
*
p_access
,
block_t
*
p_block
)
{
access_sys_t
*
p_sys
=
p_access
->
p_sys
;
int64
_t
i_first
=
mdate
();
mtime
_t
i_first
=
mdate
();
int
i_count
=
0
;
block_t
*
p
=
p_block
;
for
(
;;
)
{
int64
_t
i_date
=
mdate
();
mtime
_t
i_date
=
mdate
();
if
(
p
&&
rtp_ChainInsert
(
p_access
,
p
))
i_count
++
;
/* Require at least
3
packets in the buffer */
if
(
i_count
>
3
&&
(
i_date
-
i_first
)
>
p_sys
->
i_rtp_late
)
/* Require at least
2
packets in the buffer */
if
(
i_count
>
2
&&
(
i_date
-
i_first
)
>
p_sys
->
i_rtp_late
)
break
;
p
=
BlockParseRTP
(
p_access
,
BlockUDP
(
p_access
));
...
...
@@ -519,17 +520,19 @@ static block_t *BlockRTP( access_t *p_access )
access_sys_t
*
p_sys
=
p_access
->
p_sys
;
block_t
*
p
;
again:
p
=
BlockParseRTP
(
p_access
,
BlockUDP
(
p_access
));
if
(
!
p
)
return
NULL
;
while
(
!
p_sys
->
p_list
||
(
mdate
()
-
p_sys
->
p_list
->
i_pts
)
<
p_sys
->
i_rtp_late
)
{
p
=
BlockParseRTP
(
p_access
,
BlockUDP
(
p_access
));
if
(
!
p
_access
->
info
.
b_prebuffered
)
return
BlockPrebufferRTP
(
p_access
,
p
)
;
if
(
!
p
)
return
NULL
;
if
(
!
rtp_ChainInsert
(
p_access
,
p
))
goto
again
;
if
(
!
p_access
->
info
.
b_prebuffered
)
return
BlockPrebufferRTP
(
p_access
,
p
);
rtp_ChainInsert
(
p_access
,
p
);
}
p
=
p_sys
->
p_list
;
p_sys
->
p_list
=
p_sys
->
p_list
->
p_next
;
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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