diff options
author | Wim Taymans <wim.taymans@gmail.com> | 2004-06-17 13:45:50 +0000 |
---|---|---|
committer | Wim Taymans <wim.taymans@gmail.com> | 2004-06-17 13:45:50 +0000 |
commit | 89ac4c4f56000e47cb16c1df7f3fe54d8939c9ff (patch) | |
tree | 3f25c77d4e33c5d6e4ffc87c5463040f74b41468 | |
parent | 0a85f67eb0a39cfd9c2f81b16b0482b026422377 (diff) | |
download | gst-plugins-bad-89ac4c4f56000e47cb16c1df7f3fe54d8939c9ff.tar.gz gst-plugins-bad-89ac4c4f56000e47cb16c1df7f3fe54d8939c9ff.tar.bz2 gst-plugins-bad-89ac4c4f56000e47cb16c1df7f3fe54d8939c9ff.zip |
gst/audiorate/: Added an audiorate converter that fills in gaps.
Original commit message from CVS:
* gst/audiorate/Makefile.am:
* gst/audiorate/gstaudiorate.c: (gst_audiorate_get_type),
(gst_audiorate_base_init), (gst_audiorate_class_init),
(gst_audiorate_link), (gst_audiorate_init), (gst_audiorate_chain),
(gst_audiorate_set_property), (gst_audiorate_get_property),
(gst_audiorate_change_state), (plugin_init):
Added an audiorate converter that fills in gaps.
-rw-r--r-- | ChangeLog | 10 | ||||
-rw-r--r-- | configure.ac | 4 |
2 files changed, 14 insertions, 0 deletions
@@ -1,3 +1,13 @@ +2004-06-17 Wim Taymans <wim@fluendo.com> + + * gst/audiorate/Makefile.am: + * gst/audiorate/gstaudiorate.c: (gst_audiorate_get_type), + (gst_audiorate_base_init), (gst_audiorate_class_init), + (gst_audiorate_link), (gst_audiorate_init), (gst_audiorate_chain), + (gst_audiorate_set_property), (gst_audiorate_get_property), + (gst_audiorate_change_state), (plugin_init): + Added an audiorate converter that fills in gaps. + 2004-06-17 Johan Dahlin <johan@gnome.org> * ext/tcp/*: Revert Zaheer changes. diff --git a/configure.ac b/configure.ac index b9f4c656..05744b98 100644 --- a/configure.ac +++ b/configure.ac @@ -340,6 +340,7 @@ GST_PLUGINS_ALL="\ asfdemux \ audioconvert \ audioscale \ + audiorate \ auparse \ avi \ cdxaparse \ @@ -395,6 +396,7 @@ GST_PLUGINS_ALL="\ videoflip \ videofilter \ videomixer \ + videorate \ videoscale \ videotestsrc \ volenv \ @@ -1781,6 +1783,7 @@ gst/adder/Makefile gst/alpha/Makefile gst/audioconvert/Makefile gst/audioscale/Makefile +gst/audiorate/Makefile gst/auparse/Makefile gst/avi/Makefile gst/asfdemux/Makefile @@ -1840,6 +1843,7 @@ gst/videofilter/Makefile gst/videoflip/Makefile gst/videomixer/Makefile gst/videoscale/Makefile +gst/videorate/Makefile gst/videotestsrc/Makefile gst/volenv/Makefile gst/volume/Makefile |