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
2010-10-13Make the validity checks fail only if the corresponding luma or chromaStefano Sabatini
values are not zero. Prevent aborting with the default values. Originally committed as revision 25471 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-10-13Make avfilter_config_links() use the timebase of the first input linkStefano Sabatini
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
2010-10-12Extend buffer source to accept the time base for the output PTS.Stefano Sabatini
Originally committed as revision 25451 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-10-12Remove unused symbol.Stefano Sabatini
Originally committed as revision 25449 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-10-12Implement cropdetect filter.Stefano Sabatini
Originally committed as revision 25447 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-10-12Extend the nullsrc source, make it accept a parameter for specifyingStefano Sabatini
the timebase. Useful for debugging timebase configuration issues. Originally committed as revision 25446 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-10-11Implement settb filter.Stefano Sabatini
Originally committed as revision 25445 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-10-11Add a time_base field to AVFilterLink.Stefano Sabatini
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
2010-10-10Rename out -> outlink, link -> inlink in various defaults.c functions,Stefano Sabatini
improve readability / consistency. Originally committed as revision 25434 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-10-10Make avfilter_config_links() propagate the error code coming from theStefano Sabatini
callee functions. Originally committed as revision 25433 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-10-09Add validity checks for the unsharp filter.Stefano Sabatini
Prevent crash. Originally committed as revision 25419 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-10-04yadif: Explicit wordlength for compare. Fixes compile with clang.İsmail Dönmez
Patch by İsmail Dönmez: ismail at namtrac dot org Originally committed as revision 25328 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-10-03Use SLIBSUF instead of .so, as a more generic dynamic library suffix.Víctor Paesa
Originally committed as revision 25321 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-10-01Fix reference to nonexistent function.Stefano Sabatini
Originally committed as revision 25296 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-10-01Return AVERROR(EINVAL) rather than -1 in case of invalid values.Stefano Sabatini
Originally committed as revision 25274 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-09-29Fix compile on Darwin (FATE). Compile error:Alexander Strange
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
2010-09-28Make init() return sensible error code rather than -1 in case ofStefano Sabatini
invalid values. Originally committed as revision 25248 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-09-28Cosmetics: apply nits.Stefano Sabatini
Originally committed as revision 25247 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-09-28Add the drawbox filter from the soc libavfilter repo.Stefano Sabatini
Pedagogically useful. Originally committed as revision 25244 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-09-28Move av_set_options_string() from libavfilter to libavutil.Stefano Sabatini
Originally committed as revision 25236 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-09-28Use more expressive names for the avfilter_insert_filter() in and outStefano Sabatini
parameters. Originally committed as revision 25235 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-09-28use a Makefile in x86 subdirAurelien Jacobs
Originally committed as revision 25234 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-27Make avfilter_insert_filter() propagate an error code in case theStefano Sabatini
called avfilter_link() fails. Originally committed as revision 25229 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-09-27Make AVFilterLink store the pointers to the source and destinationStefano Sabatini
pads, rather than their index. Originally committed as revision 25227 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-09-27Move av_get_token() from libavfilter to libavutil.Stefano Sabatini
Originally committed as revision 25225 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-09-27Make avfilter_destroy() code less convoluted, introducing a temporaryStefano Sabatini
variable link. Originally committed as revision 25217 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-27Port MPlayer blackframe filter.Stefano Sabatini
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
2010-09-26Move AVOptions from libavcodec to libavutilMichael Niedermayer
Originally committed as revision 25210 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-26Replace deprecated CODEC_TYPE_AUDIO and CODEC_TYPE_VIDEO with theStefano Sabatini
corresponding AVMEDIA_TYPE_* symbols. Originally committed as revision 25201 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-09-25Stefanos port was missing DIRS variable in the Makefile for the newly added x86Michael Niedermayer
Originally committed as revision 25199 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-09-25Bump lavfi minor and add Changelog notice after yadif addition.Stefano Sabatini
Originally committed as revision 25198 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
2010-09-25Prefix enum var_name symbols with VAR_, to avoid conflicts with alreadyStefano Sabatini
defined symbols, in particular should fix compilation in DOS. Originally committed as revision 25194 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-09-25Fix memleak introduced in:Stefano Sabatini
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
2010-09-25Add asink_anullsink - null audio sink.S.N. Hemanth Meenakshisundaram
Patch by "S.N. Hemanth Meenakshisundaram" /smeenaks/ucsd/edu. Originally committed as revision 25189 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-09-25Add asrc_anullsrc - null audio source.Stefano Sabatini
Based on a patch by "S.N. Hemanth Meenakshisundaram" smeenaks!ucsd!edu. Originally committed as revision 25188 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-09-25Make the crop filters accept parametric expressions.Stefano Sabatini
Originally committed as revision 25185 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-09-25Change the syntax of the crop filter from x:y:w:h to w:h:x:y.Stefano Sabatini
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
2010-09-25Add missing uses of NULL_IF_CONFIG_SMALL for the filters descriptions.Stefano Sabatini
Originally committed as revision 25182 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-09-25Add missing NULL checks, fix crash.Stefano Sabatini
Originally committed as revision 25181 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-09-24Remove unnecessary av_strdup() and av_free().Stefano Sabatini
Originally committed as revision 25169 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-09-24Add frei0r filter.Stefano Sabatini
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
2010-09-23Correct terminology bug in poll_frame()Michael Niedermayer
it returns the number of samples not frames (for video sample=frame) Originally committed as revision 25162 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-09-16Cosmetics: fix weird align.Stefano Sabatini
Originally committed as revision 25134 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-09-16Use <> for system headers inclusion.Stefano Sabatini
Originally committed as revision 25133 to svn://svn.ffmpeg.org/ffmpeg/trunk