Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2012-07-02vf_yadif: move x86 init code to x86/yadif.cMans Rullgard
Signed-off-by: Mans Rullgard <mans@mansr.com>
2012-06-26lavfi: make filters less verbose.Anton Khirnov
2012-06-26lavfi: remove 'opaque' parameter from AVFilter.init()Anton Khirnov
It is not used in any filters currently and is inherently evil. If passing binary data to filters is required in the future, it should be done with some AVOptions-based system.
2012-06-13lavfi: make avfilter_get_video_buffer() private on next bump.Anton Khirnov
They are only useful inside filters and we don't allow user filters for now.
2012-06-05lavfi: remove request/poll and drawing functions from public API on next bumpAnton Khirnov
They are only useful inside filters and we don't allow user filters for now.
2012-06-05lavfi: make formats API private on next bump.Anton Khirnov
It is only useful inside filters and we don't allow user filters for now.
2012-05-22lavfi: remove avfilter_default_* from public API on next bump.Anton Khirnov
Those functions are only useful inside filters. It is better to not support user filters until the API is more stable.
2012-05-14yadif: Flush filter on eof.Robert Nagy
Signed-off-by: Anton Khirnov <anton@khirnov.net>
2012-05-14yadif: Improve pts accuracy.Robert Nagy
Signed-off-by: Anton Khirnov <anton@khirnov.net>
2012-05-07vf_yadif: fix missing error handling for avfilter_poll_frame()Robert Nagy
2012-02-13Drop some completely unnecessary av_unused attributes.Diego Biurrun
2011-12-13yadif: support 10bit YUVLuca Barbato
Signed-off-by: Luca Barbato <lu_zero@gentoo.org>
2011-09-21vf_yadif: add support to yuva420pStefano Sabatini
Signed-off-by: Anton Khirnov <anton@khirnov.net>
2011-09-21vf_yadif: correct documentation on the parity parameterStefano Sabatini
0 is top-field-first, 1 is bottom-field-first, not the other way around. Signed-off-by: Anton Khirnov <anton@khirnov.net>
2011-09-21vf_yadif: copy buffer properties like aspect for second frame as wellJoakim Plate
Signed-off-by: Anton Khirnov <anton@khirnov.net>
2011-09-19vf_yadif: add an option to enable/disable deinterlacing based on src frame ↵Joakim Plate
"interlaced" flag Signed-off-by: Joakim Plate <elupus@ecce.se> Signed-off-by: Anton Khirnov <anton@khirnov.net>
2011-04-26yadif: support 16-bitJames Darnley
Fixes by Michael Niedermayer <michaelni@gmx.at> Signed-off-by: Anton Khirnov <anton@khirnov.net>
2011-04-26yadif: support more than yuv420p.James Darnley
and correctly support grey8 Signed-off-by: Anton Khirnov <anton@khirnov.net>
2011-04-26yadif: Fix assert() failureMichael Niedermayer
Signed-off-by: Anton Khirnov <anton@khirnov.net>
2011-04-20Reduce picture size for yadif.Michael Niedermayer
Signed-off-by: Anton Khirnov <anton@khirnov.net>
2011-04-03Change yadif to not use out of picture lines.Michael Niedermayer
Fixes issue2272. Signed-off-by: Michael Niedermayer <michaelni@gmx.at> Signed-off-by: Anton Khirnov <anton@khirnov.net>
2011-03-19Replace FFmpeg with Libav in licence headersMans Rullgard
Signed-off-by: Mans Rullgard <mans@mansr.com>
2011-03-05yadif: add parens around macro parametersMans Rullgard
This fixes compilation with preprocessors which do not add whitespace around replaced tokens, resulting in invalid expressions like 1--1. Signed-off-by: Mans Rullgard <mans@mansr.com>
2011-01-15In yadif filter, default to top field first if interlacing is unknownBaptiste Coudurier
Originally committed as revision 26347 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-12-04yadif sse2/ssse3 optimizationsBaptiste Coudurier
Originally committed as revision 25874 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-11-22In yadif filter, copy video props to output picture.Baptiste Coudurier
Fix issue #2269. Interpolate pts for the second frame when using field output mode. Originally committed as revision 25798 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-09-28merge #if with if()Aurelien Jacobs
Originally committed as revision 25233 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-09-27yadif: remove unnecessary #includeMåns Rullgård
Originally committed as revision 25215 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-09-26Cosmetics: fix style nits.Stefano Sabatini
Originally committed as revision 25207 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-09-26In yadif filter, use current frame when previous is missing,Baptiste Coudurier
better results for the first frame Originally committed as revision 25202 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-09-25Fix 0 vs 1 porting bug from mplayer.Michael Niedermayer
Originally committed as revision 25197 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-09-25yadif filter, based on stefanos port of my yadif from mplayer.Michael Niedermayer
Compared to stefanos, 2 frame output works with ffplay. Originally committed as revision 25196 to svn://svn.ffmpeg.org/ffmpeg/trunk