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-04lavfi: reclassify showfiltfmts as a TESTPROGMans Rullgard
This tool uses lavfi internal symbols not accessible in shared libraries. TESTPROGS are linked statically to allow them use of library internals not normally exported. Signed-off-by: Mans Rullgard <mans@mansr.com>
2012-06-26lavfi: remove disabled FF_API_VSRC_BUFFER_ADD_FRAME cruftAnton Khirnov
2012-06-23lavfi: Add the af_channelmap audio channel mapping filter.Alex Converse
Inspired by MPlayer's af_channels filter and SoX's remix effect.
2012-06-22lavfi: add join audio filter.Anton Khirnov
It joins multiple input streams into one multi-channel output.
2012-06-21lavfi/fifo: add audio version of the fifo filter.Anton Khirnov
2012-06-21lavfi: rename vf_fifo.c -> fifo.cAnton Khirnov
It will be used for audio too.
2012-06-13lavfi: allow building without swscale.Anton Khirnov
2012-06-12lavfi: add channelsplit audio filter.Anton Khirnov
2012-05-24lavfi: add audio mix filterJustin Ruggles
2012-05-22lavfi: deprecate default config_props() callback and refactor ↵Mina Nagy Zaki
avfilter_config_links() Link properties have to be checked after config_props() is called to make sure everything is sane, so the default config_props() for output links was redundant. Remove now empty defaults.c Signed-off-by: Anton Khirnov <anton@khirnov.net>
2012-05-21lavfi: add an audio split filterJustin Ruggles
Based on current version of the asplit filter in FFmpeg written by Stefano Sabatini and others.
2012-05-21lavfi: rename vf_split.c to split.cJustin Ruggles
This is in preparation for adding an audio split filter.
2012-05-18lavfi: Add fps filter.Anton Khirnov
Partially based on a patch by Robert Nagy <ronag89@gmail.com>
2012-05-15lavfi: move buffer management function to a separate file.Anton Khirnov
2012-05-15lavfi: move video-related functions to a separate file.Anton Khirnov
This is easier to follow than having them randomly scattered in avfilter.c and defaults.c.
2012-05-14lavfi: add asyncts filter.Anton Khirnov
2012-05-14lavfi: add aformat filterAnton Khirnov
Based on a patch by Mina Nagy Zaki <mnzaki@gmail.com>
2012-05-14lavfi: rename vsrc_buffer.c to buffersrc.cAnton Khirnov
Most of the code will be shared for both audio and video version.
2012-05-12lavfi: add lavr-based audio resampling filter.Anton Khirnov
2012-05-09lavfi: move audio-related functions to a separate file.Anton Khirnov
This is easier to follow than having them randomly scattered in avfilter.c and defaults.c.
2012-05-09lavfi: add video buffer sink, and use it in avtoolsAnton Khirnov
Also add the public interface libavfilter/buffersink.h. Based on a commit by Stefano Sabatini.
2012-05-07build: cosmetics: Add missing end-of-line backslashes to item lists.Diego Biurrun
2012-05-07build: cosmetics: Split HEADERS/OBJS/PROGS lists into one entry per line.Diego Biurrun
2012-05-06lavfi: always enable the scale filter and depend on sws.Anton Khirnov
The scale filter is used for internal colorspace conversions, so it must always be present.
2012-03-26build: Only clean the architecture subdirectory we build for.Diego Biurrun
This allows simplifying the Makefiles; it is no longer necessary to register arch subdirectory Makefiles, just putting them in place is enough.
2012-01-25build: Automatically include architecture-specific library Makefile snippets.Diego Biurrun
2012-01-12lavfi: move version macros to a new installed header version.hAnton Khirnov
2011-12-25lavfi: add a new function av_buffersrc_buffer().Anton Khirnov
It can be used to directly pass a AVFilterBufferRef to lavfi, avoiding a memcpy.
2011-12-22lavfi: always build vsrc_buffer.Anton Khirnov
It's a part of public API.
2011-12-13build: move inclusion of subdir.mak to main subdir loopMans Rullgard
Signed-off-by: Mans Rullgard <mans@mansr.com>
2011-12-11lavfi: install libavfilter/vsrc_buffer.hAndrey Utkin
It declares API necessary for filtering apps. Signed-off-by: Anton Khirnov <anton@khirnov.net>
2011-10-19lavfi: add rgbtestsrc source, ported from MPlayer libmpcodecsStefano Sabatini
The licence was changed from GPL to LGPL with explicit approval from the original author. See thread: Subject: [FFmpeg-devel] [PATCH] lavfi: add rgbtestsrc source, ported from MPlayer libmpcodecs Date: Mon, 11 Jul 2011 16:32:41 +0200 Signed-off-by: Anton Khirnov <anton@khirnov.net>
2011-10-19lavfi: add testsrc sourceStefano Sabatini
Signed-off-by: Anton Khirnov <anton@khirnov.net>
2011-10-17lavfi: port libmpcodecs delogo filterStefano Sabatini
The ported filter supports named option parsing and more YUV formats. Signed-off-by: Anton Khirnov <anton@khirnov.net>
2011-10-17lavfi: port boxblur filter from libmpcodecsStefano Sabatini
With the following additions: * support to gray format * support to yuva420p format * parametric luma/chroma/alpha radius * consistency check on the radius values, avoid crashes with invalid values Signed-off-by: Anton Khirnov <anton@khirnov.net>
2011-10-17lavfi: add negate filterStefano Sabatini
This filter is a simple wrapper around the LUT filter. Signed-off-by: Anton Khirnov <anton@khirnov.net>
2011-10-17lavfi: add LUT (LookUp Table) generic filtersStefano Sabatini
Signed-off-by: Anton Khirnov <anton@khirnov.net>
2011-09-17lavfi: add select filterStefano Sabatini
Signed-off-by: Anton Khirnov <anton@khirnov.net>
2011-09-12lavfi: add split filter from soc.Bobby Bingham
Some fixes by Stefano. For detailed authorship see SOC repo Signed-off-by: Anton Khirnov <anton@khirnov.net>
2011-09-12lavfi: add showinfo filterStefano Sabatini
Signed-off-by: Anton Khirnov <anton@khirnov.net>
2011-07-11build: rework rules for things in the tools dirMans Rullgard
Declaring tools associated with each library in their respective makefiles allows these tools to easily depend on the correct prerequisites and link against the libs they need. Signed-off-by: Mans Rullgard <mans@mansr.com>
2011-06-28build: include sub-makefiles using full path instead of symlinksMans Rullgard
Signed-off-by: Mans Rullgard <mans@mansr.com>
2011-06-25build: Remove redundant config.mak includes from subdirectory Makefiles.Diego Biurrun
Calling Make from subdirectories is not supported and config.mak has multiple inclusion guards anyway, so the top-level include is enough.
2011-05-07lavfi: Port drawtext filter by Hemanth from the libavfilter soc repoStefano Sabatini
With the following additions: * support to anti-aliased glyph rendering * support to UTF-8 text and Unicode chars rendering * support for RGB packed formats * fix minor errors and typos in the filter description * extend/clarify examples in the filter description Signed-off-by: Anton Khirnov <anton@khirnov.net>
2011-04-26lavfi: add fieldorder filterMark Himsley
Signed-off-by: Stefano Sabatini <stefano.sabatini-lala@poste.it> Signed-off-by: Anton Khirnov <anton@khirnov.net>
2011-04-03lavfi: add fade filterBrandon Mintern
Port fade filter from libavfilter soc repo, with minor fixes by Stefano. Signed-off-by: Michael Niedermayer <michaelni@gmx.at> Signed-off-by: Anton Khirnov <anton@khirnov.net>
2011-02-21lavfi: put color source in a dedicated fileStefano Sabatini
Move the color source code from vf_pad.c to vsrc_color.c. Signed-off-by: Mans Rullgard <mans@mansr.com>
2011-02-21lavfi: add drawutilsStefano Sabatini
Add drawutils.h and drawutils.c, and use them in the pad filter. The new functions are going to be shared by other filters. Signed-off-by: Mans Rullgard <mans@mansr.com>
2011-02-15Merge libavcore into libavutilReinhard Tartler
It is pretty hopeless that other considerable projects will adopt libavutil alone in other projects. Projects that need small footprint are better off with more specialized libraries such as gnulib or rather just copy the necessary parts that they need. With this in mind, nobody is helped by having libavutil and libavcore split. In order to ease maintenance inside and around FFmpeg and to reduce confusion where to put common code, avcore's functionality is merged (back) to avutil. Signed-off-by: Reinhard Tartler <siretart@tauware.de>
2011-02-08libavfilter: add video movie sourceStefano Sabatini
See thread: Subject: [PATCH] movie video source Date: 2010-12-31 15:35:30 GMT Signed-off-by: Janne Grunau <janne-ffmpeg@jannau.net>