summaryrefslogtreecommitdiff
path: root/libavfilter
Commit message (Collapse)AuthorAge
* lavfi/kerndeint: remove unused pixel_step.Clément Bœsch2013-01-06
|
* lavfi/kerndeint: fix temp buffer linesize.Clément Bœsch2013-01-06
| | | | Also re-enable the FATE test.
* vf_tinterlace: fix logical/bit op mixupMichael Niedermayer2013-01-06
| | | | | | Fixes CID966642 Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* lavfi/kerndeint: get pix format description only once.Clément Bœsch2013-01-06
| | | | This makes the code faster.
* lavfi/avfilter: remove now unused {src,cur,out}_buf.Clément Bœsch2013-01-06
| | | | | | This was supposed to be removed in 565e4993, but it was delayed due to the port of the remaining filters. These buffer ref pointers are not used anymore, thus dropped.
* vf_kerndeint: memset buffer to avoid use of uninitialized memory.Michael Niedermayer2013-01-06
| | | | | | This might fix fate failures. Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* libavfilter/video.h: remove unused things related to the start/slice/end APIMichael Niedermayer2013-01-05
| | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* internal.h: remove start/end_frame from AVFilterPadMichael Niedermayer2013-01-05
| | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* Allow remaining 32bit RGB packed pix_fmts in kerndeint filter.Carl Eugen Hoyos2013-01-05
| | | | Reviewed-by: Stefano Sabatini
* lavfi/kerndeint: fix mismatch between declared pixel format and testStefano Sabatini2013-01-05
| | | | +10l.
* lavfi/drawutils: fix blending computation in blend_line functionMatthieu Bouron2013-01-05
| | | | | If width is not alligned with hsub, background component should only be multiplied once by sub alpha component.
* lavfi: add histeq filterStefano Sabatini2013-01-05
| | | | | | This is a port of virtual dub's histogram equalization filter by Donald A. Graft. Based on the work by Jérémy Tran <tran.jeremy.av@gmail.com>, done for SOCIS 2012.
* lavfi: add kerndeint filterStefano Sabatini2013-01-05
| | | | | | This is a port of the kerndeint filter (libmpcodecs/vf_kerndeint) by Donal A. Graft (original avisynth plugin author), and is based on the work by Jérémy Tran <tran.jeremy.av@gmail.com> done for SOCIS 2012.
* lavfi/drawutils: fix typoMatthieu Bouron2013-01-05
| | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* lavfi/yadif: add support to named constantsStefano Sabatini2013-01-04
|
* lavfi/yadif: add support to named options and options introspectionStefano Sabatini2013-01-04
| | | | | Also rename the "enable_auto" field to "deint", to match the name of the option.
* lavfi/yadif: remove redundant NULL checks in uninitStefano Sabatini2013-01-04
|
* lavfi/yadif: fail during the configuration stage in case of invalid video sizeStefano Sabatini2013-01-04
| | | | This is better than repeatedly failing during the filtering stage.
* lavfi/yadif: remove unused poll_frame callbackStefano Sabatini2013-01-04
|
* 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
| |