2005-08-30 19:01:18 +00:00
|
|
|
GST_DOC_SCANOBJ = $(top_srcdir)/common/gstdoc-scangobj
|
|
|
|
|
|
|
|
## Process this file with automake to produce Makefile.in
|
|
|
|
|
|
|
|
# The name of the module, e.g. 'glib'.
|
|
|
|
#DOC_MODULE=gst-plugins-libs-@GST_MAJORMINOR@
|
|
|
|
MODULE=gst-plugins-good
|
|
|
|
DOC_MODULE=$(MODULE)-plugins
|
|
|
|
|
|
|
|
# for upload.mak
|
|
|
|
DOC=$(MODULE)-plugins
|
|
|
|
FORMATS=html
|
|
|
|
html: html-build.stamp
|
|
|
|
include $(srcdir)/../upload.mak
|
|
|
|
|
|
|
|
# generated basefiles
|
|
|
|
#basefiles = \
|
|
|
|
## $(DOC_MODULE).types \
|
|
|
|
# $(DOC_MODULE)-sections.txt \
|
|
|
|
# $(DOC_MODULE)-docs.sgml
|
|
|
|
|
|
|
|
# ugly hack to make -unused.sgml work
|
|
|
|
#unused-build.stamp:
|
|
|
|
# BUILDDIR=`pwd` && \
|
|
|
|
# cd $(srcdir)/tmpl && \
|
|
|
|
# ln -sf gstreamer-libs-unused.sgml \
|
|
|
|
# $$BUILDDIR/tmpl/gstreamer-libs-@GST_MAJORMINOR@-unused.sgml
|
|
|
|
# touch unused-build.stamp
|
|
|
|
|
|
|
|
# these rules are added to create parallel docs using GST_MAJORMINOR
|
|
|
|
#$(basefiles): gstreamer-libs-@GST_MAJORMINOR@%: gstreamer-libs%
|
|
|
|
# cp $< $@
|
|
|
|
|
|
|
|
#CLEANFILES = $(basefiles)
|
|
|
|
|
|
|
|
# The top-level SGML file. Change it if you want.
|
|
|
|
DOC_MAIN_SGML_FILE=$(DOC_MODULE)-docs.sgml
|
|
|
|
|
|
|
|
# The directory containing the source code. Relative to $(top_srcdir).
|
|
|
|
# gtk-doc will search all .c & .h files beneath here for inline comments
|
|
|
|
# documenting functions and macros.
|
|
|
|
DOC_SOURCE_DIR = $(top_srcdir)
|
|
|
|
|
|
|
|
# Extra options to supply to gtkdoc-scan.
|
|
|
|
SCAN_OPTIONS=
|
|
|
|
|
|
|
|
# Extra options to supply to gtkdoc-mkdb.
|
2006-05-01 11:46:33 +00:00
|
|
|
MKDB_OPTIONS=--sgml-mode --source-suffixes=c,h,cc
|
2005-08-30 19:01:18 +00:00
|
|
|
|
|
|
|
# Extra options to supply to gtkdoc-fixref.
|
2007-02-13 09:46:26 +00:00
|
|
|
FIXXREF_OPTIONS=--extra-dir=$(GLIB_PREFIX)/share/gtk-doc/html/gobject \
|
|
|
|
--extra-dir=$(GLIB_PREFIX)/share/gtk-doc/html/glib \
|
|
|
|
--extra-dir=$(GST_PREFIX)/share/gtk-doc/html/gstreamer-@GST_MAJORMINOR@ \
|
|
|
|
--extra-dir=$(GST_PREFIX)/share/gtk-doc/html/gstreamer-libs-@GST_MAJORMINOR@ \
|
|
|
|
--extra-dir=$(GSTPB_PREFIX)/share/gtk-doc/html/gst-plugins-base-libs-@GST_MAJORMINOR@
|
2005-08-30 19:01:18 +00:00
|
|
|
|
|
|
|
# Used for dependencies.
|
|
|
|
HFILE_GLOB=$(DOC_SOURCE_DIR)/*/*/*.h
|
2006-05-01 11:46:33 +00:00
|
|
|
CFILE_GLOB=$(DOC_SOURCE_DIR)/*/*/*.c $(DOC_SOURCE_DIR)/*/*/*.cc
|
2005-08-30 19:01:18 +00:00
|
|
|
|
|
|
|
# this is a wingo addition
|
|
|
|
# thomasvs: another nice wingo addition would be an explanation on why
|
|
|
|
# this is useful ;)
|
|
|
|
|
|
|
|
SCANOBJ_DEPS =
|
|
|
|
|
|
|
|
# Header files to ignore when scanning.
|
|
|
|
IGNORE_HFILES =
|
|
|
|
IGNORE_CFILES =
|
|
|
|
|
|
|
|
# we add all .h files of elements that have signals/args we want
|
|
|
|
# sadly this also pulls in the private methods - maybe we should
|
|
|
|
# move those around in the source ?
|
|
|
|
# also, we should add some stuff here conditionally based on whether
|
|
|
|
# or not the plugin will actually build
|
|
|
|
# but I'm not sure about that - it might be this Just Works given that
|
|
|
|
# the registry won't have the element
|
|
|
|
|
|
|
|
EXTRA_HFILES = \
|
2007-04-24 09:12:42 +00:00
|
|
|
$(top_srcdir)/gst/alpha/gstalphacolor.h \
|
2006-02-06 10:56:07 +00:00
|
|
|
$(top_srcdir)/gst/apetag/gstapedemux.h \
|
2007-01-10 09:47:43 +00:00
|
|
|
$(top_srcdir)/gst/audiofx/audiopanorama.h \
|
gst/audiofx/: Add new audiofx element "audioinvert". This element swaps the upper and lower half of samples and can b...
Original commit message from CVS:
reviewed by: Stefan Kost <ensonic@users.sf.net>
* gst/audiofx/Makefile.am:
* gst/audiofx/audiofx.c: (plugin_init):
* gst/audiofx/audioinvert.c: (gst_audio_invert_base_init),
(gst_audio_invert_class_init), (gst_audio_invert_init),
(gst_audio_invert_set_property), (gst_audio_invert_get_property),
(gst_audio_invert_set_caps), (gst_audio_invert_transform_int),
(gst_audio_invert_transform_float),
(gst_audio_invert_transform_ip):
* gst/audiofx/audioinvert.h:
Add new audiofx element "audioinvert". This element swaps the upper
and lower half of samples and can be used for example for a
wide-stereo effect. Fixes #396057
* docs/plugins/Makefile.am:
* docs/plugins/gst-plugins-good-plugins-docs.sgml:
* docs/plugins/gst-plugins-good-plugins-sections.txt:
* docs/plugins/gst-plugins-good-plugins.args:
* docs/plugins/inspect/plugin-audiofx.xml:
Add docs for the audioinvert element and add them to the build system.
* tests/check/Makefile.am:
* tests/check/elements/audioinvert.c: (setup_invert),
(cleanup_invert), (GST_START_TEST), (invert_suite), (main):
Add unit test suite for the audioinvert element.
2007-01-23 18:16:09 +00:00
|
|
|
$(top_srcdir)/gst/audiofx/audioinvert.h \
|
gst/audiofx/: Add new element "audioamplify". This allows scaling of raw audio samples, similar to the "volume" eleme...
Original commit message from CVS:
reviewed by: Stefan Kost <ensonic@users.sf.net>
* gst/audiofx/Makefile.am:
* gst/audiofx/audioamplify.c:
(gst_audio_amplify_clipping_method_get_type),
(gst_audio_amplify_base_init), (gst_audio_amplify_class_init),
(gst_audio_amplify_init), (gst_audio_amplify_set_process_function),
(gst_audio_amplify_set_property), (gst_audio_amplify_get_property),
(gst_audio_amplify_set_caps),
(gst_audio_amplify_transform_int_clip),
(gst_audio_amplify_transform_int_wrap_negative),
(gst_audio_amplify_transform_int_wrap_positive),
(gst_audio_amplify_transform_float_clip),
(gst_audio_amplify_transform_float_wrap_negative),
(gst_audio_amplify_transform_float_wrap_positive),
(gst_audio_amplify_transform_ip):
* gst/audiofx/audioamplify.h:
* gst/audiofx/audiofx.c: (plugin_init):
Add new element "audioamplify". This allows scaling of raw audio
samples, similar to the "volume" element, but provides different modes
for clipping and allows unlimited amplification. It's mainly targeted
for creative sound design and not as a replacement of the "volume"
element. Fixes #397162
* docs/plugins/Makefile.am:
* docs/plugins/gst-plugins-good-plugins-docs.sgml:
* docs/plugins/gst-plugins-good-plugins-sections.txt:
* docs/plugins/gst-plugins-good-plugins.args:
* docs/plugins/inspect/plugin-audiofx.xml:
Add docs for audioamplify and integrate them into the build system
* tests/check/Makefile.am:
* tests/check/elements/audioamplify.c: (setup_amplify),
(cleanup_amplify), (GST_START_TEST), (amplify_suite), (main):
Add fairly extensive unit test suite for audioamplify
2007-01-24 12:41:03 +00:00
|
|
|
$(top_srcdir)/gst/audiofx/audioamplify.h \
|
gst/audiofx/: Add new audiodynamic element which can act as a compressor or expander. Supported are hard-knee and sof...
Original commit message from CVS:
reviewed by: Stefan Kost <ensonic@users.sf.net>
* gst/audiofx/Makefile.am:
* gst/audiofx/audiodynamic.c:
(gst_audio_dynamic_characteristics_get_type),
(gst_audio_dynamic_mode_get_type),
(gst_audio_dynamic_set_process_function),
(gst_audio_dynamic_base_init), (gst_audio_dynamic_class_init),
(gst_audio_dynamic_init), (gst_audio_dynamic_set_property),
(gst_audio_dynamic_get_property), (gst_audio_dynamic_setup),
(gst_audio_dynamic_transform_hard_knee_compressor_int),
(gst_audio_dynamic_transform_hard_knee_compressor_float),
(gst_audio_dynamic_transform_soft_knee_compressor_int),
(gst_audio_dynamic_transform_soft_knee_compressor_float),
(gst_audio_dynamic_transform_hard_knee_expander_int),
(gst_audio_dynamic_transform_hard_knee_expander_float),
(gst_audio_dynamic_transform_soft_knee_expander_int),
(gst_audio_dynamic_transform_soft_knee_expander_float),
(gst_audio_dynamic_transform_ip):
* gst/audiofx/audiodynamic.h:
* gst/audiofx/audiofx.c: (plugin_init):
Add new audiodynamic element which can act as a compressor or
expander. Supported are hard-knee and soft-knee operation modes with
user-specified ratio and threshold.
Attack and release parameters are not yet implemented but will follow.
* docs/plugins/Makefile.am:
* docs/plugins/gst-plugins-good-plugins-docs.sgml:
* docs/plugins/gst-plugins-good-plugins-sections.txt:
* docs/plugins/gst-plugins-good-plugins.args:
* docs/plugins/inspect/plugin-audiofx.xml:
Integrate audiodynamic into the docs.
* tests/check/Makefile.am:
* tests/check/elements/audiodynamic.c: (setup_dynamic),
(cleanup_dynamic), (GST_START_TEST), (dynamic_suite), (main):
Add unit test for audiodynamic.
2007-03-08 10:02:12 +00:00
|
|
|
$(top_srcdir)/gst/audiofx/audiodynamic.h \
|
2005-11-25 21:02:16 +00:00
|
|
|
$(top_srcdir)/gst/autodetect/gstautoaudiosink.h \
|
|
|
|
$(top_srcdir)/gst/autodetect/gstautovideosink.h \
|
2006-04-27 16:05:54 +00:00
|
|
|
$(top_srcdir)/gst/avi/gstavidemux.h \
|
|
|
|
$(top_srcdir)/gst/avi/gstavimux.h \
|
2007-02-07 20:39:16 +00:00
|
|
|
$(top_srcdir)/gst/debug/progressreport.h \
|
add docs to build
Original commit message from CVS:
* Makefile.am:
* configure.ac:
add docs to build
* common/plugins.xsl:
wrap Description into a refsect2
* docs/Makefile.am:
* docs/plugins/Makefile.am:
* docs/plugins/gst-plugins-good-plugins-docs.sgml:
* docs/plugins/gst-plugins-good-plugins-sections.txt:
* gst/goom/Makefile.am:
* gst/goom/gstgoom.c: (gst_goom_get_type), (gst_goom_base_init),
(gst_goom_class_init), (gst_goom_init), (gst_goom_dispose),
(gst_goom_sink_setcaps), (gst_goom_src_setcaps),
(gst_goom_src_negotiate), (gst_goom_event), (gst_goom_chain),
(gst_goom_change_state):
* gst/goom/gstgoom.h:
GstGOOM -> GstGoom
add an example launch line
* gst/level/gstlevel.h:
* gst/monoscope/gstmonoscope.c:
cleanups
2005-09-01 17:55:14 +00:00
|
|
|
$(top_srcdir)/gst/level/gstlevel.h \
|
2005-11-25 21:36:18 +00:00
|
|
|
$(top_srcdir)/gst/goom/gstgoom.h \
|
2005-12-21 15:24:59 +00:00
|
|
|
$(top_srcdir)/gst/id3demux/gstid3demux.h \
|
2006-06-20 14:57:09 +00:00
|
|
|
$(top_srcdir)/gst/rtsp/gstrtpdec.h \
|
|
|
|
$(top_srcdir)/gst/rtsp/gstrtspsrc.h \
|
docs/plugins/: Added wavparse docs.
Original commit message from CVS:
* docs/plugins/Makefile.am:
* docs/plugins/gst-plugins-good-plugins-docs.sgml:
* docs/plugins/gst-plugins-good-plugins-sections.txt:
Added wavparse docs.
* gst/wavparse/gstwavparse.c: (gst_wavparse_class_init),
(gst_wavparse_reset), (gst_wavparse_init),
(gst_wavparse_create_sourcepad), (gst_wavparse_parse_file_header),
(gst_wavparse_stream_init), (gst_wavparse_perform_seek),
(gst_wavparse_stream_headers), (gst_wavparse_send_event),
(gst_wavparse_stream_data), (gst_wavparse_loop),
(gst_wavparse_srcpad_event), (gst_wavparse_sink_activate_pull),
(gst_wavparse_change_state):
* gst/wavparse/gstwavparse.h:
Implement seek in READY (fixes #327658)
Added docs and did some cleanups.
2006-03-03 18:36:53 +00:00
|
|
|
$(top_srcdir)/gst/wavparse/gstwavparse.h \
|
2006-07-24 15:25:49 +00:00
|
|
|
$(top_srcdir)/ext/annodex/gstcmmldec.h \
|
|
|
|
$(top_srcdir)/ext/annodex/gstcmmlenc.h \
|
2005-11-25 22:14:47 +00:00
|
|
|
$(top_srcdir)/ext/cairo/gsttimeoverlay.h \
|
2006-02-06 11:34:23 +00:00
|
|
|
$(top_srcdir)/ext/cdio/gstcdiocddasrc.h \
|
docs/plugins/: Added dvdec and dvdemux to docs.
Original commit message from CVS:
* docs/plugins/Makefile.am:
* docs/plugins/gst-plugins-good-plugins-docs.sgml:
* docs/plugins/gst-plugins-good-plugins-sections.txt:
Added dvdec and dvdemux to docs.
* ext/dv/gstdvdec.c: (gst_dvdec_base_init), (gst_dvdec_chain):
Added docs.
Check frame sizes so we don't crash when don't have enough
data.
Send nice error messages on error.
* ext/dv/gstdvdemux.c: (gst_dvdemux_base_init),
(gst_dvdemux_class_init), (gst_dvdemux_init),
(gst_dvdemux_finalize), (gst_dvdemux_reset),
(gst_dvdemux_src_convert), (gst_dvdemux_sink_convert),
(gst_dvdemux_src_query), (gst_dvdemux_sink_query),
(gst_dvdemux_push_event), (gst_dvdemux_handle_sink_event),
(gst_dvdemux_convert_src_pair), (gst_dvdemux_convert_sink_pair),
(gst_dvdemux_convert_src_to_sink), (gst_dvdemux_handle_push_seek),
(gst_dvdemux_do_seek), (gst_dvdemux_handle_pull_seek),
(gst_dvdemux_handle_src_event), (gst_dvdemux_demux_audio),
(gst_dvdemux_demux_video), (gst_dvdemux_demux_frame),
(gst_dvdemux_flush), (gst_dvdemux_chain), (gst_dvdemux_loop),
(gst_dvdemux_sink_activate_push), (gst_dvdemux_sink_activate_pull),
(gst_dvdemux_sink_activate), (gst_dvdemux_change_state):
* ext/dv/gstdvdemux.h:
Added docs.
Implement pull mode.
Fix memleaks.
Reduce memcpy for the video demuxing.
2006-02-28 10:22:11 +00:00
|
|
|
$(top_srcdir)/ext/dv/gstdvdec.h \
|
|
|
|
$(top_srcdir)/ext/dv/gstdvdemux.h \
|
2006-07-24 15:25:49 +00:00
|
|
|
$(top_srcdir)/ext/esd/esdsink.h \
|
2005-12-08 16:27:12 +00:00
|
|
|
$(top_srcdir)/ext/flac/gstflacdec.h \
|
Add HAL sound device wrapper plugins. Closes #329106
Original commit message from CVS:
* configure.ac:
* docs/plugins/Makefile.am:
* docs/plugins/gst-plugins-good-plugins-docs.sgml:
* docs/plugins/gst-plugins-good-plugins-sections.txt:
* docs/plugins/gst-plugins-good-plugins.hierarchy:
* ext/Makefile.am:
* ext/hal/Makefile.am:
* ext/hal/gsthalaudiosink.c: (gst_hal_audio_sink_base_init),
(gst_hal_audio_sink_class_init), (gst_hal_audio_sink_reset),
(gst_hal_audio_sink_init), (gst_hal_audio_sink_dispose),
(do_toggle_element), (gst_hal_audio_sink_set_property),
(gst_hal_audio_sink_get_property),
(gst_hal_audio_sink_change_state):
* ext/hal/gsthalaudiosink.h:
* ext/hal/gsthalaudiosrc.c: (gst_hal_audio_src_base_init),
(gst_hal_audio_src_class_init), (gst_hal_audio_src_reset),
(gst_hal_audio_src_init), (gst_hal_audio_src_dispose),
(do_toggle_element), (gst_hal_audio_src_set_property),
(gst_hal_audio_src_get_property), (gst_hal_audio_src_change_state):
* ext/hal/gsthalaudiosrc.h:
* ext/hal/gsthalelements.c: (plugin_init):
* ext/hal/gsthalelements.h:
* ext/hal/hal.c: (gst_hal_get_string),
(gst_hal_render_bin_from_udi), (gst_hal_get_audio_sink),
(gst_hal_get_audio_src):
* ext/hal/hal.h:
Add HAL sound device wrapper plugins. Closes #329106
2006-02-15 12:17:28 +00:00
|
|
|
$(top_srcdir)/ext/hal/gsthalaudiosink.h \
|
|
|
|
$(top_srcdir)/ext/hal/gsthalaudiosrc.h \
|
2006-03-03 15:50:40 +00:00
|
|
|
$(top_srcdir)/ext/jpeg/gstjpegdec.h \
|
|
|
|
$(top_srcdir)/ext/jpeg/gstjpegenc.h \
|
|
|
|
$(top_srcdir)/ext/jpeg/gstsmokedec.h \
|
|
|
|
$(top_srcdir)/ext/jpeg/gstsmokeenc.h \
|
2006-05-01 11:46:33 +00:00
|
|
|
$(top_srcdir)/ext/taglib/gsttaglibmux.h \
|
|
|
|
$(top_srcdir)/ext/taglib/gstid3v2mux.h \
|
2006-06-16 10:56:24 +00:00
|
|
|
$(top_srcdir)/ext/taglib/gstapev2mux.h \
|
2006-07-24 15:25:49 +00:00
|
|
|
$(top_srcdir)/gst/icydemux/gsticydemux.h \
|
2005-12-08 16:27:12 +00:00
|
|
|
$(top_srcdir)/gst/multipart/multipartmux.c \
|
2005-12-12 22:29:34 +00:00
|
|
|
$(top_srcdir)/gst/multipart/multipartdemux.c \
|
2006-02-16 14:13:48 +00:00
|
|
|
$(top_srcdir)/gst/udp/gstudpsrc.h \
|
2006-02-06 15:31:16 +00:00
|
|
|
$(top_srcdir)/gst/udp/gstmultiudpsink.h \
|
docs/plugins/: Added videobalance and videoflip to the docs.
Original commit message from CVS:
* docs/plugins/Makefile.am:
* docs/plugins/gst-plugins-good-plugins-docs.sgml:
* docs/plugins/gst-plugins-good-plugins-sections.txt:
* docs/plugins/gst-plugins-good-plugins.hierarchy:
Added videobalance and videoflip to the docs.
* gst/videofilter/Makefile.am:
* gst/videofilter/gstvideobalance.c:
(gst_video_balance_update_tables_planar411),
(gst_video_balance_is_passthrough),
(gst_video_balance_update_properties), (oil_tablelookup_u8),
(gst_video_balance_planar411_ip), (gst_video_balance_set_caps),
(gst_video_balance_transform_ip), (gst_video_balance_base_init),
(gst_video_balance_finalize), (gst_video_balance_class_init),
(gst_video_balance_init), (gst_video_balance_interface_supported),
(gst_video_balance_interface_init),
(gst_video_balance_colorbalance_list_channels),
(gst_video_balance_colorbalance_set_value),
(gst_video_balance_colorbalance_get_value),
(gst_video_balance_colorbalance_init),
(gst_video_balance_set_property), (gst_video_balance_get_property),
(gst_video_balance_get_type), (plugin_init):
* gst/videofilter/gstvideobalance.h:
Ported to 0.10. (Fixes #326160)
Added docs.
* gst/videofilter/gstvideoflip.c:
* gst/videofilter/gstvideoflip.h:
Added docs.
2006-03-03 14:39:55 +00:00
|
|
|
$(top_srcdir)/gst/videofilter/gstvideoflip.h \
|
|
|
|
$(top_srcdir)/gst/videofilter/gstvideobalance.h \
|
2006-04-28 18:57:09 +00:00
|
|
|
$(top_srcdir)/gst/videomixer/videomixer.c \
|
2006-08-18 17:00:53 +00:00
|
|
|
$(top_srcdir)/sys/oss/gstossmixerelement.h \
|
|
|
|
$(top_srcdir)/sys/oss/gstosssrc.h \
|
|
|
|
$(top_srcdir)/sys/oss/gstosssink.h \
|
2006-10-04 10:29:11 +00:00
|
|
|
$(top_srcdir)/sys/v4l2/gstv4l2src.h \
|
2006-04-28 18:57:09 +00:00
|
|
|
$(top_srcdir)/sys/ximage/gstximagesrc.h
|
2005-08-30 19:01:18 +00:00
|
|
|
|
2005-09-14 20:51:47 +00:00
|
|
|
# example code that needs to be converted to xml and placed in xml/
|
|
|
|
EXAMPLE_CFILES = \
|
2005-12-30 15:51:05 +00:00
|
|
|
$(top_srcdir)/tests/examples/level/level-example.c
|
2005-09-14 20:51:47 +00:00
|
|
|
|
2005-08-30 19:01:18 +00:00
|
|
|
# Images to copy into HTML directory.
|
|
|
|
HTML_IMAGES =
|
|
|
|
|
|
|
|
# Extra SGML files that are included by $(DOC_MAIN_SGML_FILE).
|
|
|
|
content_files =
|
|
|
|
|
|
|
|
# Other files to distribute.
|
|
|
|
extra_files =
|
|
|
|
|
|
|
|
# CFLAGS and LDFLAGS for compiling scan program. Only needed if your app/lib
|
|
|
|
# contains GtkObjects/GObjects and you want to document signals and properties.
|
|
|
|
GTKDOC_CFLAGS = $(GST_BASE_CFLAGS) -I$(top_builddir)
|
|
|
|
GTKDOC_LIBS = $(SCANOBJ_DEPS) $(GST_BASE_LIBS)
|
|
|
|
|
|
|
|
GTKDOC_CC=$(LIBTOOL) --mode=compile $(CC)
|
|
|
|
GTKDOC_LD=$(LIBTOOL) --mode=link $(CC)
|
|
|
|
|
|
|
|
# If you need to override some of the declarations, place them in this file
|
|
|
|
# and uncomment this line.
|
|
|
|
#DOC_OVERRIDES = $(DOC_MODULE)-overrides.txt
|
|
|
|
DOC_OVERRIDES =
|
|
|
|
|
|
|
|
include $(top_srcdir)/common/gtk-doc-plugins.mak
|