mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-20 07:16:55 +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
4998a5a548
commit
7e69aee223
4 changed files with 542 additions and 418 deletions
17
ChangeLog
17
ChangeLog
|
@ -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:
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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