mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-03 16:09:39 +00:00
4b0fe48287
Original commit message from CVS: * gst/videocrop/Makefile.am: * gst/videocrop/gstvideocrop.c: (gst_video_crop_class_init), (gst_video_crop_transform_packed), (gst_video_crop_transform_planar): Some quick tests indicate that it doesn't make a great deal of sense to use liboil here, at least not for the memcpy()s we do, so remove liboil usage until there is clear evidence it actually makes a positive difference somewhere.
12 lines
427 B
Makefile
12 lines
427 B
Makefile
plugin_LTLIBRARIES = libgstvideocrop.la
|
|
|
|
# Note: we only use defines from gst/video/video.h, but none
|
|
# of the functions, so we don't need to link to libgstvideo
|
|
|
|
libgstvideocrop_la_SOURCES = gstvideocrop.c
|
|
libgstvideocrop_la_CFLAGS = $(GST_CFLAGS) $(GST_BASE_CFLAGS) \
|
|
$(GST_PLUGINS_BASE_CFLAGS)
|
|
libgstvideocrop_la_LIBADD = $(GST_BASE_LIBS)
|
|
libgstvideocrop_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
|
|
noinst_HEADERS = gstvideocrop.h
|