| Commit message (Expand) | Author | Age | Files | Lines |
* | Add transpose filter. | Stefano Sabatini | 2010-10-18 | 4 | -1/+215 |
* | Add avfilter_graph_config(). | Stefano Sabatini | 2010-10-16 | 3 | -2/+23 |
* | Make the validity checks fail only if the corresponding luma or chroma | Stefano Sabatini | 2010-10-13 | 1 | -1/+2 |
* | Make avfilter_config_links() use the timebase of the first input link | Stefano Sabatini | 2010-10-12 | 1 | -1/+2 |
* | Extend buffer source to accept the time base for the output PTS. | Stefano Sabatini | 2010-10-12 | 2 | -3/+6 |
* | Remove unused symbol. | Stefano Sabatini | 2010-10-12 | 1 | -1/+0 |
* | Implement cropdetect filter. | Stefano Sabatini | 2010-10-12 | 4 | -2/+218 |
* | Extend the nullsrc source, make it accept a parameter for specifying | Stefano Sabatini | 2010-10-11 | 2 | -4/+51 |
* | Implement settb filter. | Stefano Sabatini | 2010-10-11 | 4 | -1/+144 |
* | Add a time_base field to AVFilterLink. | Stefano Sabatini | 2010-10-10 | 3 | -2/+21 |
* | Rename out -> outlink, link -> inlink in various defaults.c functions, | Stefano Sabatini | 2010-10-10 | 1 | -30/+30 |
* | Make avfilter_config_links() propagate the error code coming from the | Stefano Sabatini | 2010-10-10 | 1 | -6/+7 |
* | Add validity checks for the unsharp filter. | Stefano Sabatini | 2010-10-08 | 1 | -0/+7 |
* | yadif: Explicit wordlength for compare. Fixes compile with clang. | İsmail Dönmez | 2010-10-03 | 1 | -1/+1 |
* | Use SLIBSUF instead of .so, as a more generic dynamic library suffix. | Víctor Paesa | 2010-10-03 | 1 | -1/+1 |
* | Fix reference to nonexistent function. | Stefano Sabatini | 2010-10-01 | 1 | -1/+1 |
* | Return AVERROR(EINVAL) rather than -1 in case of invalid values. | Stefano Sabatini | 2010-09-30 | 1 | -1/+1 |
* | Fix compile on Darwin (FATE). Compile error: | Alexander Strange | 2010-09-29 | 1 | -7/+6 |
* | Make init() return sensible error code rather than -1 in case of | Stefano Sabatini | 2010-09-28 | 1 | -1/+1 |
* | Cosmetics: apply nits. | Stefano Sabatini | 2010-09-28 | 1 | -3/+3 |
* | Add the drawbox filter from the soc libavfilter repo. | Stefano Sabatini | 2010-09-28 | 4 | -2/+147 |
* | Move av_set_options_string() from libavfilter to libavutil. | Stefano Sabatini | 2010-09-27 | 3 | -159/+1 |
* | Use more expressive names for the avfilter_insert_filter() in and out | Stefano Sabatini | 2010-09-27 | 2 | -8/+8 |
* | use a Makefile in x86 subdir | Aurelien Jacobs | 2010-09-27 | 3 | -6/+3 |
* | merge #if with if() | Aurelien Jacobs | 2010-09-27 | 1 | -3/+1 |
* | Make avfilter_insert_filter() propagate an error code in case the | Stefano Sabatini | 2010-09-27 | 1 | -2/+3 |
* | Make AVFilterLink store the pointers to the source and destination | Stefano Sabatini | 2010-09-27 | 2 | -32/+30 |
* | Move av_get_token() from libavfilter to libavutil. | Stefano Sabatini | 2010-09-27 | 5 | -87/+3 |
* | Make avfilter_destroy() code less convoluted, introducing a temporary | Stefano Sabatini | 2010-09-27 | 1 | -12/+13 |
* | yadif: remove unnecessary #include | Måns Rullgård | 2010-09-26 | 1 | -1/+0 |
* | Port MPlayer blackframe filter. | Stefano Sabatini | 2010-09-26 | 4 | -1/+132 |
* | Move AVOptions from libavcodec to libavutil | Michael Niedermayer | 2010-09-26 | 1 | -1/+1 |
* | Cosmetics: fix style nits. | Stefano Sabatini | 2010-09-26 | 1 | -14/+15 |
* | In yadif filter, use current frame when previous is missing, | Baptiste Coudurier | 2010-09-26 | 1 | -4/+3 |
* | Replace deprecated CODEC_TYPE_AUDIO and CODEC_TYPE_VIDEO with the | Stefano Sabatini | 2010-09-25 | 1 | -1/+1 |
* | Stefanos port was missing DIRS variable in the Makefile for the newly added x86 | Michael Niedermayer | 2010-09-25 | 1 | -0/+2 |
* | Bump lavfi minor and add Changelog notice after yadif addition. | Stefano Sabatini | 2010-09-25 | 1 | -1/+1 |
* | Fix 0 vs 1 porting bug from mplayer. | Michael Niedermayer | 2010-09-25 | 1 | -1/+1 |
* | yadif filter, based on stefanos port of my yadif from mplayer. | Michael Niedermayer | 2010-09-25 | 5 | -0/+604 |
* | Prefix enum var_name symbols with VAR_, to avoid conflicts with already | Stefano Sabatini | 2010-09-25 | 1 | -40/+40 |
* | Fix memleak introduced in: | Stefano Sabatini | 2010-09-25 | 1 | -0/+1 |
* | Add asink_anullsink - null audio sink. | S.N. Hemanth Meenakshisundaram | 2010-09-25 | 4 | -1/+43 |
* | Add asrc_anullsrc - null audio source. | Stefano Sabatini | 2010-09-25 | 4 | -1/+101 |
* | Make the crop filters accept parametric expressions. | Stefano Sabatini | 2010-09-25 | 2 | -18/+158 |
* | Change the syntax of the crop filter from x:y:w:h to w:h:x:y. | Stefano Sabatini | 2010-09-24 | 2 | -5/+5 |
* | Add missing uses of NULL_IF_CONFIG_SMALL for the filters descriptions. | Stefano Sabatini | 2010-09-24 | 7 | -8/+8 |
* | Add missing NULL checks, fix crash. | Stefano Sabatini | 2010-09-24 | 1 | -2/+2 |
* | Remove unnecessary av_strdup() and av_free(). | Stefano Sabatini | 2010-09-24 | 1 | -2/+1 |
* | Add frei0r filter. | Stefano Sabatini | 2010-09-24 | 4 | -1/+366 |
* | Correct terminology bug in poll_frame() | Michael Niedermayer | 2010-09-23 | 1 | -1/+1 |