2005-11-06 21:55:01 +00:00
|
|
|
<?xml version="1.0"?>
|
|
|
|
<!DOCTYPE book PUBLIC "-//OASIS//DTD DocBook XML V4.1.2//EN"
|
|
|
|
"http://www.oasis-open.org/docbook/xml/4.1.2/docbookx.dtd" [
|
|
|
|
<!ENTITY % version-entities SYSTEM "version.entities">
|
|
|
|
%version-entities;
|
|
|
|
]>
|
|
|
|
|
|
|
|
<book id="index" xmlns:xi="http://www.w3.org/2003/XInclude">
|
|
|
|
<bookinfo>
|
|
|
|
<title>GStreamer Bad Plugins &GST_MAJORMINOR; Plugins Reference Manual</title>
|
|
|
|
</bookinfo>
|
|
|
|
|
|
|
|
<chapter>
|
|
|
|
<title>gst-plugins-bad Elements</title>
|
|
|
|
|
2007-05-04 21:02:58 +00:00
|
|
|
<xi:include href="xml/element-directdrawsink.xml" />
|
|
|
|
<xi:include href="xml/element-directsoundsink.xml" />
|
|
|
|
<xi:include href="xml/element-dfbvideosink.xml" />
|
2007-01-12 10:27:25 +00:00
|
|
|
<xi:include href="xml/element-jackaudiosink.xml" />
|
|
|
|
<xi:include href="xml/element-qtdemux.xml" />
|
2007-04-26 14:31:32 +00:00
|
|
|
<xi:include href="xml/element-osxvideosink.xml" />
|
Add ReplayGain analysis element (#357069).
Original commit message from CVS:
Patch by: René Stadler <mail at renestadler de>
* configure.ac:
* docs/plugins/Makefile.am:
* docs/plugins/gst-plugins-bad-plugins-docs.sgml:
* docs/plugins/gst-plugins-bad-plugins-sections.txt:
* gst/replaygain/Makefile.am:
* gst/replaygain/gstrganalysis.c: (gst_rg_analysis_base_init),
(gst_rg_analysis_class_init), (gst_rg_analysis_init),
(gst_rg_analysis_set_property), (gst_rg_analysis_get_property),
(gst_rg_analysis_start), (gst_rg_analysis_set_caps),
(gst_rg_analysis_transform_ip), (gst_rg_analysis_event),
(gst_rg_analysis_stop), (gst_rg_analysis_handle_tags),
(gst_rg_analysis_handle_eos), (gst_rg_analysis_track_result),
(gst_rg_analysis_album_result), (plugin_init):
* gst/replaygain/gstrganalysis.h:
* gst/replaygain/rganalysis.c: (yule_filter), (butter_filter),
(apply_filters), (reset_filters), (accumulator_add),
(accumulator_clear), (accumulator_result), (rg_analysis_new),
(rg_analysis_set_sample_rate), (rg_analysis_destroy),
(rg_analysis_analyze_mono_float),
(rg_analysis_analyze_stereo_float),
(rg_analysis_analyze_mono_int16),
(rg_analysis_analyze_stereo_int16), (rg_analysis_analyze),
(rg_analysis_track_result), (rg_analysis_album_result),
(rg_analysis_reset_album), (rg_analysis_reset):
* gst/replaygain/rganalysis.h:
Add ReplayGain analysis element (#357069).
* tests/check/Makefile.am:
* tests/check/elements/.cvsignore:
* tests/check/elements/rganalysis.c: (get_expected_gain),
(setup_rganalysis), (cleanup_rganalysis), (set_playing_state),
(send_eos_event), (send_tag_event), (poll_eos), (poll_tags),
(fail_unless_track_gain), (fail_unless_track_peak),
(fail_unless_album_gain), (fail_unless_album_peak),
(fail_if_track_tags), (fail_if_album_tags),
(fail_unless_num_tracks), (test_buffer_const_float_mono),
(test_buffer_const_float_stereo), (test_buffer_const_int16_mono),
(test_buffer_const_int16_stereo), (test_buffer_square_float_mono),
(test_buffer_square_float_stereo), (test_buffer_square_int16_mono),
(test_buffer_square_int16_stereo), (push_buffer), (GST_START_TEST),
(rganalysis_suite), (main):
Unit tests for the new replaygain element.
2006-10-06 15:56:01 +00:00
|
|
|
<xi:include href="xml/element-rganalysis.xml" />
|
Add replaygain playback elements (#412710).
Original commit message from CVS:
Patch by: René Stadler <mail at renestadler de>
* docs/plugins/Makefile.am:
* docs/plugins/gst-plugins-bad-plugins-docs.sgml:
* docs/plugins/gst-plugins-bad-plugins-sections.txt:
* docs/plugins/inspect/plugin-replaygain.xml:
* gst/replaygain/Makefile.am:
* gst/replaygain/gstrganalysis.c: (gst_rg_analysis_class_init),
(gst_rg_analysis_start), (gst_rg_analysis_set_caps),
(gst_rg_analysis_transform_ip), (gst_rg_analysis_event),
(gst_rg_analysis_stop), (gst_rg_analysis_handle_tags),
(gst_rg_analysis_handle_eos), (gst_rg_analysis_track_result),
(gst_rg_analysis_album_result):
* gst/replaygain/gstrganalysis.h:
* gst/replaygain/gstrglimiter.c: (gst_rg_limiter_base_init),
(gst_rg_limiter_class_init), (gst_rg_limiter_init),
(gst_rg_limiter_set_property), (gst_rg_limiter_get_property),
(gst_rg_limiter_transform_ip):
* gst/replaygain/gstrglimiter.h:
* gst/replaygain/gstrgvolume.c: (gst_rg_volume_base_init),
(gst_rg_volume_class_init), (gst_rg_volume_init),
(gst_rg_volume_set_property), (gst_rg_volume_get_property),
(gst_rg_volume_dispose), (gst_rg_volume_change_state),
(gst_rg_volume_sink_event), (gst_rg_volume_tag_event),
(gst_rg_volume_reset), (gst_rg_volume_update_gain),
(gst_rg_volume_determine_gain):
* gst/replaygain/gstrgvolume.h:
* gst/replaygain/replaygain.c: (plugin_init):
* gst/replaygain/replaygain.h:
* gst/replaygain/rganalysis.h:
* tests/check/Makefile.am:
* tests/check/elements/.cvsignore:
* tests/check/elements/rganalysis.c: (send_eos_event),
(GST_START_TEST):
* tests/check/elements/rglimiter.c: (setup_rglimiter),
(cleanup_rglimiter), (set_playing_state), (create_test_buffer),
(verify_test_buffer), (GST_START_TEST), (rglimiter_suite), (main):
* tests/check/elements/rgvolume.c: (event_func), (setup_rgvolume),
(cleanup_rgvolume), (set_playing_state), (set_null_state),
(send_eos_event), (send_tag_event), (test_buffer_new),
(fail_unless_target_gain), (fail_unless_result_gain),
(fail_unless_gain), (GST_START_TEST), (rgvolume_suite), (main):
Add replaygain playback elements (#412710).
2007-05-19 10:01:45 +00:00
|
|
|
<xi:include href="xml/element-rglimiter.xml" />
|
|
|
|
<xi:include href="xml/element-rgvolume.xml" />
|
2007-05-23 13:08:52 +00:00
|
|
|
<xi:include href="xml/element-rtpbin.xml" />
|
|
|
|
<xi:include href="xml/element-rtpjitterbuffer.xml" />
|
|
|
|
<xi:include href="xml/element-rtpptdemux.xml" />
|
|
|
|
<xi:include href="xml/element-rtpsession.xml" />
|
|
|
|
<xi:include href="xml/element-rtpssrcdemux.xml" />
|
2007-01-12 10:27:25 +00:00
|
|
|
<xi:include href="xml/element-sdlaudiosink.xml" />
|
|
|
|
<xi:include href="xml/element-sdlvideosink.xml" />
|
2006-05-03 13:20:41 +00:00
|
|
|
<xi:include href="xml/element-trm.xml" />
|
2006-09-02 18:49:01 +00:00
|
|
|
<xi:include href="xml/element-videocrop.xml" />
|
2007-05-04 21:02:58 +00:00
|
|
|
<xi:include href="xml/element-waveformsink.xml" />
|
2006-08-23 08:52:50 +00:00
|
|
|
<xi:include href="xml/element-wavpackdec.xml" />
|
|
|
|
<xi:include href="xml/element-wavpackenc.xml" />
|
|
|
|
<xi:include href="xml/element-wavpackparse.xml" />
|
2005-11-06 21:55:01 +00:00
|
|
|
</chapter>
|
|
|
|
|
|
|
|
<chapter>
|
|
|
|
<title>gst-plugins-bad Plugins</title>
|
2006-07-13 15:25:58 +00:00
|
|
|
<xi:include href="xml/plugin-alsaspdif.xml" />
|
2006-04-02 10:42:32 +00:00
|
|
|
<xi:include href="xml/plugin-bz2.xml" />
|
|
|
|
<xi:include href="xml/plugin-cdxaparse.xml" />
|
2007-05-04 21:02:58 +00:00
|
|
|
<xi:include href="xml/plugin-directdraw.xml" />
|
|
|
|
<xi:include href="xml/plugin-directsound.xml" />
|
|
|
|
<xi:include href="xml/plugin-dfbvideosink.xml" />
|
2005-11-23 19:57:49 +00:00
|
|
|
<xi:include href="xml/plugin-faad.xml" />
|
2006-04-02 10:42:32 +00:00
|
|
|
<xi:include href="xml/plugin-freeze.xml" />
|
|
|
|
<xi:include href="xml/plugin-glimagesink.xml" />
|
2005-11-23 19:57:49 +00:00
|
|
|
<xi:include href="xml/plugin-gsm.xml" />
|
2006-07-13 15:25:58 +00:00
|
|
|
<xi:include href="xml/plugin-h264parse.xml" />
|
2007-01-12 10:27:25 +00:00
|
|
|
<xi:include href="xml/plugin-jack.xml" />
|
2006-04-02 10:42:32 +00:00
|
|
|
<xi:include href="xml/plugin-modplug.xml" />
|
2006-07-13 15:25:58 +00:00
|
|
|
<xi:include href="xml/plugin-musepack.xml" />
|
2006-05-03 13:20:41 +00:00
|
|
|
<xi:include href="xml/plugin-musicbrainz.xml" />
|
2006-04-02 10:42:32 +00:00
|
|
|
<xi:include href="xml/plugin-neon.xml" />
|
2007-04-26 14:31:32 +00:00
|
|
|
<xi:include href="xml/plugin-osxvideo.xml" />
|
2005-11-23 19:57:49 +00:00
|
|
|
<xi:include href="xml/plugin-qtdemux.xml" />
|
Add ReplayGain analysis element (#357069).
Original commit message from CVS:
Patch by: René Stadler <mail at renestadler de>
* configure.ac:
* docs/plugins/Makefile.am:
* docs/plugins/gst-plugins-bad-plugins-docs.sgml:
* docs/plugins/gst-plugins-bad-plugins-sections.txt:
* gst/replaygain/Makefile.am:
* gst/replaygain/gstrganalysis.c: (gst_rg_analysis_base_init),
(gst_rg_analysis_class_init), (gst_rg_analysis_init),
(gst_rg_analysis_set_property), (gst_rg_analysis_get_property),
(gst_rg_analysis_start), (gst_rg_analysis_set_caps),
(gst_rg_analysis_transform_ip), (gst_rg_analysis_event),
(gst_rg_analysis_stop), (gst_rg_analysis_handle_tags),
(gst_rg_analysis_handle_eos), (gst_rg_analysis_track_result),
(gst_rg_analysis_album_result), (plugin_init):
* gst/replaygain/gstrganalysis.h:
* gst/replaygain/rganalysis.c: (yule_filter), (butter_filter),
(apply_filters), (reset_filters), (accumulator_add),
(accumulator_clear), (accumulator_result), (rg_analysis_new),
(rg_analysis_set_sample_rate), (rg_analysis_destroy),
(rg_analysis_analyze_mono_float),
(rg_analysis_analyze_stereo_float),
(rg_analysis_analyze_mono_int16),
(rg_analysis_analyze_stereo_int16), (rg_analysis_analyze),
(rg_analysis_track_result), (rg_analysis_album_result),
(rg_analysis_reset_album), (rg_analysis_reset):
* gst/replaygain/rganalysis.h:
Add ReplayGain analysis element (#357069).
* tests/check/Makefile.am:
* tests/check/elements/.cvsignore:
* tests/check/elements/rganalysis.c: (get_expected_gain),
(setup_rganalysis), (cleanup_rganalysis), (set_playing_state),
(send_eos_event), (send_tag_event), (poll_eos), (poll_tags),
(fail_unless_track_gain), (fail_unless_track_peak),
(fail_unless_album_gain), (fail_unless_album_peak),
(fail_if_track_tags), (fail_if_album_tags),
(fail_unless_num_tracks), (test_buffer_const_float_mono),
(test_buffer_const_float_stereo), (test_buffer_const_int16_mono),
(test_buffer_const_int16_stereo), (test_buffer_square_float_mono),
(test_buffer_square_float_stereo), (test_buffer_square_int16_mono),
(test_buffer_square_int16_stereo), (push_buffer), (GST_START_TEST),
(rganalysis_suite), (main):
Unit tests for the new replaygain element.
2006-10-06 15:56:01 +00:00
|
|
|
<xi:include href="xml/plugin-replaygain.xml" />
|
2007-05-23 13:08:52 +00:00
|
|
|
<xi:include href="xml/plugin-rtpmanager.xml" />
|
2006-04-02 10:42:32 +00:00
|
|
|
<xi:include href="xml/plugin-sdl.xml" />
|
2006-07-13 15:25:58 +00:00
|
|
|
<xi:include href="xml/plugin-spectrum.xml" />
|
2005-11-23 19:57:49 +00:00
|
|
|
<xi:include href="xml/plugin-speed.xml" />
|
|
|
|
<xi:include href="xml/plugin-tta.xml" />
|
2006-09-02 18:49:01 +00:00
|
|
|
<xi:include href="xml/plugin-videocrop.xml" />
|
2007-05-04 21:02:58 +00:00
|
|
|
<xi:include href="xml/plugin-waveform.xml" />
|
|
|
|
<xi:include href="xml/plugin-wavpack.xml" />
|
2006-04-02 10:42:32 +00:00
|
|
|
<xi:include href="xml/plugin-xingheader.xml" />
|
2005-11-06 21:55:01 +00:00
|
|
|
|
|
|
|
</chapter>
|
|
|
|
</book>
|