mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 04:01:08 +00:00
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).
This commit is contained in:
parent
b638f1c974
commit
18917b8ab6
2 changed files with 522 additions and 417 deletions
|
@ -1,9 +1,12 @@
|
|||
|
||||
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)
|
||||
libgstvideocrop_la_LIBADD =
|
||||
libgstvideocrop_la_CFLAGS = $(GST_CFLAGS) $(GST_BASE_CFLAGS) \
|
||||
$(GST_PLUGINS_BASE_CFLAGS) $(LIBOIL_CFLAGS)
|
||||
libgstvideocrop_la_LIBADD = $(GST_BASE_LIBS) $(LIBOIL_LIBS)
|
||||
libgstvideocrop_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||
|
||||
noinst_HEADERS =
|
||||
|
|
File diff suppressed because it is too large
Load diff
Loading…
Reference in a new issue