summaryrefslogtreecommitdiff
path: root/configure
Commit message (Collapse)AuthorAge
* Win32 support for av_file_map()Daniel Verkamp2011-01-05
| | | | Originally committed as revision 26221 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove unnecessary dependency of ffprobe and ffserver on libswscale.Stefano Sabatini2011-01-04
| | | | Originally committed as revision 26213 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Change the AC-3 encoder to use floating-point.Justin Ruggles2011-01-04
| | | | | | | | Fixed-point AC-3 encoder renamed to ac3_fixed. Regression test acodec-ac3 renamed to acodec-ac3_fixed. Regression test lavf-rm changed to use ac3_fixed encoder. Originally committed as revision 26209 to svn://svn.ffmpeg.org/ffmpeg/trunk
* libavfilter does not depend on libswscale, only the scale filter does.Carl Eugen Hoyos2011-01-03
| | | | Originally committed as revision 26203 to svn://svn.ffmpeg.org/ffmpeg/trunk
* "Fix" compilation with --disable-swscale.Carl Eugen Hoyos2011-01-02
| | | | Originally committed as revision 26200 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add copy filter, useful for testing the avfilter_draw_slice() copyStefano Sabatini2010-12-28
| | | | | | code. Originally committed as revision 26112 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Redesign the libopencv wrapper to make it more generic. Accept bothStefano Sabatini2010-12-23
| | | | | | | | | FILTERNAME=ARGS and FILTERNAME:ARGS syntax. The same filter class will be used for managing all the libopencv filtering functions. Originally committed as revision 26079 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add av_file_map() and av_file_unmap() functions.Stefano Sabatini2010-12-22
| | | | Originally committed as revision 26073 to svn://svn.ffmpeg.org/ffmpeg/trunk
* AMR-WB decoder, written as part of Google Summer of Code 2010 by MarceloRonald S. Bultje2010-12-18
| | | | | | | Galvão Póvoa <marspeoplester gmail com>, mentored by Robert Swain <robert dot swain gmail com>. Originally committed as revision 26051 to svn://svn.ffmpeg.org/ffmpeg/trunk
* configure: Avoid warnings if av_always_inline is disabledMartin Storsjö2010-12-16
| | | | | | | | | | | | | | | This macro is disabled if --enable-small or --disable-optimizations are set. Currently, this leads to warnings about functions being defined but not used, for functions in header files. By defining av_always_inline as inline or as av_unused, we avoid these warnings. This doesn't make a normal build with --enable-small any larger, since the compiler probably chooses not to inline these functions even if they're marked as inline. Originally committed as revision 26032 to svn://svn.ffmpeg.org/ffmpeg/trunk
* configure: Allow disabling symbol versioning via --disable-symverMartin Storsjö2010-12-14
| | | | Originally committed as revision 25944 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add a FLAC parser.Michael Chinen2010-12-07
| | | | | | | | | Seek test reference updated because FLAC seeking now works properly. Fixes roundup issue 1150. Patch by Michael Chinen [mchinen at gmail] Originally committed as revision 25914 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Port libmpcodecs hqdn3d filter.Baptiste Coudurier2010-12-04
| | | | | | Patch by Baptiste with some fixes by me. Originally committed as revision 25880 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add missing dependencies for frei0r_src in configure.Stefano Sabatini2010-11-30
| | | | Originally committed as revision 25857 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Silence icc warning about unsupported option -Wno-parenthesesCarl Eugen Hoyos2010-11-04
| | | | Originally committed as revision 25670 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add single stream LATM/LOAS decoderJanne Grunau2010-11-02
| | | | | | | The decoder is just a wrapper around the AAC decoder. based on patch by Paul Kendall { paul <ät> kcbbs gen nz } Originally committed as revision 25642 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Bump required x264 version to X264_BUILD 99Jason Garrett-Glaser2010-10-26
| | | | | | Required after r25567. Originally committed as revision 25576 to svn://svn.ffmpeg.org/ffmpeg/trunk
* rtsp: Untangle the dependencies between the RTSP/SDP demuxers and RTSP muxerMartin Storsjö2010-10-21
| | | | | | | This allows compilation of one of them without requiring the others' dependencies to be present. Originally committed as revision 25535 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add a demuxer for receiving raw rtp:// URLs without an SDP descriptionMartin Storsjö2010-10-19
| | | | | | | The demuxer inspects the payload type of a received RTP packet and handles the cases where the content is fully described by the payload type. Originally committed as revision 25527 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add a SAP demuxerMartin Storsjö2010-10-13
| | | | Originally committed as revision 25463 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Implement cropdetect filter.Stefano Sabatini2010-10-12
| | | | Originally committed as revision 25447 to svn://svn.ffmpeg.org/ffmpeg/trunk
* sapenc: Declare a dependency on rtp_protocol, tooMartin Storsjö2010-10-09
| | | | | | | | | The SAP muxer uses network functions directly, uses the rtp protocol and the udp protocol. The network functions and the udp protocol are both transitively enabled via the rtp protocol, so that's the only dependency that needs to be stated. Originally committed as revision 25423 to svn://svn.ffmpeg.org/ffmpeg/trunk
* sapenc: Mark the muxer as depending on network functionsMartin Storsjö2010-10-08
| | | | | | Hide all code mentioning IPv6 behind HAVE_STRUCT_SOCKADDR_IN6. Originally committed as revision 25415 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add a SAP (Session Announcement Protocol, RFC 2974) muxerMartin Storsjö2010-10-08
| | | | Originally committed as revision 25413 to svn://svn.ffmpeg.org/ffmpeg/trunk
* libmp3lame: don't check unused function in detectionRafaël Carré2010-10-07
| | | | | | | | | | | | | hip_decode_init() isn't used by the wrapper, and can be absent from the library if lame was configured with --disable-decoder (like it is done for windows builds of VLC) Unfortunately this also removes the way to detect a libmp3lame more recent than the buggy 3.98.2 Patch by Rafaël Carré, rafael carre at gmail Originally committed as revision 25391 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add RTP depacketization of the X-QT QuickTime formatMartin Storsjö2010-10-06
| | | | Originally committed as revision 25371 to svn://svn.ffmpeg.org/ffmpeg/trunk
* configure: Set _DARWIN_C_SOURCE while testing for struct ipv6_mreqMartin Storsjö2010-10-06
| | | | | | | | | | | | On OS X, this struct is only available if _DARWIN_C_SOURCE is defined, when we have _POSIX_C_SOURCE defined. This allows the struct to be found, enabling proper IPv6 multicast functionality on OS X. The define is already set within the file that uses the struct. Setting it only for this test in configure avoids having to keep it defined for the whole build. Originally committed as revision 25370 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Check whether compiler supports xmm registers in asm clobber listRamiro Polla2010-10-06
| | | | Originally committed as revision 25362 to svn://svn.ffmpeg.org/ffmpeg/trunk
* configure: Consolidate rtsp/sdp deps to use _selectMartin Storsjö2010-10-05
| | | | | | | This makes e.g. --disable-everything --enable-demuxer=rtsp actually enable the rtsp demuxer and everything else that is needed. Originally committed as revision 25356 to svn://svn.ffmpeg.org/ffmpeg/trunk
* configure: Add the http protocol as an auto-enabled dependency of the rtsp ↵Martin Storsjö2010-10-05
| | | | | | demuxer and muxer Originally committed as revision 25355 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use SLIBSUF instead of .so, as a more generic dynamic library suffix.Víctor Paesa2010-10-03
| | | | Originally committed as revision 25321 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Group togheter filter dependency specifications.Stefano Sabatini2010-09-28
| | | | Originally committed as revision 25245 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix out of tree builds with vf_yadif and mmxMåns Rullgård2010-09-27
| | | | Originally committed as revision 25237 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Port MPlayer blackframe filter.Stefano Sabatini2010-09-26
| | | | | | | | See thread: Subject: [FFmpeg-devel] [PATCH] Port MPlayer blackframe filter. Date: Sun, 26 Sep 2010 01:10:40 +0200 Originally committed as revision 25214 to svn://svn.ffmpeg.org/ffmpeg/trunk
* configure: detect nasm vs yasm and set flags correspondinglyMåns Rullgård2010-09-26
| | | | Originally committed as revision 25213 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Create libavfilter/$arch when building outside source treeMåns Rullgård2010-09-25
| | | | Originally committed as revision 25200 to svn://svn.ffmpeg.org/ffmpeg/trunk
* yadif filter, based on stefanos port of my yadif from mplayer.Michael Niedermayer2010-09-25
| | | | | | Compared to stefanos, 2 frame output works with ffplay. Originally committed as revision 25196 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add frei0r filter.Stefano Sabatini2010-09-24
| | | | | | | | See thread: Subject: [FFmpeg-devel] [POC] frei0r wrapper Date: Tue, 24 Aug 2010 21:37:32 +0200 Originally committed as revision 25165 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Disable ALIGNED_STACK with icc 10 or prior on x86_32Måns Rullgård2010-09-21
| | | | Originally committed as revision 25152 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add HAVE_ALIGNED_STACK config settingMåns Rullgård2010-09-21
| | | | | | | This is set to 1 if the stack is guaranteed to be suitably aligned for the strictest access mode of the machine. Originally committed as revision 25151 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Request 16-byte aligned stack with icc on x86_32Måns Rullgård2010-09-18
| | | | Originally committed as revision 25145 to svn://svn.ffmpeg.org/ffmpeg/trunk
* configure: print minimum lame version number required after revision 25128James Darnley2010-09-17
| | | | | | Patch by James Darnley <james dot darnley at gmail dot com>. Originally committed as revision 25139 to svn://svn.ffmpeg.org/ffmpeg/trunk
* configure: detect Open64 compilerMåns Rullgård2010-09-16
| | | | Originally committed as revision 25135 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Allow float values for libmp3lame quality.James Darnley2010-09-15
| | | | | | Patch by James Darnley, james D darnley A gmail Originally committed as revision 25128 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Update pathscale compiler detectionMåns Rullgård2010-09-14
| | | | Originally committed as revision 25122 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Implement libopencv smooth filter.Stefano Sabatini2010-09-14
| | | | Originally committed as revision 25118 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Create config.asm for use with yasmMåns Rullgård2010-09-03
| | | | Originally committed as revision 25039 to svn://svn.ffmpeg.org/ffmpeg/trunk
* configure: whitespaceMåns Rullgård2010-09-03
| | | | Originally committed as revision 25038 to svn://svn.ffmpeg.org/ffmpeg/trunk
* configure: make print_config() more flexibleMåns Rullgård2010-09-03
| | | | Originally committed as revision 25037 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Detect llvm-gcc and set appropriate flagsMåns Rullgård2010-09-02
| | | | Originally committed as revision 25028 to svn://svn.ffmpeg.org/ffmpeg/trunk