summaryrefslogtreecommitdiff
path: root/libavfilter/vf_idet.c
Commit message (Collapse)AuthorAge
* Merge remote-tracking branch 'qatar/master'Michael Niedermayer2012-07-22
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * qatar/master: FATE: fix the asyncts test build: Drop gcc-specific warning flag from header compilation rule FATE: add a test for the asyncts audio filter. matroskadec: return more correct error code on read error. buffersrc: check ff_get_audio_buffer() for errors. lavfi: check all ff_get_video_buffer() calls for errors. lavfi: check all avfilter_ref_buffer() calls for errors. vf_select: avoid an unnecessary avfilter_ref_buffer(). buffersrc: avoid creating unnecessary buffer reference lavfi: use avfilter_unref_bufferp() where appropriate. vf_fps: add more error checks. vf_fps: fix a memleak on malloc failure. lavfi: check all ff_start_frame/draw_slice/end_frame calls for errors lavfi: add error handling to end_frame(). lavfi: add error handling to draw_slice(). lavfi: add error handling to start_frame(). Conflicts: Makefile ffplay.c libavfilter/buffersrc.c libavfilter/vf_boxblur.c libavfilter/vf_drawtext.c libavfilter/vf_fade.c libavfilter/vf_frei0r.c libavfilter/vf_hflip.c libavfilter/vf_overlay.c libavfilter/vf_pad.c libavfilter/vf_scale.c libavfilter/video.c libavfilter/vsrc_color.c Merged-by: Michael Niedermayer <michaelni@gmx.at>
* Merge commit 'a5e8c41c28f907d98d2a739db08f7aef4cbfcf3a'Michael Niedermayer2012-06-26
| | | | | | | | | | | | | | | | | | | | | | | * commit 'a5e8c41c28f907d98d2a739db08f7aef4cbfcf3a': lavfi: remove 'opaque' parameter from AVFilter.init() mov: do not try to read total disc/track number if data atom is too short. avconv: fix -force_key_frames dxva2_h264: fix signaling of mbaff frames x86: fft: elf64: fix PIC build Conflicts: ffmpeg.c libavcodec/v210dec.h libavfilter/asrc_anullsrc.c libavfilter/buffersrc.c libavfilter/src_movie.c libavfilter/vf_drawtext.c libavfilter/vf_fade.c libavfilter/vf_overlay.c libavfilter/vsrc_color.c libavfilter/vsrc_testsrc.c Merged-by: Michael Niedermayer <michaelni@gmx.at>
* Merge remote-tracking branch 'qatar/master'Michael Niedermayer2012-06-24
| | | | | | | | | | | | | | | | | | | | | | | | | * qatar/master: x86: Only use optimizations with cmov if the CPU supports the instruction x86: Add CPU flag for the i686 cmov instruction x86: remove unused inline asm macros from dsputil_mmx.h x86: move some inline asm macros to the only places they are used lavfi: Add the af_channelmap audio channel mapping filter. lavfi: add join audio filter. lavfi: allow audio filters to request a given number of samples. lavfi: support automatically inserting the fifo filter when needed. lavfi/audio: eliminate ff_default_filter_samples(). Conflicts: Changelog libavcodec/x86/h264dsp_mmx.c libavfilter/Makefile libavfilter/allfilters.c libavfilter/avfilter.h libavfilter/avfiltergraph.c libavfilter/version.h libavutil/x86/cpu.c Merged-by: Michael Niedermayer <michaelni@gmx.at>
* lavfi: update some deprecated functionsPaul B Mahol2012-06-16
| | | | Signed-off-by: Paul B Mahol <onemda@gmail.com>
* vf_idet: remove unused variablesMichael Niedermayer2012-05-10
| | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* vf_idet: fix pointer type (const) warningMichael Niedermayer2012-05-10
| | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* vf_idet: clean detected frame types based on a 4 frame history.Michael Niedermayer2012-04-05
| | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* vf_idet: change individual per frame statistics to debug log level.Michael Niedermayer2012-04-05
| | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* vf_idet: print accumulated statistics for single and multi frame detectionMichael Niedermayer2012-04-05
| | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* vf_idet: Print both the single frame based detection and the multi frame one.Michael Niedermayer2012-04-05
| | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* vf_idet: Add last_type variable to make code more readable.Michael Niedermayer2012-04-05
| | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* vf_idet: use enum to represent the type.Michael Niedermayer2012-04-05
| | | | | | This will simplify future code. Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* vf_idet: print accumulated statistics at endMichael Niedermayer2012-04-04
| | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* vf_idet: set interlaced flagsMichael Niedermayer2012-04-04
| | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* vf_idet: fix indentionMichael Niedermayer2012-04-04
| | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* vf_idet: move statistic variables into the contextMichael Niedermayer2012-04-04
| | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* vf_idet: remove unused functionMichael Niedermayer2012-04-04
| | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* vf_idet: pass context to av_log()Michael Niedermayer2012-04-04
| | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* libavfilter: Add interlace detect filter.Michael Niedermayer2012-04-04
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>