summaryrefslogtreecommitdiffstats
path: root/libavfilter
Commit message (Collapse)AuthorAgeFilesLines
* vf_yadif: add support to yuva420pStefano Sabatini2011-09-211-1/+2
| | | | Signed-off-by: Anton Khirnov <anton@khirnov.net>
* vf_yadif: correct documentation on the parity parameterStefano Sabatini2011-09-211-2/+2
| | | | | | | 0 is top-field-first, 1 is bottom-field-first, not the other way around. Signed-off-by: Anton Khirnov <anton@khirnov.net>
* vf_yadif: copy buffer properties like aspect for second frame as wellJoakim Plate2011-09-211-1/+4
| | | | Signed-off-by: Anton Khirnov <anton@khirnov.net>
* vf_yadif: add an option to enable/disable deinterlacing based on src frame ↵Joakim Plate2011-09-191-2/+26
| | | | | | | "interlaced" flag Signed-off-by: Joakim Plate <elupus@ecce.se> Signed-off-by: Anton Khirnov <anton@khirnov.net>
* vsrc_color: set output pos values to -1Stefano Sabatini2011-09-191-1/+1
| | | | | | -1 is more correct than 0, as the position in the file is undefined. Signed-off-by: Anton Khirnov <anton@khirnov.net>
* vsrc_color: add @file doxyStefano Sabatini2011-09-192-1/+6
| | | | | | Also remove outdated reference to color in vf_pad.c. Signed-off-by: Anton Khirnov <anton@khirnov.net>
* vsrc_buffer: remove duplicated file descriptionStefano Sabatini2011-09-191-1/+0
| | | | Signed-off-by: Anton Khirnov <anton@khirnov.net>
* lavfi: add select filterStefano Sabatini2011-09-174-1/+356
| | | | Signed-off-by: Anton Khirnov <anton@khirnov.net>
* lavfi: add split filter from soc.Bobby Bingham2011-09-124-1/+69
| | | | | | | Some fixes by Stefano. For detailed authorship see SOC repo Signed-off-by: Anton Khirnov <anton@khirnov.net>
* lavfi: add showinfo filterStefano Sabatini2011-09-124-1/+101
| | | | Signed-off-by: Anton Khirnov <anton@khirnov.net>
* AVOptions: deprecate av_opt_set_defaults2Anton Khirnov2011-09-072-2/+2
| | | | | | It's a hack which was created to allow for multiple options with different defaults to refer to same field (e.g. 'b' vs 'ab'). There is no need for it anymore.
* vf_scale: don't leak SWS context.Michael Niedermayer2011-08-271-0/+2
| | | | Signed-off-by: Anton Khirnov <anton@khirnov.net>
* doxygen: fix wrong comment syntax, //< vs. ///<Diego Biurrun2011-08-261-1/+1
|
* vf_libopencv: replace opencv/cxtypes.h #include by opencv/cxcore.hStefano Sabatini2011-07-181-1/+1
| | | | | | cxtypes.h works with version 2.1 and older, cxcore.h works with 2.2 and older. Signed-off-by: Diego Biurrun <diego@biurrun.de>
* doxygen: Make sure parameter names match between .c and .h files.Diego Biurrun2011-07-141-0/+2
|
* build: rework rules for things in the tools dirMans Rullgard2011-07-101-0/+2
| | | | | | | | 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>
* lavf: add avformat_find_stream_info()Anton Khirnov2011-07-101-1/+1
| | | | It supports passing options to codecs.
* lavc: introduce avcodec_open2() as a replacement for avcodec_open().Anton Khirnov2011-07-101-1/+1
| | | | | Adds support for decoder-private options and makes setting other options simpler.
* vf_drawtext: Remove some write-only variables.Diego Biurrun2011-07-071-15/+2
| | | | | libavfilter/vf_drawtext.c:427:22: warning: variable 'dst_pixel' set but not used libavfilter/vf_drawtext.c:463:22: warning: variable 'dst_pixel' set but not used
* Add some missing mathematics.h #includes for av_rescale().Diego Biurrun2011-07-051-0/+1
|
* vf_gradfun: relicense x86 asm to LGPLLoren Merritt2011-07-041-9/+11
| | | | | Actually I gave permission for LGPL long ago, but the original import failed to update the license header.
* Do not include log.h in avutil.hMans Rullgard2011-07-031-0/+1
| | | | Signed-off-by: Mans Rullgard <mans@mansr.com>
* Do not include pixfmt.h in avutil.hMans Rullgard2011-07-031-0/+1
| | | | Signed-off-by: Mans Rullgard <mans@mansr.com>
* Do not include rational.h in avutil.hMans Rullgard2011-07-031-0/+1
| | | | Signed-off-by: Mans Rullgard <mans@mansr.com>
* Do not include mathematics.h in avutil.hMans Rullgard2011-07-039-0/+9
| | | | Signed-off-by: Mans Rullgard <mans@mansr.com>
* doxygen: Fix parameter names to match the function prototypes.Diego Biurrun2011-07-031-1/+1
|
* build: include sub-makefiles using full path instead of symlinksMans Rullgard2011-06-281-2/+2
| | | | Signed-off-by: Mans Rullgard <mans@mansr.com>
* build: Remove redundant config.mak includes from subdirectory Makefiles.Diego Biurrun2011-06-251-2/+0
| | | | | Calling Make from subdirectories is not supported and config.mak has multiple inclusion guards anyway, so the top-level include is enough.
* Replace usages of av_get_bits_per_sample_fmt() with av_get_bytes_per_sample().Justin Ruggles2011-06-201-1/+1
| | | | av_get_bits_per_sample_fmt() is deprecated.
* ocv: replace FF_INTERNAL_MEM_TYPE_MAX_VALUE with SIZE_MAXStefano Sabatini2011-06-201-1/+1
| | | | | | | Fix compilatin after removal of FF_INTERNAL_MEM_TYPE_MAX_VALUE. Signed-off-by: Stefano Sabatini <stefano.sabatini-lala@poste.it> Signed-off-by: Anton Khirnov <anton@khirnov.net>
* drawtext: add braces around initialisers for option defaultsStefano Sabatini2011-06-201-29/+29
| | | | | | | | Fix warnings of the type: vf_drawtext.c:NNN: warning: missing braces around initializer vf_drawtext.c:NNN: warning: (near initialization for ‘drawtext_options[X].default_val’) Signed-off-by: Anton Khirnov <anton@khirnov.net>
* drawtext: reindent after the previous commitStefano Sabatini2011-06-201-20/+20
| | | | Signed-off-by: Anton Khirnov <anton@khirnov.net>
* drawtext: fix strftime() text expansionStefano Sabatini2011-06-201-18/+27
| | | | | | | The feature was dropped after the filter was partially rewritten and recommitted. Signed-off-by: Anton Khirnov <anton@khirnov.net>
* Deprecate av_open_input_* and remove their uses.Anton Khirnov2011-06-161-2/+2
| | | | Deprecate the last remaining member of AVFormatParameters.
* Remove unused variablesMans Rullgard2011-06-021-2/+1
|
* Employ correct printf format specifiers, mostly in debug output.Diego Biurrun2011-05-311-1/+1
|
* vf_drawtext: Replace FFmpeg by Libav in license boilerplate.Diego Biurrun2011-05-311-4/+4
|
* avfilter: Surround function only used in debug mode by appropriate #ifdef.Diego Biurrun2011-05-291-0/+2
| | | | | This fixes the warning: libavfilter/avfilter.c:219: warning: ‘ff_get_ref_perms_string’ defined but not used
* vf_crop: Replace #ifdef DEBUG + av_log() by av_dlog().Diego Biurrun2011-05-291-5/+3
|
* vsrc_buffer.h: add file doxyStefano Sabatini2011-05-241-0/+5
| | | | | Signed-off-by: Stefano Sabatini <stefano.sabatini-lala@poste.it> Signed-off-by: Anton Khirnov <anton@khirnov.net>
* vsrc_buffer: tweak error message in init()Stefano Sabatini2011-05-241-1/+1
| | | | | | | | | | | | Change: Expected 7 arguments, but only %d found in '%s'\n to: Expected 7 arguments, but %d found in '%s'\n as the user may provide more than 7 arguments, in that case the error is not misleading. Signed-off-by: Anton Khirnov <anton@khirnov.net>
* multiple inclusion guard cleanupDiego Biurrun2011-05-214-3/+7
| | | | | Add missing multiple inclusion guards; clean up #endif comments; add missing library prefixes; keep guard names consistent.
* lavfi: print key-frame and picture type information in ff_dlog_ref()Stefano Sabatini2011-05-161-2/+4
| | | | | Signed-off-by: Stefano Sabatini <stefano.sabatini-lala@poste.it> (cherry picked from commit f7bdffb09da597c5d6afff5359523370470ad072)
* AVOptions: make default_val a union, as proposed in AVOption2.Anton Khirnov2011-05-101-6/+6
| | | | This breaks API and ABI.
* drawtext: add shadow support.Michael Niedermayer2011-05-071-6/+33
| | | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at> Signed-off-by: Anton Khirnov <anton@khirnov.net>
* drawtext: factor draw_glyphs.Michael Niedermayer2011-05-071-27/+41
| | | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at> Signed-off-by: Anton Khirnov <anton@khirnov.net>
* drawtext: fix and optimize yuv blend.Michael Niedermayer2011-05-071-4/+6
| | | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at> Signed-off-by: Anton Khirnov <anton@khirnov.net>
* drawtext: get rid of divisions in the inner loop.Michael Niedermayer2011-05-071-8/+8
| | | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at> Signed-off-by: Anton Khirnov <anton@khirnov.net>
* drawtext: simplify chroma blend and fix chroma alpha.Michael Niedermayer2011-05-071-3/+2
| | | | Signed-off-by: Anton Khirnov <anton@khirnov.net>
* lavfi: Port drawtext filter by Hemanth from the libavfilter soc repoStefano Sabatini2011-05-074-2/+676
| | | | | | | | | | | 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>
OpenPOWER on IntegriCloud