summaryrefslogtreecommitdiffstats
path: root/configure.ac
Commit message (Collapse)AuthorAgeFilesLines
* Recovered debugutils line accidentally removed in deinterlace2 move.Josep Torra2009-05-131-0/+1
|
* Moved 'deinterlace2' from -bad to -goodSebastian Dröge2009-05-131-1/+2
| | | | And rename it to deinterlace.
* flv: Actually add the flv plugin to configure.acSebastian Dröge2009-05-131-0/+2
|
* 0.10.14.2 pre-releaseJan Schmidt2009-05-121-1/+1
|
* Require released versions of core/baseSebastian Dröge2009-05-111-2/+2
|
* Always define the conditional HAVE_GTK to fix configure in some casesSebastian Dröge2009-05-111-1/+1
|
* configure: clean up mess around gtk+ checkingTim-Philipp Müller2009-05-051-22/+5
| | | | And don't check for gtk+ when it's not needed (ie. if examples are disabled)
* configure: make gdk-pixbuf plugin depend only on gdk-pixbuf, not gtk+Tim-Philipp Müller2009-05-051-1/+1
|
* id3v2mux: we need taglib 1.5 for ID3v2::RelativeVolumeFrame::setIdentificationTim-Philipp Müller2009-04-261-1/+1
| | | | Bump taglib requirement.
* only use struct ip_mreqn if it is detectedAndy Wingo2009-04-201-0/+6
| | | | | | * configure.ac: Make an explicit check for struct ip_mreqn. * gst/udp/gstudpnetutils.c: Use HAVE_IP_MREQN instead of the ad-hoc checks.
* debug: rename debug to debugutils to avoid clash with --disable-debug. Fixes ↵Stefan Kost2009-04-151-2/+2
| | | | #562168
* flac: require a 'newer' flac and remove support for the legacy flac APITim-Philipp Müller2009-03-271-1/+1
|
* Change how win32/common/config.h is updatedDavid Schleef2009-02-251-1/+42
| | | | | | | | | | | | | | | Generate win32/common/config.h-new directly from config.h.in, using shell variables in configure and some hard-coded information. Change top-level makefile so that 'make win32-update' copies the generated file to win32/common/config.h, which we keep in source control. It's kept in source control so that the git tree is buildable from VS. This change is similar to the one recently applied to GStreamer and gst-plugins-good. The previous config.h file in -good was in pretty bad shape, so unlike core and base, I didn't attempt to leave it strictly the same, but fixed it as necessary. Needs testing I cannot do myself.
* build: Update shave init statement for changes in common. Bump common.Jan Schmidt2009-02-251-1/+1
|
* Use shave for the build outputJan Schmidt2009-02-241-0/+3
|
* Require newer gst-p-b for the RTSP extensions.Wim Taymans2009-02-231-1/+1
| | | | --
* Back to development -> 0.10.14.1Jan Schmidt2009-02-211-1/+1
|
* Release 0.10.14Jan Schmidt2009-02-191-1/+1
|
* 0.10.13.3 pre-releaseJan Schmidt2009-02-191-1/+1
|
* Release 0.10.13.2Jan Schmidt2009-02-071-1/+1
|
* configure.ac: bump core/base requirements to released versionsTim-Philipp Müller2009-02-031-2/+2
|
* Rewrite the pulse plugin, conditionally enabling new behaviour withJan Schmidt2009-01-281-0/+12
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | newer pulseaudio. Fixes: #567794 * Hook pulsesink's volume property up with the stream volume -- not the sink volume in PA. * Read the device description directly from the sink instead of going via the mixer. * Properly implement _reset() methods for both sink and source to avoid deadlocks when shutting down a pipeline. * Replace all simple pa_threaded_mainloop_wait() by proper loops to guarantee that we wait for the right event in case multiple events are fired. While this is not strictly necessary in many cases it certainly is more correct and makes me sleep better at night. * Replace CHECK_DEAD_GOTO macros with proper functions * Extend the number of supported channels to 32 since that is the actual limit in PA. * Get rid of _dispose() methods since we don't need them. * Increase the volume property upper limit of the sink to 1000. * Reset function pointers after we disconnect a stream/context. Better fix for bug 556986. * Reset the state of the element properly if open/prepare fails * Cork the PA stream when the pipeline is paused. This allows the PA * daemon to close audio device on pause and thus save a bit of power. * Set PA stream properties based on GST tags such as GST_TAG_TITLE, GST_TAG_ARTIST, and so on. Signed-off-by: Lennart Poettering <lennart@poettering.net>
* Use libsoup-gnome for proxy configuration if availableJonathan Matthew2009-01-261-3/+8
| | | | | | | | | | | | | If libsoup-gnome is found use this as it will give us the GNOME proxy configuration. Otherwise use normal libsoup. The GNOME proxy configuration will only be used if the proxy properties are not set on souphttpsrc and if the http_proxy environment variable is not set. Fixes bug #552140.
* Fix linking on Solaris. Fixes bug #568809.Brian Cameron2009-01-231-0/+3
| | | | | Check for the socket library which is needed for socket() on Solaris.
* Bump version number again -> 0.10.13.1Jan Schmidt2009-01-221-1/+1
|
* Back to devel -> 0.10.12.1Jan Schmidt2009-01-221-1/+1
|
* Release 0.10.12Jan Schmidt2009-01-221-1/+1
|
* Add audioiirfilter and audiofirfilter elements which allow generic IIR/FIR ↵Sebastian Dröge2009-01-131-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | filters to be implemented by providing the... Original commit message from CVS: * configure.ac: * gst/audiofx/Makefile.am: * gst/audiofx/audiofirfilter.c: (gst_audio_fir_filter_base_init), (gst_audio_fir_filter_class_init), (gst_audio_fir_filter_update_kernel), (gst_audio_fir_filter_init), (gst_audio_fir_filter_setup), (gst_audio_fir_filter_finalize), (gst_audio_fir_filter_set_property), (gst_audio_fir_filter_get_property): * gst/audiofx/audiofirfilter.h: * gst/audiofx/audiofx.c: (plugin_init): * gst/audiofx/audioiirfilter.c: (gst_audio_iir_filter_base_init), (gst_audio_iir_filter_class_init), (gst_audio_iir_filter_update_coefficients), (gst_audio_iir_filter_init), (gst_audio_iir_filter_setup), (gst_audio_iir_filter_finalize), (gst_audio_iir_filter_set_property), (gst_audio_iir_filter_get_property): * gst/audiofx/audioiirfilter.h: Add audioiirfilter and audiofirfilter elements which allow generic IIR/FIR filters to be implemented by providing the filter coefficients. Fixes bug #567577. * 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/gst-plugins-good-plugins.hierarchy: * docs/plugins/gst-plugins-good-plugins.signals: * docs/plugins/inspect/plugin-alaw.xml: * docs/plugins/inspect/plugin-audiofx.xml: * docs/plugins/inspect/plugin-avi.xml: * docs/plugins/inspect/plugin-flac.xml: * docs/plugins/inspect/plugin-mulaw.xml: * docs/plugins/inspect/plugin-video4linux2.xml: * docs/plugins/inspect/plugin-wavparse.xml: Add documentation for the audioiirfilter and audiofirfilter elements. * tests/check/Makefile.am: * tests/check/elements/audiofirfilter.c: (on_message), (on_rate_changed), (on_handoff), (GST_START_TEST), (audiofirfilter_suite): * tests/check/elements/audioiirfilter.c: (on_message), (on_rate_changed), (on_handoff), (GST_START_TEST), (audioiirfilter_suite): * tests/examples/Makefile.am: * tests/examples/audiofx/Makefile.am: * tests/examples/audiofx/firfilter-example.c: (on_message), (on_rate_changed), (main): * tests/examples/audiofx/iirfilter-example.c: (on_message), (on_rate_changed), (main): Add unit tests and example applications for the two filter elements.
* configure.ac: Require core cvs.Stefan Kost2008-12-161-1/+1
| | | | | | Original commit message from CVS: * configure.ac: Require core cvs.
* configure.ac: Make usage of libv4l optional by a configure parameter.Alexandre Rostovtsev2008-12-071-7/+17
| | | | | | | | Original commit message from CVS: Patch by: Alexandre Rostovtsev <tetromino at gmail dot com> * configure.ac: Make usage of libv4l optional by a configure parameter. Fixes bug #563504.
* configure.ac: Apparently AC_CONFIG_MACRO_DIR breaks when using more than one ↵Sebastian Dröge2008-12-041-3/+0
| | | | | | | | | macro directory, reverting last change. Original commit message from CVS: * configure.ac: Apparently AC_CONFIG_MACRO_DIR breaks when using more than one macro directory, reverting last change.
* configure.ac: Set AC_CONFIG_MACRO_DIR to common/m4 to point autoconf to our ↵Sebastian Dröge2008-12-041-0/+3
| | | | | | | | | M4 macros. Original commit message from CVS: * configure.ac: Set AC_CONFIG_MACRO_DIR to common/m4 to point autoconf to our M4 macros.
* Require gettext 0.17 because older versions don't mix with libtool 2.2. At ↵Sebastian Dröge2008-11-291-1/+1
| | | | | | | | | | | | | build time an older gettext version will s... Original commit message from CVS: Patch by: Cygwin Ports maintainer <yselkowitz at users dot sourceforge dot net> * autogen.sh: * configure.ac: Require gettext 0.17 because older versions don't mix with libtool 2.2. At build time an older gettext version will still work. Fixes bug #556091.
* Optionally use libv4l to access v4l2 devices. Fixes bug #545033.Bastien Nocera2008-11-041-0/+10
| | | | | | | | | | | | | | | | | | | | | | | | | | Original commit message from CVS: Patch by: Bastien Nocera <hadess at hadess dot net>, Hans de Goede <jwrdegoede at fedoraproject dot org> * configure.ac: * sys/v4l2/Makefile.am: * sys/v4l2/gstv4l2src.c: (gst_v4l2src_get_read): * sys/v4l2/v4l2_calls.c: (gst_v4l2_get_capabilities), (gst_v4l2_fill_lists), (gst_v4l2_open), (gst_v4l2_close), (gst_v4l2_get_norm), (gst_v4l2_set_norm), (gst_v4l2_get_frequency), (gst_v4l2_set_frequency), (gst_v4l2_signal_strength), (gst_v4l2_get_attribute), (gst_v4l2_set_attribute), (gst_v4l2_get_input), (gst_v4l2_set_input): * sys/v4l2/v4l2_calls.h: * sys/v4l2/v4l2src_calls.c: (gst_v4l2_buffer_finalize), (gst_v4l2_buffer_new), (gst_v4l2_buffer_pool_finalize), (gst_v4l2_buffer_pool_new), (gst_v4l2_buffer_pool_activate), (gst_v4l2src_fill_format_list), (gst_v4l2src_probe_caps_for_format_and_size), (gst_v4l2src_probe_caps_for_format), (gst_v4l2src_grab_frame), (gst_v4l2src_set_capture), (gst_v4l2src_capture_init), (gst_v4l2src_capture_start), (gst_v4l2src_capture_stop), (gst_v4l2src_get_nearest_size): Optionally use libv4l to access v4l2 devices. Fixes bug #545033.
* configure.ac: Back to development -> 0.10.11.1Jan Schmidt2008-10-261-1/+1
| | | | | | Original commit message from CVS: * configure.ac: Back to development -> 0.10.11.1
* Release 0.10.11Jan Schmidt2008-10-241-1/+1
| | | | | Original commit message from CVS: Release 0.10.11
* configure.ac: Commit 0.10.10.4 pre-releaseJan Schmidt2008-10-241-1/+1
| | | | | | Original commit message from CVS: * configure.ac: Commit 0.10.10.4 pre-release
* configure.ac: 0.10.10.3 pre-releaseJan Schmidt2008-10-161-1/+1
| | | | | | Original commit message from CVS: * configure.ac: 0.10.10.3 pre-release
* configure.ac: Commit 0.10.10.2 pre-release bump that actually went out on ↵Jan Schmidt2008-10-161-1/+1
| | | | | | | | | 2008-10-11 Original commit message from CVS: * configure.ac: Commit 0.10.10.2 pre-release bump that actually went out on 2008-10-11
* configure.ac: Depend on released versions of core and base.Tim-Philipp Müller2008-10-031-2/+2
| | | | | | Original commit message from CVS: * configure.ac:: Depend on released versions of core and base.
* configure.ac: Fix libs for linking directsound.Michael Smith2008-10-011-32/+3
| | | | | | | | | Original commit message from CVS: * configure.ac: Fix libs for linking directsound. * sys/directsound/gstdirectsoundsink.c: Fix buffer sizing to prevent racing the ringbuffer at startup. Add volume property.
* configure.ac: Fix --disable-externalTim-Philipp Müller2008-09-011-10/+14
| | | | | | Original commit message from CVS: * configure.ac: Fix --disable-external
* configure.ac: Update version number to reflect 0.10.10 release from branch.Jan Schmidt2008-08-261-1/+1
| | | | | | | Original commit message from CVS: * configure.ac: Update version number to reflect 0.10.10 release from branch.
* configure.ac: Require -base CVS for wavparse acid chunk parsing.Tim-Philipp Müller2008-08-141-1/+1
| | | | | | Original commit message from CVS: * configure.ac:: Require -base CVS for wavparse acid chunk parsing.
* configure.ac: Remove more cdio stuff (moved to ugly)Thijs Vermeir2008-08-131-8/+0
| | | | | | Original commit message from CVS: * configure.ac: Remove more cdio stuff (moved to ugly)
* Build depend on core CVS for the attachment tag.Sebastian Dröge2008-08-021-1/+1
| | | | | | | | Original commit message from CVS: * configure.ac: * gst/matroska/matroska-ids.c: (gst_matroska_register_tags): * gst/matroska/matroska-ids.h: Build depend on core CVS for the attachment tag.
* Decode the codec private data and following ContentEncoding if necessary.Sebastian Dröge2008-08-021-2/+9
| | | | | | | | | | | | | | | | | | | | | | | Original commit message from CVS: * configure.ac: * gst/matroska/Makefile.am: * gst/matroska/lzo.c: (get_byte), (get_len), (copy), (copy_backptr), (lzo1x_decode), (main): * gst/matroska/lzo.h: * gst/matroska/matroska-demux.c: (gst_matroska_demux_read_track_encoding), (gst_matroska_decompress_data), (gst_matroska_decode_data), (gst_matroska_decode_buffer), (gst_matroska_decode_content_encodings), (gst_matroska_demux_read_track_encodings), (gst_matroska_demux_add_stream), (gst_matroska_demux_parse_blockgroup_or_simpleblock): * gst/matroska/matroska-ids.h: Decode the codec private data and following ContentEncoding if necessary. Support bzip2, lzo and header stripped compression. For lzo use the ffmpeg lzo implementation as liblzo is GPL licensed. Fix zlib decompression.
* configure.ac: Back to development -> 0.10.9.1Jan Schmidt2008-08-011-1/+1
| | | | | | Original commit message from CVS: * configure.ac: Back to development -> 0.10.9.1
* Release 0.10.9Jan Schmidt2008-07-311-1/+1
| | | | | Original commit message from CVS: Release 0.10.9
* configure.ac: 0.10.8.4 pre-releaseJan Schmidt2008-07-281-1/+1
| | | | | | Original commit message from CVS: * configure.ac: 0.10.8.4 pre-release