[vlc-commits] [Git][videolan/vlc][master] 2 commits: rtp: meson.build: add dependency to h26x.h
François Cartegnie (@fcartegnie)
gitlab at videolan.org
Thu Mar 7 09:17:32 UTC 2024
François Cartegnie pushed to branch master at VideoLAN / VLC
Commits:
736a40f4 by Alexandre Janniaux at 2024-03-07T09:00:21+00:00
rtp: meson.build: add dependency to h26x.h
The file was added in 7c9f7725e187a6a4add857d157b3244afafccb28 to
provide common code between h264 and h265 handling.
- - - - -
e7ad770f by Alexandre Janniaux at 2024-03-07T09:00:21+00:00
rtp: meson.build: add rtp_h265 module
The module was added in 4d691734b189ccae3300c8d0d40eb6428fadd486.
- - - - -
1 changed file:
- modules/access/rtp/meson.build
Changes:
=====================================
modules/access/rtp/meson.build
=====================================
@@ -54,7 +54,12 @@ vlc_modules += {
vlc_modules += {
'name': 'rtp_h264',
- 'sources': files('h264.c')
+ 'sources': files('h264.c', 'h26x.h'),
+}
+
+vlc_modules += {
+ 'name': 'rtp_h265',
+ 'sources': files('h265.c', 'h26x.h'),
}
vlc_modules += {
View it on GitLab: https://code.videolan.org/videolan/vlc/-/compare/d060882171620c4cd80a6029aefcc8bcc0e6e3d0...e7ad770f469cadef3e7dab02f3750ca12347ab67
--
View it on GitLab: https://code.videolan.org/videolan/vlc/-/compare/d060882171620c4cd80a6029aefcc8bcc0e6e3d0...e7ad770f469cadef3e7dab02f3750ca12347ab67
You're receiving this email because of your account on code.videolan.org.
VideoLAN code repository instance
More information about the vlc-commits
mailing list