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
451
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
Commits
69323242
Commit
69323242
authored
3 years ago
by
Rémi Denis-Courmont
Browse files
Options
Downloads
Patches
Plain Diff
rtp: expose vlc_rtp_pt_release()
parent
0247129d
No related branches found
Branches containing commit
No related tags found
1 merge request
!870
rtp: handle RTP map from SDP
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
modules/access/rtp/rtp.h
+6
-1
6 additions, 1 deletion
modules/access/rtp/rtp.h
modules/access/rtp/rtpfmt.c
+1
-1
1 addition, 1 deletion
modules/access/rtp/rtpfmt.c
with
7 additions
and
2 deletions
modules/access/rtp/rtp.h
+
6
−
1
View file @
69323242
...
...
@@ -51,7 +51,12 @@ struct vlc_rtp_pt
};
/**
* Instantiates a payload type.
* Destroys a payload type parameter set.
*/
void
vlc_rtp_pt_release
(
struct
vlc_rtp_pt
*
pt
);
/**
* Instantiates a payload type from a set of parameters.
*
* A given SDP media can have multiple alternative payload types, each with
* their set of parameters. The RTP session can then have multiple concurrent
...
...
This diff is collapsed.
Click to expand it.
modules/access/rtp/rtpfmt.c
+
1
−
1
View file @
69323242
...
...
@@ -350,7 +350,7 @@ static struct vlc_rtp_pt *vlc_rtp_pt_create(vlc_object_t *obj,
return
pt
;
}
static
void
vlc_rtp_pt_release
(
struct
vlc_rtp_pt
*
pt
)
void
vlc_rtp_pt_release
(
struct
vlc_rtp_pt
*
pt
)
{
free
(
pt
);
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
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!
Save comment
Cancel
Please
register
or
sign in
to comment