|
Revision 469cfd7e0ee2e367ef639a6e8064337546314659, 501 bytes
(checked in by Rémi Denis-Courmont <rem@videolan.org>, 7 months ago)
|
Don't use VLC_ADD_PLUGIN for common sout and packetizers plugins
|
- Property mode set to
100644
|
| Line | |
|---|
| 1 |
SOURCES_packetizer_copy = copy.c |
|---|
| 2 |
SOURCES_packetizer_mpegvideo = mpegvideo.c |
|---|
| 3 |
SOURCES_packetizer_mpeg4video = mpeg4video.c |
|---|
| 4 |
SOURCES_packetizer_mpeg4audio = mpeg4audio.c |
|---|
| 5 |
SOURCES_packetizer_h264 = h264.c |
|---|
| 6 |
SOURCES_packetizer_vc1 = vc1.c |
|---|
| 7 |
|
|---|
| 8 |
libvlc_LTLIBRARIES += \ |
|---|
| 9 |
libpacketizer_mpegvideo_plugin.la \ |
|---|
| 10 |
libpacketizer_mpeg4video_plugin.la \ |
|---|
| 11 |
libpacketizer_mpeg4audio_plugin.la \ |
|---|
| 12 |
libpacketizer_h264_plugin.la \ |
|---|
| 13 |
libpacketizer_vc1_plugin.la |
|---|
| 14 |
if ENABLE_SOUT |
|---|
| 15 |
libvlc_LTLIBRARIES += libpacketizer_copy_plugin.la |
|---|
| 16 |
endif |
|---|