2002-07-22 22:08:28 +00:00
|
|
|
plugin_LTLIBRARIES = libgstvideocrop.la
|
|
|
|
|
Port/rewrite videocrop from scratch for GStreamer-0.10, and make it support all formats videoscale supports (#345653).
Original commit message from CVS:
* configure.ac:
* gst/videocrop/Makefile.am:
* gst/videocrop/gstvideocrop.c: (gst_video_crop_base_init),
(gst_video_crop_class_init), (gst_video_crop_init),
(gst_video_crop_get_image_details_from_caps),
(gst_video_crop_get_unit_size), (gst_video_crop_transform_packed),
(gst_video_crop_transform_planar), (gst_video_crop_transform),
(gst_video_crop_transform_dimension),
(gst_video_crop_transform_dimension_value),
(gst_video_crop_transform_caps), (gst_video_crop_set_caps),
(gst_video_crop_set_property), (gst_video_crop_get_property),
(plugin_init):
Port/rewrite videocrop from scratch for GStreamer-0.10, and make
it support all formats videoscale supports (#345653).
2006-09-02 15:30:45 +00:00
|
|
|
# Note: we only use defines from gst/video/video.h, but none
|
|
|
|
# of the functions, so we don't need to link to libgstvideo
|
|
|
|
|
2009-01-23 14:39:46 +00:00
|
|
|
libgstvideocrop_la_SOURCES = gstvideocrop.c gstaspectratiocrop.c
|
Port/rewrite videocrop from scratch for GStreamer-0.10, and make it support all formats videoscale supports (#345653).
Original commit message from CVS:
* configure.ac:
* gst/videocrop/Makefile.am:
* gst/videocrop/gstvideocrop.c: (gst_video_crop_base_init),
(gst_video_crop_class_init), (gst_video_crop_init),
(gst_video_crop_get_image_details_from_caps),
(gst_video_crop_get_unit_size), (gst_video_crop_transform_packed),
(gst_video_crop_transform_planar), (gst_video_crop_transform),
(gst_video_crop_transform_dimension),
(gst_video_crop_transform_dimension_value),
(gst_video_crop_transform_caps), (gst_video_crop_set_caps),
(gst_video_crop_set_property), (gst_video_crop_get_property),
(plugin_init):
Port/rewrite videocrop from scratch for GStreamer-0.10, and make
it support all formats videoscale supports (#345653).
2006-09-02 15:30:45 +00:00
|
|
|
libgstvideocrop_la_CFLAGS = $(GST_CFLAGS) $(GST_BASE_CFLAGS) \
|
2006-09-08 11:04:24 +00:00
|
|
|
$(GST_PLUGINS_BASE_CFLAGS)
|
|
|
|
libgstvideocrop_la_LIBADD = $(GST_BASE_LIBS)
|
2002-07-22 22:08:28 +00:00
|
|
|
libgstvideocrop_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
2008-11-04 12:28:34 +00:00
|
|
|
libgstvideocrop_la_LIBTOOLFLAGS = --tag=disable-static
|
2002-07-22 22:08:28 +00:00
|
|
|
|
2009-01-23 14:39:46 +00:00
|
|
|
noinst_HEADERS = gstvideocrop.h gstaspectratiocrop.h
|