summaryrefslogtreecommitdiff
path: root/libavdevice/Makefile
Commit message (Collapse)AuthorAge
* build: miscellaneous cosmeticsDiego Biurrun2016-04-07
| | | | | | Restore alphabetical order in lists, break overly long lines, do some prettyprinting, add some explanatory section comments, group parts together that belong together logically.
* timefilter-test: Only compile timefilter-test if JACK is enabledDiego Biurrun2016-03-23
|
* avfoundation: Simple captureAlexandre Lision2015-11-26
| | | | | | | Originally based on the capture written by Thilo Borgmann <thilo.borgmann@mail.de>. Signed-off-by: Luca Barbato <lu_zero@gentoo.org>
* avdevice: Apply a more consistent file naming schemeDiego Biurrun2015-04-09
|
* lavd: fix building x11grab after a6674d2Anton Khirnov2014-10-28
|
* xcbgrab: XCB-based screen captureLuca Barbato2014-10-26
| | | | Matches the x11grab screen capture by features.
* oss_audio: Split muxer and demuxerNidhi Makhijani2014-07-18
| | | | Signed-off-by: Diego Biurrun <diego@biurrun.de>
* build: handle library dependencies in configureJanne Grunau2014-05-13
| | | | | Instead of setting FFLIBS in each library Makefile configure exports FFLIBS-$library in config.mak.
* configure: Prefix libc-related variables with "libc_"Diego Biurrun2013-12-09
| | | | Simplifies host/target libc detection splitting.
* libavutil: Make avpriv_open a library-internal function on msvcrtMartin Storsjö2013-08-10
| | | | | | | | | | | | | | | Add one copy of the function into each of the libraries, similarly to what we do for log2_tab. When using static libs, only one copy of the file_open.o object file gets included, while when using shared libraries, each of them get a copy of its own. This fixes DLL builds with a statically linked C runtime, where each DLL effectively has got its own instance of the C runtime, where file descriptors can't be shared across runtimes. On systems not using msvcrt, the function is not duplicated. Signed-off-by: Martin Storsjö <martin@martin.st>
* x11grab: cosmetics: consistent naming for x11grab-related thingsDiego Biurrun2012-07-28
|
* Create version.h headers for libraries that lack themDiego Biurrun2012-07-04
|
* build: cosmetics: Split HEADERS/OBJS/PROGS lists into one entry per line.Diego Biurrun2012-05-07
|
* lavd: remove deprecated v4l grab device.Anton Khirnov2012-01-24
|
* build: move inclusion of subdir.mak to main subdir loopMans Rullgard2011-12-13
| | | | Signed-off-by: Mans Rullgard <mans@mansr.com>
* pulse: introduce pulseaudio inputLuca Barbato2011-10-26
| | | | | | | It currently use the simple api and is using the latency information provided only to offset the stream start. Signed-off-by: Luca Barbato <lu_zero@gentoo.org>
* Move timefilter code from lavf to lavd.Anton Khirnov2011-10-21
| | | | | | It's only used in the JACK device. Fixes linking shared lavd with JACK enabled.
* lavd: add libcdio-paranoia input device for audio CD grabbingAnton Khirnov2011-09-17
|
* build: include sub-makefiles using full path instead of symlinksMans Rullgard2011-06-28
| | | | Signed-off-by: Mans Rullgard <mans@mansr.com>
* build: Remove redundant config.mak includes from subdirectory Makefiles.Diego Biurrun2011-06-25
| | | | | Calling Make from subdirectories is not supported and config.mak has multiple inclusion guards anyway, so the top-level include is enough.
* framebuffer device demuxerStefano Sabatini2011-03-28
| | | | Signed-off-by: Anton Khirnov <anton@khirnov.net>
* sndio support for playback and recordBrad2011-03-27
| | | | Signed-off-by: Anton Khirnov <anton@khirnov.net>
* Merge libavcore into libavutilReinhard Tartler2011-02-15
| | | | | | | | | | | | It is pretty hopeless that other considerable projects will adopt libavutil alone in other projects. Projects that need small footprint are better off with more specialized libraries such as gnulib or rather just copy the necessary parts that they need. With this in mind, nobody is helped by having libavutil and libavcore split. In order to ease maintenance inside and around FFmpeg and to reduce confusion where to put common code, avcore's functionality is merged (back) to avutil. Signed-off-by: Reinhard Tartler <siretart@tauware.de>
* Remove use of the deprecated function avcodec_check_dimensions(), useStefano Sabatini2010-08-06
| | | | | | av_check_image_size() instead. Originally committed as revision 24711 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove broken BeOS audio interface.Diego Biurrun2010-06-10
| | | | Originally committed as revision 23568 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Split avdevice.c off from alldevices.c.Diego Biurrun2009-11-18
| | | | | | alldevices.c is not a good place for avdevice_version(). Originally committed as revision 20546 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: Break overly long lines.Diego Biurrun2009-10-18
| | | | Originally committed as revision 20276 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Skip headers requiring external libs not present in checkheadersMåns Rullgård2009-08-23
| | | | Originally committed as revision 19685 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make the configure script select the input/output devices usingStefano Sabatini2009-06-29
| | | | | | | --enable-indev, --enable-outdev rather than --enable-demuxer, --enable-muxer as before, same for disabling them. Originally committed as revision 19293 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Implement JACK input device.Olivier Guilyardi2009-04-02
| | | | | | | Patch by Olivier Guilyardi list samalyse com. See the thread: "[FFmpeg-devel] [PATCH] libavdevice: JACK demuxer". Originally committed as revision 18322 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add ALSA support in libavdevice.Nicolas George2009-01-26
| | | | | | | | Patch by Nicolas George: name surname normalesup org Original thread: [FFmpeg-devel] [PATCH] ALSA for libavdevice Date: 12/09/2008 07:17 PM Originally committed as revision 16800 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Rename audio.c to oss_audio.c in libavdevice.Benoit Fouet2009-01-21
| | | | Originally committed as revision 16707 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use OBJS variable for all object filesMåns Rullgård2008-10-25
| | | | | | | There is no longer any need to differentiate the object files by source type. Originally committed as revision 15708 to svn://svn.ffmpeg.org/ffmpeg/trunk
* prettyprinting cosmeticsDiego Biurrun2008-05-08
| | | | Originally committed as revision 13077 to svn://svn.ffmpeg.org/ffmpeg/trunk
* non-recursive makefilesMåns Rullgård2008-04-07
| | | | Originally committed as revision 12760 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix building with C++ objects, variable names were inconsistent.François Revol2008-03-27
| | | | Originally committed as revision 12608 to svn://svn.ffmpeg.org/ffmpeg/trunk
* VFW capture supportRamiro Polla2008-03-08
| | | | Originally committed as revision 12384 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: Consistently move NAME and FFLIBS to the top of each Makefile.Diego Biurrun2008-03-08
| | | | Originally committed as revision 12364 to svn://svn.ffmpeg.org/ffmpeg/trunk
* simplify library version handlingMåns Rullgård2008-03-07
| | | | Originally committed as revision 12362 to svn://svn.ffmpeg.org/ffmpeg/trunk
* consolidate CFLAGS, LDFLAGS, EXTRALIBS assignmentMåns Rullgård2008-03-06
| | | | Originally committed as revision 12354 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Link to libraries in dependency order.Víctor Paesa2008-01-12
| | | | | | Based on a patch by Gonzalo Garramuño, ggarra advancedsl com ar Originally committed as revision 11515 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Link libavdevice against libavutil, libavcodec, and libavformatLuca Abeni2007-11-23
| | | | | | (fix compilation for non-ELF targets). Originally committed as revision 11085 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Introduce libavdeviceLuca Abeni2007-11-22
Originally committed as revision 11077 to svn://svn.ffmpeg.org/ffmpeg/trunk