summaryrefslogtreecommitdiff
path: root/libavfilter
Commit message (Collapse)AuthorAge
* Replace references to "que" with the appropriate word.Clément Bœsch2013-01-03
| | | | | | "que" sounds like a slang word to me. This commit renames a few variables, fix the comments and the logging messages (sometimes along with small other typo fixes).
* lavfi/avfiltergraph: check pick_format return code.Nicolas George2013-01-02
|
* lavfi/lut: use ff_fill_rgba_map()Paul B Mahol2013-01-01
| | | | Signed-off-by: Paul B Mahol <onemda@gmail.com>
* lavfi: merge all filtering code into ff_filter_frame.Nicolas George2013-01-01
|
* lavfi/avcodec: fix typoPaul B Mahol2013-01-01
| | | | Signed-off-by: Paul B Mahol <onemda@gmail.com>
* lavfi: add avfilter_get_audio_buffer_ref_from_arrays_channels.Nicolas George2013-01-01
| | | | | It is the same as avfilter_get_audio_buffer_ref_from_arrays except it has a "channels" and the channel layout can be 0.
* lavfi/avfiltergraph: print query_formats errors.Nicolas George2012-12-31
|
* Merge remote-tracking branch 'qatar/master'Michael Niedermayer2012-12-31
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | * qatar/master: configure: suppress -fPIC in msvc builds Drop unnecessary 'l' length modifier when printfing double values. truemotion2: Sanitize tm2_read_header() Conflicts: libavcodec/truemotion2.c libavfilter/src_movie.c libavutil/opt.c Merged-by: Michael Niedermayer <michaelni@gmx.at>
| * Drop unnecessary 'l' length modifier when printfing double values.Diego Biurrun2012-12-31
| | | | | | | | | | %f denotes a double argument and 'l' does nothing in this case according to the C spec.
* | lavfi/Makefile: add missing dependencies to FFLIBS.Clément Bœsch2012-12-31
| |
* | lavfi/Makefile: make FFLIBS list consistent.Clément Bœsch2012-12-31
| |
* | lavfi/sink_buffer: switch to filter_frame.Nicolas George2012-12-30
| |
* | lavfi/video: ensure that filter_frame is called.Nicolas George2012-12-30
| | | | | | | | | | | | This is a temporary workaround until all filters have been upgraded to filter_frame and the framework can forget completely about start_frame/draw_slice/end_frame.
* | vf_tinterlace: dont mix declarations and expressionsMichael Niedermayer2012-12-30
| | | | | | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | lavfi: remove some draw_slice related code that has become unneededMichael Niedermayer2012-12-30
| | | | | | | | | | Reviewed-by: Nicolas George <nicolas.george@normalesup.org> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | lavfi/tinterlace: add low-pass-filter for top/bottom interleave modesMark Himsley2012-12-30
| | | | | | | | Signed-off-by: Stefano Sabatini <stefasab@gmail.com>
* | vf_deshake: fix strict aliassing errorsMichael Niedermayer2012-12-29
| | | | | | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | avf_concat: init pointers to NULL for saftey and to avoid warning of ↵Michael Niedermayer2012-12-29
| | | | | | | | | | | | | | uninitialized use. Reviewed-by: Nicolas George <nicolas.george@normalesup.org> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | lavfi: replace REGISTER_BUILTIN_FILTER() by REGISTER_FILTER_UNCONDITIONAL()Michael Niedermayer2012-12-29
| | | | | | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | Merge remote-tracking branch 'qatar/master'Michael Niedermayer2012-12-29
|\| | | | | | | | | | | | | | | | | | | | | | | | | * qatar/master: cosmetics: Prettyprint codec/format/filter registration files Conflicts: libavcodec/allcodecs.c libavdevice/alldevices.c libavfilter/allfilters.c libavformat/allformats.c Merged-by: Michael Niedermayer <michaelni@gmx.at>
| * cosmetics: Prettyprint codec/format/filter registration filesDiego Biurrun2012-12-28
| |
* | Merge commit '69583bd3b1eba471366141c945030c163e073e02'Michael Niedermayer2012-12-29
|\| | | | | | | | | | | | | | | | | | | | | | | | | * commit '69583bd3b1eba471366141c945030c163e073e02': avfilter: Refactor unconditional filter registration build: Add rtpenc_chain extra config option configure: Add --disable-all command line option Conflicts: libavfilter/allfilters.c libavformat/Makefile Merged-by: Michael Niedermayer <michaelni@gmx.at>
| * avfilter: Refactor unconditional filter registrationDiego Biurrun2012-12-28
| |
* | vf_divtc: dont mix av_strdup and freeMichael Niedermayer2012-12-28
| | | | | | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | vf_detc: dont mix av_strdup & freeMichael Niedermayer2012-12-28
| | | | | | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | vf_mp: fix 'discards const qualifier from pointer target type'Michael Niedermayer2012-12-28
| | | | | | | | | | | | | | args are not supposed to be changed by filters even if the argument is not marked as const. Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | lavfi/tile: small align cosmetics.Clément Bœsch2012-12-26
| |
* | lavfi/tile: remove usage of link->{cur,out}_buf.Clément Bœsch2012-12-26
| |
* | lavfi/scale: remove usage of link->cur_buf.Clément Bœsch2012-12-26
| |
* | lavfi/deshake: remove usage of link->cur_buf.Clément Bœsch2012-12-26
| |
* | lavfi/decimate: remove usage of link->cur_buf.Clément Bœsch2012-12-26
| |
* | lavfi/video: remove unused ff_inplace_start_frame().Clément Bœsch2012-12-26
| |
* | build: mp filter does not depend on postproc anymorePaul B Mahol2012-12-26
| | | | | | | | | | | | This fixes testprogs build target if libpostproc is disabled. Signed-off-by: Paul B Mahol <onemda@gmail.com>
* | vf_idet: fix type of statsMichael Niedermayer2012-12-26
| | | | | | | | | | Reviewed-by: Stefano Sabatini <stefasab@gmail.com> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | lavfi/idet: remove unused assert include.Clément Bœsch2012-12-26
| |
* | lavfi/idet: remove unecessary context assignment.Clément Bœsch2012-12-26
| |
* | lavfi/idet: support named parameters.Clément Bœsch2012-12-26
| | | | | | | | | | The parameters are currently not documented in doc/filters.texi, but now they at least appear in the automatic help.
* | lavfi/idet: remove unecessary poll_frame callback.Clément Bœsch2012-12-26
| |
* | lavfi/aresample: fix styleStefano Sabatini2012-12-26
| | | | | | | | Improve overall consistency/improve readability.
* | vf_pp: add postproc to the library dependencys for avfilter when enabled.Hendrik Leppkes2012-12-25
| | | | | | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | avfiltergraph: put variables used in #if 0 code themselfs under #if 0Michael Niedermayer2012-12-24
| | | | | | | | | | | | Fixes unused variable warnings Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | Merge commit '3193b13aa1e271f6d2dd68de67d448c08aef3c00'Michael Niedermayer2012-12-24
|\| | | | | | | | | | | | | | | | | | | | | | | | | | | * commit '3193b13aa1e271f6d2dd68de67d448c08aef3c00': hlsenc: Allocate enough space for the pattern string lavc: Correct the description of pkt_dts avfilter: Compile FIFO filters unconditionally Conflicts: libavcodec/avcodec.h libavfilter/Makefile libavfilter/allfilters.c Merged-by: Michael Niedermayer <michaelni@gmx.at>
| * avfilter: Compile FIFO filters unconditionallyDiego Biurrun2012-12-23
| | | | | | | | Building libavfilter without that functionality makes little sense.
* | lavfi: remove mp=pp filter.Clément Bœsch2012-12-23
| | | | | | | | | | | | | | Native pp filter is available. postproc dependency is also dropped from mp wrapper since it was the only filter needing that dependency.
* | lavfi: add pp filter.Clément Bœsch2012-12-23
| | | | | | | | | | | | | | | | | | | | | | Ported from MPlayer. Original author is A'rpi, with various contributions from Michael Niedermayer. The original documentation was mostly written by Diego Biurrun. See the MPlayer history for full credits. The filter is under GPL like the original filter, even if it differs quite a lot. There is not much point in making it LGPL since pp is under GPL.
* | lavfi/overlay: make use of av_opt_set_from_string()Stefano Sabatini2012-12-22
| | | | | | | | Simplify.
* | lavfi/overlay: switch to filter_frame APIStefano Sabatini2012-12-22
| |
* | lavfi: declare arrays that never change as static constPaul B Mahol2012-12-21
| | | | | | | | Signed-off-by: Paul B Mahol <onemda@gmail.com>
* | lavfi/swapuv: use FFSWAPPaul B Mahol2012-12-21
| | | | | | | | Signed-off-by: Paul B Mahol <onemda@gmail.com>
* | Merge commit '69f086e0f90f23d89e5739b099a4f984fa6a7885'Michael Niedermayer2012-12-21
|\| | | | | | | | | | | | | | | | | | | * commit '69f086e0f90f23d89e5739b099a4f984fa6a7885': build: avfilter: Remove duplicate compilation entry for vf_scale Conflicts: libavfilter/Makefile Merged-by: Michael Niedermayer <michaelni@gmx.at>