mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-08 18:39:54 +00:00
34db0838be
Original commit message from CVS: * docs/libs/gst-plugins-base-libs-docs.sgml: * docs/libs/gst-plugins-base-libs-sections.txt: * gst-libs/gst/video/video.c: (gst_video_calculate_display_ratio): * gst-libs/gst/video/video.h: * gst/videoscale/Makefile.am: * gst/videoscale/gstvideoscale.c: (gst_video_scale_fixate_caps): * sys/xvimage/xvimagesink.c: (gst_xvimagesink_setcaps): * tests/check/Makefile.am: * tests/check/libs/video.c: (GST_START_TEST), (video_suite), (main): Fix integer overflow problem with pixel-aspect-ratio calculations in videoscale and xvimagesink (#341542)
17 lines
469 B
Makefile
17 lines
469 B
Makefile
plugin_LTLIBRARIES = libgstvideoscale.la
|
|
|
|
libgstvideoscale_la_SOURCES = \
|
|
gstvideoscale.c \
|
|
vs_image.c \
|
|
vs_scanline.c
|
|
|
|
libgstvideoscale_la_CFLAGS = $(GST_CFLAGS) $(GST_BASE_CFLAGS) $(LIBOIL_CFLAGS)
|
|
libgstvideoscale_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
libgstvideoscale_la_LIBADD = \
|
|
$(top_builddir)/gst-libs/gst/video/libgstvideo-$(GST_MAJORMINOR).la \
|
|
$(GST_BASE_LIBS) $(GST_LIBS) $(LIBOIL_LIBS)
|
|
|
|
noinst_HEADERS = \
|
|
gstvideoscale.h \
|
|
vs_image.h \
|
|
vs_scanline.h
|