Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
VLC
Manage
Activity
Members
Labels
Plan
Issues
4k
Issue boards
Milestones
Code
Merge requests
469
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Analyze
Contributor analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
VideoLAN
VLC
Merge requests
!6385
access: rtp: case insensitive match configuration parameters
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
access: rtp: case insensitive match configuration parameters
fcartegnie/vlc:mr211124
into
master
Overview
14
Commits
1
Pipelines
5
Changes
1
Merged
François Cartegnie
requested to merge
fcartegnie/vlc:mr211124
into
master
6 months ago
Overview
14
Commits
1
Pipelines
5
Changes
1
Expand
rfc3640 format parameters are not case dependent
Edited
6 months ago
by
François Cartegnie
0
0
Merge request reports
Compare
master
version 2
f01a7160
6 months ago
version 1
0246b834
6 months ago
master (base)
and
latest version
latest version
bd1cd88d
1 commit,
6 months ago
version 2
f01a7160
1 commit,
6 months ago
version 1
0246b834
1 commit,
6 months ago
1 file
+
1
−
1
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
modules/access/rtp/fmtp.h
+
1
−
1
Options
@@ -35,7 +35,7 @@ const char *vlc_sdp_fmtp_get_str(const struct vlc_sdp_pt *desc,
while
(
p
!=
NULL
)
{
p
+=
strspn
(
p
,
" "
);
if
(
strn
cmp
(
p
,
name
,
namelen
)
==
0
&&
p
[
namelen
]
==
'='
)
{
if
(
vlc_ascii_strncase
cmp
(
p
,
name
,
namelen
)
==
0
&&
p
[
namelen
]
==
'='
)
{
p
+=
namelen
+
1
;
*
lenp
=
strcspn
(
p
,
";"
);
return
p
;
Loading