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
438
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
a50f9457
Commit
a50f9457
authored
1 year ago
by
Loïc
Committed by
Jean-Baptiste Kempf
1 year ago
Browse files
Options
Downloads
Patches
Plain Diff
meson: rtp: split as static library
Counter-part of
49bdbee1
parent
68140314
No related branches found
No related tags found
1 merge request
!3954
meson: rtp: split as static library
Pipeline
#366317
passed with stage
in 16 minutes and 31 seconds
Changes
1
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
modules/access/rtp/meson.build
+7
-3
7 additions, 3 deletions
modules/access/rtp/meson.build
with
7 additions
and
3 deletions
modules/access/rtp/meson.build
+
7
−
3
View file @
a50f9457
rtp_lib
=
static_library
(
'rtp'
,
files
(
'rtpfmt.c'
,
'session.c'
,
'rtp.h'
),
include_directories
:
[
vlc_include_dirs
],
install
:
false
,
pic
:
true
)
if
libgcrypt_dep
.
found
()
srtp_lib
=
static_library
(
'srtp'
,
files
(
'srtp.c'
,
'srtp.h'
),
...
...
@@ -14,17 +20,15 @@ vlc_modules += {
'sources'
:
files
(
'input.c'
,
'session.c'
,
'sdp.c'
,
'sdp.h'
,
'rtpfmt.c'
,
'datagram.c'
,
'vlc_dtls.h'
,
'rtp.c'
,
'rtp.h'
,
),
'dependencies'
:
[
socket_libs
],
'link_with'
:
srtp_lib
,
'link_with'
:
[
rtp_lib
,
srtp_lib
]
,
'c_args'
:
srtp_rtp_c_args
,
}
...
...
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