diff options
author | Tim-Philipp Müller <tim@centricular.net> | 2006-09-08 11:04:24 +0000 |
---|---|---|
committer | Tim-Philipp Müller <tim@centricular.net> | 2006-09-08 11:04:24 +0000 |
commit | 64396d9026d8317ec80e6208119eaee79a6de9b5 (patch) | |
tree | 9d175c5c2bba7f18c68fd771efbf537df35aed57 /gst/videocrop/Makefile.am | |
parent | 57deb3aace1d735030ad4a4f4caae80d647e42d9 (diff) | |
download | gst-plugins-bad-64396d9026d8317ec80e6208119eaee79a6de9b5.tar.gz gst-plugins-bad-64396d9026d8317ec80e6208119eaee79a6de9b5.tar.bz2 gst-plugins-bad-64396d9026d8317ec80e6208119eaee79a6de9b5.zip |
gst/videocrop/: Some quick tests indicate that it doesn't make a great deal of sense to use liboil here, at least not...
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.
Diffstat (limited to 'gst/videocrop/Makefile.am')
-rw-r--r-- | gst/videocrop/Makefile.am | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gst/videocrop/Makefile.am b/gst/videocrop/Makefile.am index f5634bdf..9557742c 100644 --- a/gst/videocrop/Makefile.am +++ b/gst/videocrop/Makefile.am @@ -5,8 +5,8 @@ plugin_LTLIBRARIES = libgstvideocrop.la libgstvideocrop_la_SOURCES = gstvideocrop.c libgstvideocrop_la_CFLAGS = $(GST_CFLAGS) $(GST_BASE_CFLAGS) \ - $(GST_PLUGINS_BASE_CFLAGS) $(LIBOIL_CFLAGS) -libgstvideocrop_la_LIBADD = $(GST_BASE_LIBS) $(LIBOIL_LIBS) + $(GST_PLUGINS_BASE_CFLAGS) +libgstvideocrop_la_LIBADD = $(GST_BASE_LIBS) libgstvideocrop_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS) noinst_HEADERS = gstvideocrop.h |