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
24dc1822
Commit
24dc1822
authored
Oct 27, 2005
by
Marian Durkovic
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
skip 4 bytes also for RTP payload=32 (MPV) - RFC2250
parent
0337533b
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
3 deletions
+2
-3
modules/access/udp.c
modules/access/udp.c
+2
-3
No files found.
modules/access/udp.c
View file @
24dc1822
...
...
@@ -416,7 +416,6 @@ static inline vlc_bool_t rtp_ChainInsert( access_t *p_access, block_t *p_block )
*****************************************************************************/
static
block_t
*
BlockParseRTP
(
access_t
*
p_access
,
block_t
*
p_block
)
{
access_sys_t
*
p_sys
=
(
access_sys_t
*
)
p_access
->
p_sys
;
int
i_rtp_version
;
int
i_CSRC_count
;
int
i_payload_type
;
...
...
@@ -442,9 +441,9 @@ static block_t *BlockParseRTP( access_t *p_access, block_t *p_block )
if
(
i_rtp_version
!=
2
)
msg_Dbg
(
p_access
,
"RTP version is %u, should be 2"
,
i_rtp_version
);
if
(
i_payload_type
==
14
)
if
(
i_payload_type
==
14
||
i_payload_type
==
32
)
i_skip
=
4
;
else
if
(
i_payload_type
!=
33
&&
i_payload_type
!=
32
)
else
if
(
i_payload_type
!=
33
)
msg_Dbg
(
p_access
,
"unsupported RTP payload type (%u)"
,
i_payload_type
);
if
(
i_extension_flag
)
i_extension_length
=
4
+
...
...
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