summaryrefslogtreecommitdiff
path: root/configure.ac
Commit message (Collapse)AuthorAgeFilesLines
* Release 1.6.31.6.3Sebastian Dröge2016-01-201-4/+4
|
* Release 1.6.21.6.2Sebastian Dröge2015-12-141-4/+4
|
* Release 1.6.11.6.1Sebastian Dröge2015-10-301-4/+4
|
* dashdemux: fix undefined reference to gst_ntp_clock_newJulien Isorce2015-10-111-0/+1
| | | | | | Found with gst-inspect-1.0 -b in gst-uninstalled env. https://bugzilla.gnome.org/show_bug.cgi?id=756383
* dtls: require openssl >= 1.0.1Aleix Conchillo Flaqué2015-10-051-1/+1
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=755892
* Release 1.6.01.6.0Sebastian Dröge2015-09-251-4/+4
|
* Release 1.5.911.5.91Sebastian Dröge2015-09-181-4/+4
|
* gtk, qt: more specifically define the compile time requirementsMatthew Waters2015-09-101-16/+35
| | | | | | | Otherwise we could include headers/configurations that will never been installed. https://bugzilla.gnome.org/show_bug.cgi?id=754732
* build/qt: indent configure fileMatthew Waters2015-09-101-6/+6
| | | | | | don't mix tabs and spaces https://bugzilla.gnome.org/show_bug.cgi?id=754466
* qmlsink: Ensure that at least one windowing system is availableNirbheek Chauhan2015-08-311-2/+15
| | | | | | Otherwise, we'll just crash at runtime because the gl context is NULL https://bugzilla.gnome.org/show_bug.cgi?id=754108
* curl: Give netinet/ip.h it own configure checkKoop Mast2015-08-221-1/+9
| | | | | | | On FreeBSD netinet/ip.h needs the sys/types.h and netinet/in.h header before it can be tested. https://bugzilla.gnome.org/show_bug.cgi?id=753944
* opencv: Fix OpenCV data path check to work with cross compilationCarlos Rafael Giani2015-08-201-3/+12
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=753651
* configure.ac: fix build when the uvch264 plugin is not selectedArnaud Vrac2015-08-191-1/+0
| | | | | | | | | | Instead of checking for the gstreamer-video-1.0 package is installed, just assume it is since we already check for the -base dependency. With this replace the GST_VIDEO_* variables in makefiles and directly link with libgstvideo. https://bugzilla.gnome.org/show_bug.cgi?id=753820
* configure: check for Qt versionLuis de Bethencourt2015-08-191-1/+1
| | | | | | | | Usage of QSGSimpleTextureNode::setOwnsTexture() was added in commit 6b8cf8419d8ea80081de8150a6b1c3cf763c4d69, this function was added in Qt 5.4.0. Check for this version or later. https://bugzilla.gnome.org/show_bug.cgi?id=753812
* Release 1.5.901.5.90Sebastian Dröge2015-08-191-4/+4
|
* opencv: support alternative path conventionLuis de Bethencourt2015-08-171-0/+3
| | | | | | | | Some distributions store OpenCV files in /usr/share/opencv and some others (and default when building from source) install them in /usr/share/OpenCV. Support both to find cascade files. https://bugzilla.gnome.org/show_bug.cgi?id=753651
* configure: update OpenCV requirements to 2.3.0Luis de Bethencourt2015-08-071-1/+1
| | | | | | | With facedetect ported to C++ the minimum version of OpenCV supported is 2.3.0 https://bugzilla.gnome.org/show_bug.cgi?id=748377
* gl: support cgl, egl and glx within a same buildJulien Isorce2015-07-271-10/+22
| | | | | | | | | | | | | | | On osx, with the same build, gst-launch-1.0 videotestsrc ! glimagesink works with: GST_GL_PLATFORM=egl GST_GL_WINDOW=x11 GST_GL_API=gles2 GST_GL_PLATFORM=egl GST_GL_WINDOW=x11 GST_GL_API=opengl GST_GL_PLATFORM=glx GST_GL_WINDOW=x11 GST_GL_API=opengl GST_GL_PLATFORM=cgl GST_GL_WINDOW=cocoa GST_GL_API=opengl GST_GL_PLATFORM=cgl GST_GL_WINDOW=cocoa GST_GL_API=opengl3 https://bugzilla.gnome.org/show_bug.cgi?id=752743
* configure: require libxml2 >= 2.8 for DASH pluginYoung Han Lee2015-07-221-1/+1
| | | | | | | The DASH plugin uses xmlBufferDetach now in the code that handles ContentProtection elements. https://bugzilla.gnome.org/show_bug.cgi?id=752703
* configure: try harder to find the right Qt5 build toolsTim-Philipp Müller2015-07-101-3/+5
| | | | | | | First check for Qt build tools in the host_bins directory from the Qt5Core pkg-config file. This fixes the situation where both Qt4 and Qt5 are installed but the global moc/uic/etc. are the Qt4 version, which would result in build failures.
* configure/qt: Fix build without Qt5X11ExtrasEdward Hervey2015-07-101-1/+2
|
* qt: don't error out if Qt X11 could not be foundMatthew Waters2015-07-101-1/+1
| | | | | PCK_CHECK_MODULES default error-if-not-found implementation errors so override it with a simple notice that we couldn't find the library.
* new qt5 qml GL video sinkMatthew Waters2015-07-101-0/+26
| | | | | | | | | | | | | | | | | | | | | | | | Very much in the same spirit as the Gtk GL sink Two things are provided 1. A QQuickItem subclass that renders out RGBA filled GstGLMemory buffers that is instantiated from qml. 2. A sink element that will push buffers into (1) To use 1. Declare the GstGLVideoItem in qml with an appropriate objectName property set. 2. Get the aforementioned GstGLVideoItem from qml using something like QQmlApplicationEngine engine; engine.load(QUrl(QStringLiteral("qrc:/main.qml"))); QObject *rootObject = engine.rootObjects().first(); QQuickItem *videoItem = rootObject->findChild<QQuickItem *> ("videoItem"); 3. Set the videoItem on the sink https://bugzilla.gnome.org/show_bug.cgi?id=752185
* build: Fix broken BlueZ configure checkArun Raghavan2015-07-031-12/+7
| | | | | | The previous commit left an extra set of brackets, and missed removing the explicit dbus check (which is no longer needed since we're using gdbus).
* build: remove support for bluez4Nick Stoughton2015-07-031-5/+1
|
* bluez: refactor to use glib and add connection state trackingNick Stoughton2015-07-031-2/+7
|
* Back to developmentSebastian Dröge2015-06-251-3/+3
|
* Release 1.5.21.5.2Sebastian Dröge2015-06-241-4/+4
|
* examples: add small jpeg codecparser testTim-Philipp Müller2015-06-211-0/+1
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=673925
* Revert "gl: add GstGLContextGPUProcess backend"Julien Isorce2015-06-191-1/+0
| | | | This reverts commit b377112ee38912d316e77b4e2102041389dc0051.
* style: Remove white spaces at the end of lineNicolas Dufresne2015-06-181-1/+1
|
* 3dvideo: Add simple gtk example stereoscopic video playerJan Schmidt2015-06-191-0/+1
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=611157
* configure.ac: Remove reference to cvsNicolas Dufresne2015-06-121-1/+1
|
* Implement gtk sinksMatthew Waters2015-06-111-0/+25
| | | | | two sinks are provided. gtksink which is a cairo/software based renderer and gtkglsink which utilises the GL support in gtk and gstreamer.
* Back to developmentSebastian Dröge2015-06-071-3/+3
|
* Release 1.5.11.5.1Sebastian Dröge2015-06-071-3/+3
|
* configure: lower curl requirement to 7.35.0Tim-Philipp Müller2015-06-021-1/+1
| | | | | Build and unit tests were tested against 7.35 too now, which is the version in Ubuntu 14.04.
* gl: add GstGLContextGPUProcess backendJulien Isorce2015-05-271-0/+1
| | | | | It builds its GL vtable from a proc address provided by the application.
* curlsink: handle socket callback for active FTP connections as wellPatricia Muscalu2015-05-251-1/+1
| | | | | | | | | Since version 7.28.0, libcurl allows application to set socket options for active FTP connections. Bump libcurl requirement to version tested. https://bugzilla.gnome.org/show_bug.cgi?id=749815
* fix faad2 version checkWim Taymans2015-05-131-2/+2
| | | | | | | | | | | | | On fedora 22, the output of cpp inserts extra debug comments, which makes our regexp for the faad2 version check fail. This in turn causes it to compile with the wrong arguments passed which then causes stack corruption and crashes. Fix this by only checking for the version (which should be by itself on a single line). This is potentially less safe, it might be possible that a similar string would appear in a later version in the header file. Fixes https://bugzilla.gnome.org/show_bug.cgi?id=748571
* decklink: Disable decklink plugin on AndroidSebastian Dröge2015-05-051-1/+4
|
* configure: bump automake requirement to 1.14 and autoconf to 2.69Tim-Philipp Müller2015-04-231-2/+2
| | | | | | | This is only required for builds from git, people can still build tarballs if they only have older autotools. https://bugzilla.gnome.org//show_bug.cgi?id=747624
* opencv: Change configure test to check for OpenCV2 headersРуслан Ижбулатов2015-04-171-5/+16
| | | | | | | | * Checks for opencv2 headers only, not for legacy opencv1 headers * Checks for every opencv2 header that the implementation needs, not just highgui_c.h https://bugzilla.gnome.org/show_bug.cgi?id=725163
* configure: Depend on openh264 >= 1.3.0Edward Hervey2015-04-071-1/+1
| | | | Required for the version check header, as agreed upon on IRC
* directsoundsrc: Implement volume and muteVictor Toso2015-03-311-2/+3
| | | | | | | Using the MixerAPI as IDirectSoundCaptureBuffer doesn't implement volume control. https://bugzilla.gnome.org/show_bug.cgi?id=744383
* dtls: Add new DTLS pluginSebastian Dröge2015-03-161-0/+14
| | | | | | | This is a copy of the Ericsson DTLS plugin from https://github.com/EricssonResearch/openwebrtc-gst-plugins/tree/master/ext/erdtls/src https://bugzilla.gnome.org/show_bug.cgi?id=744582
* configure: fix buildTim-Philipp Müller2015-03-141-1/+0
| | | | Was supposed to be squashed into earlier commit.
* Remove unported and useless osxvideosrc elementTim-Philipp Müller2015-03-141-17/+1
| | | | There are other elements for this now.
* gl: fix a couple of typos in configure.acMatthew Waters2015-03-141-2/+2
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=744020
* applemedia: new AVSampleBufferLayerSinkMatthew Waters2015-02-241-0/+1
| | | | | Renders buffers using the CALayer subclass AVSampleBufferDisplayLayer which can be placed inside a Core Animation render tree.