gstreamer/tests/examples/rtp/meson.build
Mathieu Duponchelle f52e16ceb8 Revert "rtpbin: receive bundle support"
This reverts commit dcd3ce9751.

This functionality was implemented for gstopenwebrtc, but it
turned out this was not actually needed for webrtc bundling
support, as shown in webrtcbin. It also doesn't correspond
to any standards.

This is an API break, but nothing should actually depend on
this, at least not for its initial purpose.

Changes in rtpbin.c were reverted manually, to preserve some
refactoring that had occurred in the original commit.

Fixes #537
2018-12-20 13:25:10 +00:00

14 lines
307 B
Meson

rtp_progs = [
'server-alsasrc-PCMA',
'client-PCMA',
'client-rtpaux',
'server-rtpaux',
]
foreach prog : rtp_progs
executable(prog, prog + '.c',
dependencies: [gstrtp_dep, gst_dep, libm],
c_args : gst_plugins_good_args,
include_directories : [configinc],
install: false)
endforeach