summaryrefslogtreecommitdiffstats
path: root/configure.ac
Commit message (Collapse)AuthorAgeFilesLines
* pulsesink: add 24bit sample formatsWim Taymans2009-07-141-0/+4
| | | | Add check for pulseaudio 0.9.15 and enable 24bits samples in that case.
* v4l2src: add a simple test case for device probingFilippo Argiolas2009-07-131-0/+1
|
* v4l2src: optional support for device probing with gudevFilippo Argiolas2009-07-131-0/+23
| | | | | | Enumerate v4l2 devices using gudev if available. Fixes bug #583640.
* configure: bump core/base requirements to gitTim-Philipp Müller2009-06-161-2/+2
| | | | | Need git core for basesink bufferlist additions; -base requirement bumped gratuitously.
* autotools: move the -Wno-portability from autogen.sh to configure.acTim-Philipp Müller2009-05-221-1/+1
| | | | If we're lucky it'll get used on automatic rebuilds as well that way.
* m4: fix 'suspicious cache id' warningsTim-Philipp Müller2009-05-221-0/+3
| | | | | | | and update common to pull in a similar fix. Also check in configure whether the compiler supports do while macros (GLib wants this defined and it is needed to avoid warnings with some c++ compilers apparently).
* souphttpsrc: Bump-up libsoup-2.24 dep to >= 2.26Zeeshan Ali (Khattak)2009-05-221-1/+1
| | | | | The helper function soup_message_headers_get_content_type that we now use was added in 2.26.
* Back to hacking -> 0.10.15.1Jan Schmidt2009-05-211-1/+1
|
* Release 0.10.15Jan Schmidt2009-05-201-1/+1
|
* 0.10.14.3 pre-releaseJan Schmidt2009-05-161-1/+1
|
* Moved 'directdraw' from -good to -badJan Schmidt2009-05-161-43/+0
|
* Moved 'y4menc' from -bad to -goodJan Schmidt2009-05-161-0/+2
|
* 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