Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
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
Commits
6882d773
Commit
6882d773
authored
Sep 29, 2005
by
Jean-Paul Saman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove trailing whitespace
parent
223dadeb
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
7 deletions
+6
-7
modules/access/udp.c
modules/access/udp.c
+6
-7
No files found.
modules/access/udp.c
View file @
6882d773
...
...
@@ -89,7 +89,7 @@ struct access_sys_t
int
i_mtu
;
vlc_bool_t
b_auto_mtu
;
/* rtp only */
int
i_sequence_number
;
};
...
...
@@ -158,7 +158,6 @@ static int Open( vlc_object_t *p_this )
i_bind_port
=
atoi
(
psz_parser
);
}
}
}
psz_server_addr
=
psz_name
;
...
...
@@ -226,7 +225,7 @@ static int Open( vlc_object_t *p_this )
/* Keep track of RTP sequence number */
p_sys
->
i_sequence_number
=
-
1
;
return
VLC_SUCCESS
;
}
...
...
@@ -329,10 +328,10 @@ static block_t *BlockParseRTP( access_t *p_access, block_t *p_block )
int
i_payload_type
;
int
i_skip
=
0
;
int
i_sequence_number
=
0
;
if
(
p_block
==
NULL
)
return
NULL
;
if
(
p_block
->
i_buffer
<
RTP_HEADER_LEN
)
goto
trash
;
...
...
@@ -360,13 +359,13 @@ static block_t *BlockParseRTP( access_t *p_access, block_t *p_block )
/* Return the packet without the RTP header. */
p_block
->
i_buffer
-=
i_skip
;
p_block
->
p_buffer
+=
i_skip
;
#define RTP_SEQ_NUM_SIZE 65536
/* Detect RTP packet loss through tracking sequence numbers.
* See RFC 1889. */
if
(
p_access
->
p_sys
->
i_sequence_number
==
-
1
)
p_access
->
p_sys
->
i_sequence_number
=
i_sequence_number
;
if
(
((
p_access
->
p_sys
->
i_sequence_number
+
1
)
%
RTP_SEQ_NUM_SIZE
)
!=
i_sequence_number
)
{
msg_Warn
(
p_access
,
"RTP packet(s) lost, expected sequence number %d got %d"
,
...
...
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