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:
Tim-Philipp Müller 2006-09-02 15:30:45 +00:00
parent 4998a5a548
commit 7e69aee223
4 changed files with 542 additions and 418 deletions

View file

@ -1,3 +1,20 @@
2006-09-02 Tim-Philipp Müller <tim at centricular dot net>
* 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 Stefan Kost <ensonic@users.sf.net>
* sys/v4l2/gstv4l2.c:

View file

@ -85,8 +85,9 @@ GST_PLUGINS_ALL="\
spectrum \
speed \
qtdemux \
xingheader \
tta \
videocrop \
xingheader \
"
AC_SUBST(GST_PLUGINS_ALL)
@ -848,6 +849,7 @@ gst/spectrum/Makefile
gst/speed/Makefile
gst/qtdemux/Makefile
gst/tta/Makefile
gst/videocrop/Makefile
gst/xingheader/Makefile
gst-libs/Makefile
gst-libs/gst/Makefile

View file

@ -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