summaryrefslogtreecommitdiffstats
path: root/libavfilter
Commit message (Collapse)AuthorAgeFilesLines
* 100l: remove bogus inclusion of libavcodec/audioconvert.c inStefano Sabatini2010-10-251-1/+0
| | | | | | avfilter.c. Originally committed as revision 25565 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add transpose filter.Stefano Sabatini2010-10-184-1/+215
| | | | Originally committed as revision 25525 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add avfilter_graph_config().Stefano Sabatini2010-10-163-2/+23
| | | | Originally committed as revision 25502 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make the validity checks fail only if the corresponding luma or chromaStefano Sabatini2010-10-131-1/+2
| | | | | | | values are not zero. Prevent aborting with the default values. Originally committed as revision 25471 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make avfilter_config_links() use the timebase of the first input linkStefano Sabatini2010-10-121-1/+2
| | | | | | | | | | | of a filter for setting the output timebase, if there is such a link, rather than always use AV_TIME_BASE_Q. This fixes configuration for all the filters which do not use the default config_props for the output link, and do not set explicitely the timebase. Originally committed as revision 25456 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Extend buffer source to accept the time base for the output PTS.Stefano Sabatini2010-10-122-3/+6
| | | | Originally committed as revision 25451 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove unused symbol.Stefano Sabatini2010-10-121-1/+0
| | | | Originally committed as revision 25449 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Implement cropdetect filter.Stefano Sabatini2010-10-124-2/+218
| | | | 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-112-4/+51
| | | | | | 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-114-1/+144
| | | | Originally committed as revision 25445 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add a time_base field to AVFilterLink.Stefano Sabatini2010-10-103-2/+21
| | | | | | | 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-101-30/+30
| | | | | | 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-101-6/+7
| | | | | | callee functions. Originally committed as revision 25433 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add validity checks for the unsharp filter.Stefano Sabatini2010-10-081-0/+7
| | | | | | 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-031-1/+1
| | | | | | 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-031-1/+1
| | | | Originally committed as revision 25321 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix reference to nonexistent function.Stefano Sabatini2010-10-011-1/+1
| | | | 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-301-1/+1
| | | | Originally committed as revision 25274 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix compile on Darwin (FATE). Compile error:Alexander Strange2010-09-291-7/+6
| | | | | | | | | 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-281-1/+1
| | | | | | invalid values. Originally committed as revision 25248 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Cosmetics: apply nits.Stefano Sabatini2010-09-281-3/+3
| | | | Originally committed as revision 25247 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add the drawbox filter from the soc libavfilter repo.Stefano Sabatini2010-09-284-2/+147
| | | | | | 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-273-159/+1
| | | | 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-272-8/+8
| | | | | | parameters. Originally committed as revision 25235 to svn://svn.ffmpeg.org/ffmpeg/trunk
* use a Makefile in x86 subdirAurelien Jacobs2010-09-273-6/+3
| | | | Originally committed as revision 25234 to svn://svn.ffmpeg.org/ffmpeg/trunk
* merge #if with if()Aurelien Jacobs2010-09-271-3/+1
| | | | 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-271-2/+3
| | | | | | 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-272-32/+30
| | | | | | 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-275-87/+3
| | | | Originally committed as revision 25225 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make avfilter_destroy() code less convoluted, introducing a temporaryStefano Sabatini2010-09-271-12/+13
| | | | | | variable link. Originally committed as revision 25217 to svn://svn.ffmpeg.org/ffmpeg/trunk
* yadif: remove unnecessary #includeMåns Rullgård2010-09-261-1/+0
| | | | Originally committed as revision 25215 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Port MPlayer blackframe filter.Stefano Sabatini2010-09-264-1/+132
| | | | | | | | 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-261-1/+1
| | | | Originally committed as revision 25210 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Cosmetics: fix style nits.Stefano Sabatini2010-09-261-14/+15
| | | | 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-261-4/+3
| | | | | | 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-251-1/+1
| | | | | | 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-251-0/+2
| | | | 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-251-1/+1
| | | | Originally committed as revision 25198 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix 0 vs 1 porting bug from mplayer.Michael Niedermayer2010-09-251-1/+1
| | | | 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-255-0/+604
| | | | | | 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-251-40/+40
| | | | | | 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-251-0/+1
| | | | | | | | 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-254-1/+43
| | | | | | 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-254-1/+101
| | | | | | 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-252-18/+158
| | | | 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-242-5/+5
| | | | | | | 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-247-8/+8
| | | | Originally committed as revision 25182 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add missing NULL checks, fix crash.Stefano Sabatini2010-09-241-2/+2
| | | | Originally committed as revision 25181 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove unnecessary av_strdup() and av_free().Stefano Sabatini2010-09-241-2/+1
| | | | Originally committed as revision 25169 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add frei0r filter.Stefano Sabatini2010-09-244-1/+366
| | | | | | | | 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
OpenPOWER on IntegriCloud