summaryrefslogtreecommitdiff
path: root/libavfilter/Makefile
Commit message (Collapse)AuthorAge
* Merge remote-tracking branch 'qatar/master'Michael Niedermayer2011-12-23
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * qatar/master: build: fix standalone compilation of OMA muxer build: fix standalone compilation of Microsoft XMV demuxer build: fix standalone compilation of Core Audio Format demuxer kvmc: fix invalid reads 4xm: Add a check in decode_i_frame to prevent buffer overreads adpcm: fix IMA SMJPEG decoding options: set minimum for "threads" to zero bsd: use number of logical CPUs as automatic thread count windows: use number of CPUs as automatic thread count linux: use number of CPUs as automatic thread count pthreads: reset active_thread_type when slice thread_init returrns early v410dec: include correct headers Drop ALT_ prefix from BITSTREAM_READER_LE name. lavfi: always build vsrc_buffer. ra144enc: zero the reflection coeffs if the filter is unstable sws: readd PAL8 to isPacked() mov: Don't stick the QuickTime field ordering atom in extradata. truespeech: fix invalid reads in truespeech_apply_twopoint_filter() Conflicts: configure libavcodec/4xm.c libavcodec/avcodec.h libavfilter/Makefile libavfilter/allfilters.c libavformat/Makefile libswscale/swscale_internal.h Merged-by: Michael Niedermayer <michaelni@gmx.at>
| * lavfi: always build vsrc_buffer.Anton Khirnov2011-12-22
| | | | | | | | It's a part of public API.
* | Merge remote-tracking branch 'qatar/master'Michael Niedermayer2011-12-13
|\| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * qatar/master: ulti: Fix invalid reads lavf: dealloc private options in av_write_trailer yadif: support 10bit YUV vc1: mark with ER_MB_ERROR bits overconsumption lavc: introduce ER_MB_END and ER_MB_ERROR error_resilience: use the ER_ namespace build: move inclusion of subdir.mak to main subdir loop rv34: NEON optimised 4x4 dequant rv34: move 4x4 dequant to RV34DSPContext aacdec: Use intfloat.h rather than local punning union. Conflicts: libavcodec/h264.c libavcodec/vc1dec.c libavfilter/vf_yadif.c libavformat/Makefile Merged-by: Michael Niedermayer <michaelni@gmx.at>
| * build: move inclusion of subdir.mak to main subdir loopMans Rullgard2011-12-13
| | | | | | | | Signed-off-by: Mans Rullgard <mans@mansr.com>
| * lavfi: install libavfilter/vsrc_buffer.hAndrey Utkin2011-12-11
| | | | | | | | | | | | It declares API necessary for filtering apps. Signed-off-by: Anton Khirnov <anton@khirnov.net>
| * lavfi: add rgbtestsrc source, ported from MPlayer libmpcodecsStefano Sabatini2011-10-19
| | | | | | | | | | | | | | | | | | | | | | | | The licence was changed from GPL to LGPL with explicit approval from the original author. See thread: Subject: [FFmpeg-devel] [PATCH] lavfi: add rgbtestsrc source, ported from MPlayer libmpcodecs Date: Mon, 11 Jul 2011 16:32:41 +0200 Signed-off-by: Anton Khirnov <anton@khirnov.net>
| * lavfi: add testsrc sourceStefano Sabatini2011-10-19
| | | | | | | | Signed-off-by: Anton Khirnov <anton@khirnov.net>
| * lavfi: port libmpcodecs delogo filterStefano Sabatini2011-10-17
| | | | | | | | | | | | The ported filter supports named option parsing and more YUV formats. Signed-off-by: Anton Khirnov <anton@khirnov.net>
| * lavfi: port boxblur filter from libmpcodecsStefano Sabatini2011-10-17
| | | | | | | | | | | | | | | | | | | | With the following additions: * support to gray format * support to yuva420p format * parametric luma/chroma/alpha radius * consistency check on the radius values, avoid crashes with invalid values Signed-off-by: Anton Khirnov <anton@khirnov.net>
| * lavfi: add negate filterStefano Sabatini2011-10-17
| | | | | | | | | | | | This filter is a simple wrapper around the LUT filter. Signed-off-by: Anton Khirnov <anton@khirnov.net>
| * lavfi: add LUT (LookUp Table) generic filtersStefano Sabatini2011-10-17
| | | | | | | | Signed-off-by: Anton Khirnov <anton@khirnov.net>
| * lavfi: add select filterStefano Sabatini2011-09-17
| | | | | | | | Signed-off-by: Anton Khirnov <anton@khirnov.net>
| * lavfi: add split filter from soc.Bobby Bingham2011-09-12
| | | | | | | | | | | | | | Some fixes by Stefano. For detailed authorship see SOC repo Signed-off-by: Anton Khirnov <anton@khirnov.net>
| * lavfi: add showinfo filterStefano Sabatini2011-09-12
| | | | | | | | Signed-off-by: Anton Khirnov <anton@khirnov.net>
* | lavfi: add cellauto sourceStefano Sabatini2011-12-11
| |
* | lavfi: add life sourceStefano Sabatini2011-12-04
| |
* | lavfi: add libass based subtitles rendererStefano Sabatini2011-11-26
| |
* | lavfi: reimplement MPlayer's af_pan filter for libavfilter.Clément Bœsch2011-11-18
| | | | | | | | | | Original code by Clément Bœsch. Parameters parsing and misc enhancements by Nicolas George.
* | avfilter: add mandelbrot fraktal sourceMichael Niedermayer2011-11-11
| | | | | | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | lavfi: add earwax audio filter, ported from SoxMina Nagy Zaki2011-11-05
| | | | | | | | Signed-off-by: Stefano Sabatini <stefasab@gmail.com>
* | lavfi: add volume filterStefano Sabatini2011-11-05
| |
* | lavfi: rewrite nullsrc using the code in vsrc_testsrc.cStefano Sabatini2011-10-24
| | | | | | | | | | | | | | | | | | Factorize code, extend the functionality of the filter, and make it return empty buffers. This is useful for filters which ignore the input frames content. This is also changing the syntax of the nullsrc source, and dropping the framerate expression evaluation, which does not look particularly useful.
* | lavfi: add audio eval signal sourceStefano Sabatini2011-10-18
| |
* | lavfi: remove align tabs in Makefile.Clément Bœsch2011-10-04
| |
* | libavfilter: add deshake filterdanielgtaylor2011-10-04
| | | | | | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | libavfilter/libmpcodecs: add vf_stereo3d supportMichael Niedermayer2011-09-20
| | | | | | | | | | | | | | | | | | (code from mplayer see their svn for detailed authorship) parameters must be integers as we do not have mplayers parser also the stuff passed to it through non constant globals is not supported this should be fixed in mplayer first. Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | lavfi: add audio convert filterStefano Sabatini2011-09-16
| | | | | | | | | | | | | | | | | | | | | | Add aconvert filter to perform sample format, channel layout, and packing format conversion. The aconvert code depends on audio conversion code in libavcodec, so this requires a dependency on libavcodec. Based on previous work by S.N. Hemanth Meenakshisundaram and Mina Nagy Zaki, performed for the GSoC 2010 and 2011.
* | lavfi: add avfilter_all_channel_layouts public symbolStefano Sabatini2011-09-16
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This list is mainly useful to be directly used as a parameter by the audio sink buffer, when there is no need to force a specific channel layout. The list of formats is generated programmatically, and avoids channel layouts not supported by libavfilter (with more than 8 channels). We preferred to avoid compile-time generation in order to avoid some unnecessary complexity (build hacks, generating code maintainance etc.). A more compact way to express this list through the use of macros should be possible when libavfilter will support more than 8 channels, as there will be no need to filter out channel layouts with more than 8 channels. See thread: Subject: [FFmpeg-devel] [PATCH] lavfi: add ff_all_channel_layouts internal symbol Date: Sat, 20 Aug 2011 15:33:16 +0200
* | lavfi: rename vsink_buffer.c to sink_buffer.c, and vsink_buffer.h to ↵Stefano Sabatini2011-09-06
| | | | | | | | | | | | | | | | buffersink.h This is done in order to clarify the non-video-specific nature of the buffersink code, as the result of the video/audio API unification of the previous commit, and for improving overall consistency.
* | lavfi: unify asink_buffer and vsink_buffer APIStefano Sabatini2011-09-06
| | | | | | | | | | | | | | | | | | The new API is more generic (no distinction between audio/video for pulling frames), and avoids code duplication. A backward compatibility layer is kept for avoiding tools ABI breaks (only for the video binary interface, audio interface was never used in the tools).
* | lavfi: add amovie source - audio movie sourceStefano Sabatini2011-08-27
| |
* | lavfi: rename vsrc_movie.c to src_movie.cStefano Sabatini2011-08-23
| | | | | | | | | | The file is going to contain the amovie source, so give it a less specific name.
* | lavfi: add asrc_abuffer - audio buffer sourceMina Nagy Zaki2011-08-21
| | | | | | | | | | | | Originally based on code by Stefano Sabatini and S. N. Hemanth. Signed-off-by: Stefano Sabatini <stefano.sabatini-lala@poste.it>
* | lavfi: add ashowinfo filterStefano Sabatini2011-08-20
| | | | | | | | Useful for debugging.
* | lavfi: add aresample filterMina Nagy Zaki2011-08-17
| | | | | | | | | | | | Based on a patch by Stefano. Signed-off-by: Stefano Sabatini <stefano.sabatini-lala@poste.it>
* | lavfi: remove delogo mp wrapperStefano Sabatini2011-08-14
| | | | | | | | | | The delogo filter has been natively integrated into libavfilter, simplify.
* | lavfi: port libmpcodecs delogo filterStefano Sabatini2011-08-14
| | | | | | | | The ported filter supports named option parsing and more YUV formats.
* | lavfi: add aformat filterMina Nagy Zaki2011-08-14
| | | | | | | | Signed-off-by: Stefano Sabatini <stefano.sabatini-lala@poste.it>
* | lavfi: remove mp test wrapperStefano Sabatini2011-08-11
| | | | | | | | | | The source was natively integrated into libavfilter, with the name mptestsrc.
* | lavfi: port mp test sourceStefano Sabatini2011-08-11
| |
* | lavfi: remove gradfun mp wrapperStefano Sabatini2011-08-07
| | | | | | | | | | | | | | | | | | The gradfun filter was already integrated natively in libavfilter. Both filters issue the same output, and have a comparable performance. See thread: Subject: [FFmpeg-devel] [PATCH] lavfi: remove gradfun mp wrapper Date: Fri, 5 Aug 2011 00:19:04 +0200
* | lavfi: add asink_abuffer - audio buffer sinkMina Nagy Zaki2011-08-06
| | | | | | | | Signed-off-by: Stefano Sabatini <stefano.sabatini-lala@poste.it>
* | vf_mp: remove blackframe filter wrapperStefano Sabatini2011-07-23
| | | | | | | | blackframe is integrated as a native filter.
* | vf_mp: remove cropdetect wrapperStefano Sabatini2011-07-21
| | | | | | | | The cropdetect filter is natively integrated into libavfilter.
* | vf_mp: remove rgbtest wrapperStefano Sabatini2011-07-15
| | | | | | | | | | The filter was integrated natively into libavfilter as a source with name rgbtestsrc.
* | lavfi: add rgbtestsrc source, ported from MPlayer libmpcodecsStefano Sabatini2011-07-15
| | | | | | | | | | | | | | | | | | | | The licence was changed from GPL to LGPL with explicit approval from the original author. See thread: Subject: [FFmpeg-devel] [PATCH] lavfi: add rgbtestsrc source, ported from MPlayer libmpcodecs Date: Mon, 11 Jul 2011 16:32:41 +0200
* | vf_mp: remove boxblur wrapperStefano Sabatini2011-07-15
| | | | | | | | It is natively included in libavfilter.
* | lavfi: port boxblur filter from libmpcodecsStefano Sabatini2011-07-14
| | | | | | | | | | | | | | | | With the following additions: * support to gray format * support to yuva420p format * parametric luma/chroma/alpha radius * consistency check on the radius values, avoid crashes with invalid values
* | Merge commit '142e76f1055de5dde44696e71a5f63f2cb11dedf'Michael Niedermayer2011-07-11
|\| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * commit '142e76f1055de5dde44696e71a5f63f2cb11dedf': swscale: fix crash with dithering due incorrect offset calculation. matroskadec: fix stupid typo (!= -> ==) build: remove duplicates from order-only directory prerequisite list build: rework rules for things in the tools dir configure: fix --cpu=host with gcc 4.6 ARM: use const macro to define constant data in asm bitdepth: simplify FUNC/FUNCC macros dsputil: remove ff_emulated_edge_mc macro used in one place 9/10-bit: simplify clipping macros matroskadec: reindent matroskadec: defer parsing of cues element until we seek. lavc: add support for codec-specific defaults. lavc: make avcodec_alloc_context3 officially public. lavc: remove a half-working attempt at different defaults for audio/video codecs. ac3dec: add a drc_scale private option lavf: add avformat_find_stream_info() lavc: introduce avcodec_open2() as a replacement for avcodec_open(). Conflicts: Makefile libavcodec/utils.c libavformat/avformat.h libswscale/swscale_internal.h Merged-by: Michael Niedermayer <michaelni@gmx.at>
| * build: rework rules for things in the tools dirMans Rullgard2011-07-10
| | | | | | | | | | | | | | | | Declaring tools associated with each library in their respective makefiles allows these tools to easily depend on the correct prerequisites and link against the libs they need. Signed-off-by: Mans Rullgard <mans@mansr.com>