Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
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-gpu
Commits
50580510
Commit
50580510
authored
Jul 19, 2007
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Same as previous commit
parent
d1216c16
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
modules/access/udp.c
modules/access/udp.c
+5
-5
No files found.
modules/access/udp.c
View file @
50580510
...
...
@@ -484,10 +484,10 @@ static inline vlc_bool_t rtp_ChainInsert( access_t *p_access, block_t *p_block )
if
(
p_prev
)
{
p_prev
->
p_prev
=
p_block
;
msg_Dbg
(
p_access
,
"RTP reordering: insert after %d, new %d"
,
(
uint16_t
)
p
->
i_dts
,
i_new
);
msg_Dbg
(
p_access
,
"RTP reordering: insert after %d, new %d"
,
(
uint16_t
)
p
->
i_dts
,
i_new
);
}
else
else
{
p_sys
->
p_end
=
p_block
;
}
...
...
@@ -498,7 +498,7 @@ static inline vlc_bool_t rtp_ChainInsert( access_t *p_access, block_t *p_block )
i_tmp
=
p_sys
->
i_last_seqno
-
i_new
;
if
(
!
p_access
->
info
.
b_prebuffered
||
(
i_tmp
>
32767
)
)
{
msg_Dbg
(
p_access
,
"RTP reordering: prepend %d before %d"
,
msg_Dbg
(
p_access
,
"RTP reordering: prepend %d before %d"
,
i_new
,
(
uint16_t
)
p
->
i_dts
);
p_block
->
p_next
=
p
;
p
->
p_prev
=
p_block
;
...
...
@@ -511,7 +511,7 @@ static inline vlc_bool_t rtp_ChainInsert( access_t *p_access, block_t *p_block )
/* reordering failed - append the packet to the end of queue */
msg_Dbg
(
p_access
,
"RTP: sequence changed (or buffer too small) "
"new: %d, buffer %d...%d"
,
i_new
,
(
uint16_t
)
p
->
i_dts
,
"new: %d, buffer %d...%d"
,
i_new
,
(
uint16_t
)
p
->
i_dts
,
(
uint16_t
)
p_sys
->
p_end
->
i_dts
);
p_sys
->
p_end
->
p_next
=
p_block
;
p_block
->
p_prev
=
p_sys
->
p_end
;
...
...
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