mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-24 18:51:11 +00:00
1119f6ee41
Conflicts: ext/chromaprint/gstchromaprint.c ext/mpeg2enc/Makefile.am ext/voaacenc/gstvoaacenc.c gst/dvbsuboverlay/gstdvbsuboverlay.c gst/mpegtsdemux/mpegtsbase.c gst/sdp/gstsdpdemux.c gst/videoparsers/gsth264parse.c sys/d3dvideosink/d3dvideosink.c tests/examples/camerabin/gst-camera-perf.c tests/examples/camerabin/gst-camerabin-test.c tests/examples/camerabin2/gst-camerabin2-test.c tests/examples/mxf/mxfdemux-structure.c tests/examples/scaletempo/demo-main.c
23 lines
692 B
Makefile
23 lines
692 B
Makefile
plugin_LTLIBRARIES = libgstmpeg2enc.la
|
|
|
|
libgstmpeg2enc_la_SOURCES = \
|
|
gstmpeg2enc.cc \
|
|
gstmpeg2encoptions.cc \
|
|
gstmpeg2encoder.cc \
|
|
gstmpeg2encstreamwriter.cc \
|
|
gstmpeg2encpicturereader.cc
|
|
|
|
libgstmpeg2enc_la_CXXFLAGS = \
|
|
$(GST_PLUGINS_BAD_CFLAGS) $(GST_PLUGINS_BASE_CFLAGS) $(GST_CXXFLAGS) $(MPEG2ENC_CFLAGS)
|
|
libgstmpeg2enc_la_LIBADD = \
|
|
$(GST_PLUGINS_BASE_LIBS) -lgstvideo-@GST_MAJORMINOR@ \
|
|
$(GST_LIBS) $(MPEG2ENC_LIBS)
|
|
libgstmpeg2enc_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
libgstmpeg2enc_la_LIBTOOLFLAGS = --tag=disable-static
|
|
|
|
noinst_HEADERS = \
|
|
gstmpeg2enc.hh \
|
|
gstmpeg2encoder.hh \
|
|
gstmpeg2encoptions.hh \
|
|
gstmpeg2encstreamwriter.hh \
|
|
gstmpeg2encpicturereader.hh
|