summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* lavfi/drawbox: implement color=invert modeStefano Sabatini2012-10-313-3/+15
| | | | Based on a libmpcodecs/vf_rectangle.c feature.
* lavfi/mp: drop wrapped field filterStefano Sabatini2012-10-315-94/+1
| | | | The filter has been ported to a native libavfilter filter.
* lavfi: add field filterStefano Sabatini2012-10-319-2/+278
| | | | | | The filter is a port of libmpcodecs/vf_field.c, since there is no common code I relicensed it as LGPL, while keeping the original author copyright.
* av_get_audio_frame_duration: add IACPaul B Mahol2012-10-311-0/+1
| | | | Signed-off-by: Paul B Mahol <onemda@gmail.com>
* pix_fmt_info: add 9/10 bit YUVA formatsMichael Niedermayer2012-10-311-0/+36
| | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* tree-test: fix printf() typesMichael Niedermayer2012-10-311-2/+2
| | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* sws: fix handling of big endian alphaMichael Niedermayer2012-10-312-4/+8
| | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* doc/filters: fix typo in drawbox sectionStefano Sabatini2012-10-301-1/+1
|
* doc/filters: itemize examples for drawbox, add an example, fix grammarStefano Sabatini2012-10-301-4/+15
|
* lavfi/drawbox: extend syntax, accept named optionsStefano Sabatini2012-10-303-14/+46
|
* lavfi/tinterlace: remove poll_frame() callbackStefano Sabatini2012-10-301-19/+0
| | | | That interface is deprecated, and apparently useless.
* av_get_audio_frame_duration: add G723_1Paul B Mahol2012-10-301-0/+2
| | | | Signed-off-by: Paul B Mahol <onemda@gmail.com>
* lavfi: remove yuvcsp and yvu9 libmpcodecs wrappersPaul B Mahol2012-10-306-234/+1
| | | | | | Same functionality is provided by libswscale. Signed-off-by: Paul B Mahol <onemda@gmail.com>
* wavenc: fix curruption of metadataMichael Niedermayer2012-10-301-4/+5
| | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* fate: remove typo, reenable AC3 testsMichael Niedermayer2012-10-301-1/+1
| | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* av_get_audio_frame_duration: fix IMCMichael Niedermayer2012-10-301-1/+2
| | | | | Fixes Ticket1658 Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* lavc: const correctness for avpicture_fill()Paul B Mahol2012-10-302-2/+2
| | | | Signed-off-by: Paul B Mahol <onemda@gmail.com>
* lavfi/smartblur: add missing draw slice call.Clément Bœsch2012-10-301-2/+6
| | | | | This fixes output with filtergraphs such as 'split[a][b]; [a]pad=iw*2[src]; [b]smartblur=1:1:1[filt]; [src][filt]overlay=w'
* af_ashowinfo: integrate config_input() in filter_samples.Michael Niedermayer2012-10-301-12/+5
| | | | | | | This is simpler and also should allow the code to function when the channel number changes. Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* configure: fix print_config() with broke awksMans Rullgard2012-10-301-1/+1
| | | | | | | | Some awk versions do not treat the result of unary + on a (numeric) string as numeric, giving wrong results when used in a boolean context Using unary - instead is logically equivalent works as expected. Signed-off-by: Mans Rullgard <mans@mansr.com>
* swscale.c:remove fill_plane9or10() use fillPlane16()Michael Niedermayer2012-10-301-29/+4
| | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* sws: move fillPlane16() to header so it can be used from more than 1 placeMichael Niedermayer2012-10-302-20/+21
| | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* sws_unscaled: drop fill_plane9or10()Michael Niedermayer2012-10-301-35/+0
| | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* Change my GPG fingerprintTomas Härdin2012-10-301-1/+1
| | | | | | The old key expired Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* sws: fix BE/LE handling for fillPlane16()Michael Niedermayer2012-10-306-12/+18
| | | | | | Based on fill_plane9or10() by luca barbato Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* Merge remote-tracking branch 'qatar/master'Michael Niedermayer2012-10-3020-357/+1034
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * qatar/master: pixfmt: support more yuva formats swscale: support gray to 9bit and 10bit formats configure: rewrite print_config() function using awk FATE: fix (AD)PCM test dependencies broken in e519990 Use ptrdiff_t instead of int for intra pred "stride" function parameter. x86: use PRED4x4/8x8/8x8L/16x16 macros to declare intrapred prototypes. Conflicts: libavcodec/h264pred.c libavcodec/h264pred_template.c libavutil/pixfmt.h libswscale/swscale_unscaled.c tests/ref/lavfi/pixdesc tests/ref/lavfi/pixfmts_copy tests/ref/lavfi/pixfmts_null tests/ref/lavfi/pixfmts_scale tests/ref/lavfi/pixfmts_vflip Merged-by: Michael Niedermayer <michaelni@gmx.at>
| * pixfmt: support more yuva formatsLuca Barbato2012-10-3010-0/+417
| | | | | | | | Signed-off-by: Luca Barbato <lu_zero@gentoo.org>
| * swscale: support gray to 9bit and 10bit formatsLuca Barbato2012-10-302-4/+66
| | | | | | | | With the input of Kostya and Ronald.
| * configure: rewrite print_config() function using awkMans Rullgard2012-10-301-21/+19
| | | | | | | | | | | | | | This is much faster with slow shells and noticeably faster even with bash on a fast Linux system. Signed-off-by: Mans Rullgard <mans@mansr.com>
| * FATE: fix (AD)PCM test dependencies broken in e519990Anton Khirnov2012-10-301-2/+2
| | | | | | | | Signed-off-by: Diego Biurrun <diego@biurrun.de>
| * Use ptrdiff_t instead of int for intra pred "stride" function parameter.Ronald S. Bultje2012-10-295-117/+264
| | | | | | | | | | This way, SIMD-optimized functions don't have to sign-extend their stride argument manually to be able to do pointer arithmetic.
| * x86: use PRED4x4/8x8/8x8L/16x16 macros to declare intrapred prototypes.Ronald S. Bultje2012-10-292-186/+190
| |
* | lavfi: remove palette libmpcodecs wrapperPaul B Mahol2012-10-305-241/+1
| | | | | | | | | | | | The filter is useless, swscale should be used instead. Signed-off-by: Paul B Mahol <onemda@gmail.com>
* | ff: fix case where image does not have alpha channelPaul B Mahol2012-10-301-2/+10
| | | | | | | | Signed-off-by: Paul B Mahol <onemda@gmail.com>
* | Merge commit '08b028c18dc31b6de741861b9555669dcca4d12a'Michael Niedermayer2012-10-303-200/+208
|\ \ | |/ | | | | | | | | | | | | | | | | | | | | * commit '08b028c18dc31b6de741861b9555669dcca4d12a': Remove INIT_AVX from x86inc.asm. Remove usage of INIT_AVX in h264_intrapred_10bit.asm. dv: fix indentation Conflicts: libavformat/dv.c Merged-by: Michael Niedermayer <michaelni@gmx.at>
| * Remove INIT_AVX from x86inc.asm.Ronald S. Bultje2012-10-291-8/+0
| |
| * Remove usage of INIT_AVX in h264_intrapred_10bit.asm.Ronald S. Bultje2012-10-292-169/+177
| | | | | | | | | | | | | | Replace INIT_AVX by INIT_XMM avx. Port the whole file to use cpuflag based function declarations. Remove (now unused) cputype argument in function declaration macros. Change function prototypes to have mmx2 instead of mmxext as suffix, since that's required by cpuflags.
| * dv: fix indentationAnton Khirnov2012-10-291-30/+30
| |
* | Merge commit '14f031d7ecfabba0ef02776d4516aa3dcb7c40d8'Michael Niedermayer2012-10-3017-79/+522
|\ \ | |/ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * commit '14f031d7ecfabba0ef02776d4516aa3dcb7c40d8': dv: use AVStream.index instead of abusing AVStream.id lavfi: add ashowinfo filter avcodec: Add a RFC 3389 comfort noise codec lpc: Add a function for calculating reflection coefficients from samples lpc: Add a function for calculating reflection coefficients from autocorrelation coefficients lavr: document upper bound on number of output samples. lavr: add general API usage doxy indeo3: remove duplicate capabilities line. fate: ac3: Add dependencies Conflicts: Changelog doc/filters.texi libavcodec/Makefile libavcodec/allcodecs.c libavcodec/avcodec.h libavcodec/codec_desc.c libavcodec/version.h libavfilter/Makefile libavfilter/af_ashowinfo.c libavfilter/allfilters.c libavfilter/version.h libavutil/avutil.h Merged-by: Michael Niedermayer <michaelni@gmx.at>
| * dv: use AVStream.index instead of abusing AVStream.idAnton Khirnov2012-10-291-1/+1
| |
| * lavfi: add ashowinfo filterAnton Khirnov2012-10-296-1/+181
| | | | | | | | | | | | It can be useful for debugging. Based on a patch by Stefano Sabatini <stefano.sabatini-lala@poste.it>
| * avcodec: Add a RFC 3389 comfort noise codecMartin Storsjö2012-10-298-1/+291
| | | | | | | | | | | | | | | | | | | | This isn't too useful as a normal codec, but can be used in voip style applications. The decoder updates the noise generator parameters when a packet is given to it for decoding, but if called with an empty packet, it generates more noise according to the last parameters. Signed-off-by: Martin Storsjö <martin@martin.st>
| * lpc: Add a function for calculating reflection coefficients from samplesMartin Storsjö2012-10-292-0/+15
| | | | | | | | Signed-off-by: Martin Storsjö <martin@martin.st>
| * lpc: Add a function for calculating reflection coefficients from ↵Justin Ruggles2012-10-291-0/+31
| | | | | | | | | | | | autocorrelation coefficients Signed-off-by: Martin Storsjö <martin@martin.st>
| * lavr: document upper bound on number of output samples.Anton Khirnov2012-10-291-0/+4
| | | | | | | | Signed-off-by: Anton Khirnov <anton@khirnov.net>
| * lavr: add general API usage doxyAnton Khirnov2012-10-292-0/+72
| | | | | | | | Signed-off-by: Anton Khirnov <anton@khirnov.net>
| * indeo3: remove duplicate capabilities line.Anton Khirnov2012-10-291-1/+0
| |
| * fate: ac3: Add dependenciesDiego Biurrun2012-10-291-7/+8
| |
* | Merge commit '381dc1a5ec0925b281c573457c413ae643567086'Michael Niedermayer2012-10-3011-24/+47
|\ \ | |/ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * commit '381dc1a5ec0925b281c573457c413ae643567086': fate: ac3: Place E-AC-3 tests and AC-3 tests in different groups fate: Add shorthands for acodec PCM and ADPCM tests avconv: Drop unused function argument from do_video_stats() cmdutils: Conditionally compile libswscale-related bits aacenc: Drop some unused function arguments rtsp: Avoid a cast when calling strtol nut: support textual data nutenc: verbosely report unsupported negative pts Conflicts: cmdutils.c ffmpeg.c libavformat/nut.c libavformat/nutenc.c Merged-by: Michael Niedermayer <michaelni@gmx.at>
| * fate: ac3: Place E-AC-3 tests and AC-3 tests in different groupsDiego Biurrun2012-10-291-9/+12
| |
OpenPOWER on IntegriCloud