summaryrefslogtreecommitdiffstats
path: root/libavfilter/vf_idet.c
Commit message (Collapse)AuthorAgeFilesLines
...
* vf_idet: zero pointers after freeing referencesMichael Niedermayer2012-10-111-3/+3
| | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* vf_idet: fix free after useMichael Niedermayer2012-10-111-0/+1
| | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* vf_idet: remove some unnecessary statement and unused variableMatthieu Bouron2012-10-101-4/+3
| | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* Merge commit '716d413c13981da15323c7a3821860536eefdbbb'Michael Niedermayer2012-10-081-21/+21
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * commit '716d413c13981da15323c7a3821860536eefdbbb': Replace PIX_FMT_* -> AV_PIX_FMT_*, PixelFormat -> AVPixelFormat Conflicts: doc/examples/muxing.c ffmpeg.h ffmpeg_filter.c ffmpeg_opt.c ffplay.c ffprobe.c libavcodec/8bps.c libavcodec/aasc.c libavcodec/aura.c libavcodec/avcodec.h libavcodec/avs.c libavcodec/bfi.c libavcodec/bmp.c libavcodec/bmpenc.c libavcodec/c93.c libavcodec/cscd.c libavcodec/cyuv.c libavcodec/dpx.c libavcodec/dpxenc.c libavcodec/eatgv.c libavcodec/escape124.c libavcodec/ffv1.c libavcodec/flashsv.c libavcodec/fraps.c libavcodec/h264.c libavcodec/huffyuv.c libavcodec/iff.c libavcodec/imgconvert.c libavcodec/indeo3.c libavcodec/kmvc.c libavcodec/libopenjpegdec.c libavcodec/libopenjpegenc.c libavcodec/libx264.c libavcodec/ljpegenc.c libavcodec/mjpegdec.c libavcodec/mjpegenc.c libavcodec/motionpixels.c libavcodec/mpeg12.c libavcodec/mpeg12enc.c libavcodec/mpeg4videodec.c libavcodec/mpegvideo_enc.c libavcodec/pamenc.c libavcodec/pcxenc.c libavcodec/pgssubdec.c libavcodec/pngdec.c libavcodec/pngenc.c libavcodec/pnm.c libavcodec/pnmdec.c libavcodec/pnmenc.c libavcodec/ptx.c libavcodec/qdrw.c libavcodec/qpeg.c libavcodec/qtrleenc.c libavcodec/raw.c libavcodec/rawdec.c libavcodec/rl2.c libavcodec/sgidec.c libavcodec/sgienc.c libavcodec/snowdec.c libavcodec/snowenc.c libavcodec/sunrast.c libavcodec/targa.c libavcodec/targaenc.c libavcodec/tiff.c libavcodec/tiffenc.c libavcodec/tmv.c libavcodec/truemotion2.c libavcodec/utils.c libavcodec/vb.c libavcodec/vp3.c libavcodec/wnv1.c libavcodec/xl.c libavcodec/xwddec.c libavcodec/xwdenc.c libavcodec/yop.c libavdevice/v4l2.c libavdevice/x11grab.c libavfilter/avfilter.c libavfilter/avfilter.h libavfilter/buffersrc.c libavfilter/drawutils.c libavfilter/formats.c libavfilter/src_movie.c libavfilter/vf_ass.c libavfilter/vf_drawtext.c libavfilter/vf_fade.c libavfilter/vf_format.c libavfilter/vf_hflip.c libavfilter/vf_lut.c libavfilter/vf_overlay.c libavfilter/vf_pad.c libavfilter/vf_scale.c libavfilter/vf_transpose.c libavfilter/vf_yadif.c libavfilter/video.c libavfilter/vsrc_testsrc.c libavformat/movenc.c libavformat/mxf.h libavformat/utils.c libavformat/yuv4mpeg.c libavutil/imgutils.c libavutil/pixdesc.c libswscale/input.c libswscale/output.c libswscale/swscale_internal.h libswscale/swscale_unscaled.c libswscale/utils.c libswscale/x86/swscale_template.c libswscale/x86/yuv2rgb.c libswscale/x86/yuv2rgb_template.c libswscale/yuv2rgb.c Merged-by: Michael Niedermayer <michaelni@gmx.at>
* vf_idet: Remove emmsDerek Buitenhuis2012-09-071-3/+0
| | | | | | | There is no MMX code anyway. Signed-off-by: Derek Buitenhuis <derek.buitenhuis@gmail.com> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* vf_idet: fix permissions.Nicolas George2012-08-171-3/+4
| | | | Only write needs to be removed, other can be left.
* Merge remote-tracking branch 'qatar/master'Michael Niedermayer2012-07-221-7/+7
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * 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-261-1/+1
| | | | | | | | | | | | | | | | | | | | | | | * 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-241-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | * 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-161-6/+7
| | | | Signed-off-by: Paul B Mahol <onemda@gmail.com>
* vf_idet: remove unused variablesMichael Niedermayer2012-05-101-2/+0
| | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* vf_idet: fix pointer type (const) warningMichael Niedermayer2012-05-101-1/+1
| | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* vf_idet: clean detected frame types based on a 4 frame history.Michael Niedermayer2012-04-051-3/+28
| | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* vf_idet: change individual per frame statistics to debug log level.Michael Niedermayer2012-04-051-1/+1
| | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* vf_idet: print accumulated statistics for single and multi frame detectionMichael Niedermayer2012-04-051-3/+10
| | | | 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-051-4/+12
| | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* vf_idet: Add last_type variable to make code more readable.Michael Niedermayer2012-04-051-11/+13
| | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* vf_idet: use enum to represent the type.Michael Niedermayer2012-04-051-14/+28
| | | | | | This will simplify future code. Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* vf_idet: print accumulated statistics at endMichael Niedermayer2012-04-041-1/+7
| | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* vf_idet: set interlaced flagsMichael Niedermayer2012-04-041-0/+7
| | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* vf_idet: fix indentionMichael Niedermayer2012-04-041-10/+10
| | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* vf_idet: move statistic variables into the contextMichael Niedermayer2012-04-041-5/+9
| | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* vf_idet: remove unused functionMichael Niedermayer2012-04-041-4/+0
| | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* vf_idet: pass context to av_log()Michael Niedermayer2012-04-041-5/+5
| | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* libavfilter: Add interlace detect filter.Michael Niedermayer2012-04-041-0/+270
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
OpenPOWER on IntegriCloud