summaryrefslogtreecommitdiff
path: root/libavfilter
Commit message (Collapse)AuthorAge
* Remove unused symbol.Stefano Sabatini2010-10-12
| | | | Originally committed as revision 25449 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Implement cropdetect filter.Stefano Sabatini2010-10-12
| | | | Originally committed as revision 25447 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Extend the nullsrc source, make it accept a parameter for specifyingStefano Sabatini2010-10-11
| | | | | | the timebase. Useful for debugging timebase configuration issues. Originally committed as revision 25446 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Implement settb filter.Stefano Sabatini2010-10-11
| | | | Originally committed as revision 25445 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add a time_base field to AVFilterLink.Stefano Sabatini2010-10-10
| | | | | | | This is required for allowing a filter to use a time base different from AV_TIME_BASE_Q, as it was previously assumed. Originally committed as revision 25441 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Rename out -> outlink, link -> inlink in various defaults.c functions,Stefano Sabatini2010-10-10
| | | | | | improve readability / consistency. Originally committed as revision 25434 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make avfilter_config_links() propagate the error code coming from theStefano Sabatini2010-10-10
| | | | | | callee functions. Originally committed as revision 25433 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add validity checks for the unsharp filter.Stefano Sabatini2010-10-08
| | | | | | Prevent crash. Originally committed as revision 25419 to svn://svn.ffmpeg.org/ffmpeg/trunk
* yadif: Explicit wordlength for compare. Fixes compile with clang.İsmail Dönmez2010-10-03
| | | | | | Patch by İsmail Dönmez: ismail at namtrac dot org Originally committed as revision 25328 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use SLIBSUF instead of .so, as a more generic dynamic library suffix.Víctor Paesa2010-10-03
| | | | Originally committed as revision 25321 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix reference to nonexistent function.Stefano Sabatini2010-10-01
| | | | Originally committed as revision 25296 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Return AVERROR(EINVAL) rather than -1 in case of invalid values.Stefano Sabatini2010-09-30
| | | | Originally committed as revision 25274 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix compile on Darwin (FATE). Compile error:Alexander Strange2010-09-29
| | | | | | | | | yadif.c:226: error: can't find a register in class 'GENERAL_REGS' while reloading 'asm' yadif.c:220: error: 'asm' operand has impossible constraints Patch by Alexander Strange <astrange ithinksw com>. Originally committed as revision 25251 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make init() return sensible error code rather than -1 in case ofStefano Sabatini2010-09-28
| | | | | | invalid values. Originally committed as revision 25248 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Cosmetics: apply nits.Stefano Sabatini2010-09-28
| | | | Originally committed as revision 25247 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add the drawbox filter from the soc libavfilter repo.Stefano Sabatini2010-09-28
| | | | | | Pedagogically useful. Originally committed as revision 25244 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move av_set_options_string() from libavfilter to libavutil.Stefano Sabatini2010-09-27
| | | | Originally committed as revision 25236 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use more expressive names for the avfilter_insert_filter() in and outStefano Sabatini2010-09-27
| | | | | | parameters. Originally committed as revision 25235 to svn://svn.ffmpeg.org/ffmpeg/trunk
* use a Makefile in x86 subdirAurelien Jacobs2010-09-27
| | | | Originally committed as revision 25234 to svn://svn.ffmpeg.org/ffmpeg/trunk
* merge #if with if()Aurelien Jacobs2010-09-27
| | | | Originally committed as revision 25233 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make avfilter_insert_filter() propagate an error code in case theStefano Sabatini2010-09-27
| | | | | | called avfilter_link() fails. Originally committed as revision 25229 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make AVFilterLink store the pointers to the source and destinationStefano Sabatini2010-09-27
| | | | | | pads, rather than their index. Originally committed as revision 25227 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move av_get_token() from libavfilter to libavutil.Stefano Sabatini2010-09-27
| | | | Originally committed as revision 25225 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make avfilter_destroy() code less convoluted, introducing a temporaryStefano Sabatini2010-09-27
| | | | | | variable link. Originally committed as revision 25217 to svn://svn.ffmpeg.org/ffmpeg/trunk
* yadif: remove unnecessary #includeMåns Rullgård2010-09-26
| | | | Originally committed as revision 25215 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Port MPlayer blackframe filter.Stefano Sabatini2010-09-26
| | | | | | | | See thread: Subject: [FFmpeg-devel] [PATCH] Port MPlayer blackframe filter. Date: Sun, 26 Sep 2010 01:10:40 +0200 Originally committed as revision 25214 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move AVOptions from libavcodec to libavutilMichael Niedermayer2010-09-26
| | | | Originally committed as revision 25210 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Cosmetics: fix style nits.Stefano Sabatini2010-09-26
| | | | Originally committed as revision 25207 to svn://svn.ffmpeg.org/ffmpeg/trunk
* In yadif filter, use current frame when previous is missing,Baptiste Coudurier2010-09-26
| | | | | | better results for the first frame Originally committed as revision 25202 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Replace deprecated CODEC_TYPE_AUDIO and CODEC_TYPE_VIDEO with theStefano Sabatini2010-09-25
| | | | | | corresponding AVMEDIA_TYPE_* symbols. Originally committed as revision 25201 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Stefanos port was missing DIRS variable in the Makefile for the newly added x86Michael Niedermayer2010-09-25
| | | | Originally committed as revision 25199 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Bump lavfi minor and add Changelog notice after yadif addition.Stefano Sabatini2010-09-25
| | | | Originally committed as revision 25198 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix 0 vs 1 porting bug from mplayer.Michael Niedermayer2010-09-25
| | | | Originally committed as revision 25197 to svn://svn.ffmpeg.org/ffmpeg/trunk
* yadif filter, based on stefanos port of my yadif from mplayer.Michael Niedermayer2010-09-25
| | | | | | Compared to stefanos, 2 frame output works with ffplay. Originally committed as revision 25196 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Prefix enum var_name symbols with VAR_, to avoid conflicts with alreadyStefano Sabatini2010-09-25
| | | | | | defined symbols, in particular should fix compilation in DOS. Originally committed as revision 25194 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix memleak introduced in:Stefano Sabatini2010-09-25
| | | | | | | | r25185 | stefano | 2010-09-25 03:18:43 +0200 (Sat, 25 Sep 2010) | 1 line Make the crop filters accept parametric expressions. Originally committed as revision 25193 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add asink_anullsink - null audio sink.S.N. Hemanth Meenakshisundaram2010-09-25
| | | | | | Patch by "S.N. Hemanth Meenakshisundaram" /smeenaks/ucsd/edu. Originally committed as revision 25189 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add asrc_anullsrc - null audio source.Stefano Sabatini2010-09-25
| | | | | | Based on a patch by "S.N. Hemanth Meenakshisundaram" smeenaks!ucsd!edu. Originally committed as revision 25188 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make the crop filters accept parametric expressions.Stefano Sabatini2010-09-25
| | | | Originally committed as revision 25185 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Change the syntax of the crop filter from x:y:w:h to w:h:x:y.Stefano Sabatini2010-09-24
| | | | | | | Slightly more intuitive and required by a pending changes for making the filter parametric. Originally committed as revision 25184 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add missing uses of NULL_IF_CONFIG_SMALL for the filters descriptions.Stefano Sabatini2010-09-24
| | | | Originally committed as revision 25182 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add missing NULL checks, fix crash.Stefano Sabatini2010-09-24
| | | | Originally committed as revision 25181 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove unnecessary av_strdup() and av_free().Stefano Sabatini2010-09-24
| | | | Originally committed as revision 25169 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add frei0r filter.Stefano Sabatini2010-09-24
| | | | | | | | See thread: Subject: [FFmpeg-devel] [POC] frei0r wrapper Date: Tue, 24 Aug 2010 21:37:32 +0200 Originally committed as revision 25165 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Correct terminology bug in poll_frame()Michael Niedermayer2010-09-23
| | | | | | it returns the number of samples not frames (for video sample=frame) Originally committed as revision 25162 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Cosmetics: fix weird align.Stefano Sabatini2010-09-16
| | | | Originally committed as revision 25134 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use <> for system headers inclusion.Stefano Sabatini2010-09-16
| | | | Originally committed as revision 25133 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix copyright notice, make it more consistent with the rest of FFmpeg.Stefano Sabatini2010-09-16
| | | | Originally committed as revision 25132 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Implement libopencv smooth filter.Stefano Sabatini2010-09-14
| | | | Originally committed as revision 25118 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Cosmetics: remove useless parentheses.Stefano Sabatini2010-09-10
| | | | Originally committed as revision 25097 to svn://svn.ffmpeg.org/ffmpeg/trunk