summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* lavfi/noise: add missing emms_c()Paul B Mahol2013-04-251-0/+1
| | | | Signed-off-by: Paul B Mahol <onemda@gmail.com>
* lavfi/telecine: show time base change tooPaul B Mahol2013-04-251-0/+2
| | | | Signed-off-by: Paul B Mahol <onemda@gmail.com>
* dcaenc: updatePaul B Mahol2013-04-252-873/+807
| | | | | | | | Long story short: previous code was useless and was port of older dcaenc, this commit just "sync" with current dcaenc, hopefuly making this encoder more useful. Signed-off-by: Paul B Mahol <onemda@gmail.com>
* avcodec/pthread: use THREAD_SAFE_CALLBACKS() to simplifx more codeMichael Niedermayer2013-04-251-10/+2
| | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* avcodec/pthread: Make sure ff_thread_finish_setup() conditions matchMichael Niedermayer2013-04-251-6/+5
| | | | | | Prevents warning from being shown due to multiple calls. Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* vc1dec: drop mv_f_last, simplify codeMichael Niedermayer2013-04-252-14/+2
| | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* doc/filters: put vidstab filters documentation in a sensible orderStefano Sabatini2013-04-251-220/+217
|
* doc/filters: remove "q" constant docs for noise modeStefano Sabatini2013-04-251-2/+0
| | | | It was removed in 62447248f3e5eb95dbd9f123696321903d4d0921.
* doc: remove all-components.texi, include its content verbatimStefano Sabatini2013-04-255-35/+96
| | | | | | | | | | Force re-generation of the manuals when an included file is modified. The current dependency generation system is enable to track nested inclusions. The drawback is that the files will be generated even when there is no strict need (for example if filters.texi is modified, ffmpeg.1 is rebuilt), thus it trades a false negative with a false positive.
* Merge commit 'fc18cc44ebfae07da153dc782572e7ce2f6fe47d'Michael Niedermayer2013-04-253-32/+85
|\ | | | | | | | | | | | | | | | | | | | | | | * commit 'fc18cc44ebfae07da153dc782572e7ce2f6fe47d': fate: add CVFC1_Sony_C to h264 conformance tests doc/APIchanges: add missing hashes and dates Conflicts: doc/APIchanges tests/fate/h264.mak Merged-by: Michael Niedermayer <michaelni@gmx.at>
| * fate: add CVFC1_Sony_C to h264 conformance testsVittorio Giovara2013-04-242-0/+53
| | | | | | | | | | | | | | The sample is already included in the FATE suite, but is not tested because cropping wasn't fully supported before. Signed-off-by: Anton Khirnov <anton@khirnov.net>
| * doc/APIchanges: add missing hashes and datesAnton Khirnov2013-04-241-32/+32
| |
* | lavc: remove unused put_bits.h headersPaul B Mahol2013-04-244-4/+0
| | | | | | | | Signed-off-by: Paul B Mahol <onemda@gmail.com>
* | lavfi/subtitles: zero-init AVSubtitle.Clément Bœsch2013-04-251-1/+1
| | | | | | | | | | | | | | This avoids invalid free when the stream id doesn't match the packet stream index. Ticket #2501
* | Merge remote-tracking branch 'cigaes/master'Michael Niedermayer2013-04-246-9/+38
|\ \ | | | | | | | | | | | | | | | | | | | | | * cigaes/master: lavc: check decoded subtitles encoding. lavu: fix GET_UTF8 macro. Merged-by: Michael Niedermayer <michaelni@gmx.at>
| * | lavc: check decoded subtitles encoding.Nicolas George2013-04-244-7/+36
| | | | | | | | | | | | Address trac ticket #2431.
| * | lavu: fix GET_UTF8 macro.Nicolas George2013-04-242-2/+2
| | | | | | | | | | | | | | | Prevent 0xFE and 0xFF from being considered the start of non-standard 7-bytes sequences. No noticeable effect on speed.
* | | vc1dec: drop old use_ic code from vc1_b_mcMichael Niedermayer2013-04-241-13/+0
| | | | | | | | | | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | | vc1: use use_ic instead of shuffling mv_mode aroundMichael Niedermayer2013-04-241-10/+24
| | | | | | | | | | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | | vc1dec: Implement intensity compensation for vc1_interp_mc()Michael Niedermayer2013-04-241-1/+25
| | | | | | | | | | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | | vc1dec: redesign the intensity compensationMichael Niedermayer2013-04-243-37/+112
| | | | | | | | | | | | | | | | | | | | | | | | The existing implementation had little to do with VC1. This could be implemented by adjusting the reference frames ithemselfs but that would make frame multi-threading difficult. Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | | lavfi: add timeline support in {de,remove}logo.Clément Bœsch2013-04-242-0/+2
|/ / | | | | | | Both don't change anything in the context between frames.
* | lavfi: add vidstabutils.h to SKIPHEADERS.Clément Bœsch2013-04-241-0/+1
| | | | | | | | Fix checkheaders when vid.stab is not available.
* | lavfi/vidstabdetect: fix direct path.Clément Bœsch2013-04-241-22/+3
| | | | | | | | | | The frame must be writable if the show option is set, otherwise pass the frame unchanged.
* | lavfi/vidstab: remove mention of defaults for consistency with other filters.Clément Bœsch2013-04-242-17/+17
| |
* | lavfi/vidstab: make use of direct variable.Clément Bœsch2013-04-241-1/+1
| |
* | lavfi/vidstab: add missing flags for 2 options.Clément Bœsch2013-04-242-2/+2
| |
* | doc/filters: reword vidstab options intro.Clément Bœsch2013-04-241-4/+2
| |
* | lavfi/vidstab: consistent descriptions.Clément Bœsch2013-04-242-6/+6
| |
* | lavfi/vidstab: miscelenaous cosmetics and typo fixes.Clément Bœsch2013-04-243-71/+68
| |
* | lavfi: add video stabilization plugins using vid.stab libraryGeorg Martius2013-04-2410-0/+888
| | | | | | | | | | | | | | vidstabdetect and vidstabtransform common functions for interfacing vid.stab are in libavfilter/vidstabutils.c Signed-off-by: Georg Martius <martius@mis.mpg.de>
* | doc/filters: amend documentation for the hue filterStefano Sabatini2013-04-241-3/+3
| | | | | | | | Make clear that the options accept an expression.
* | doc/filters: introduce example in vflip filterStefano Sabatini2013-04-241-0/+1
| |
* | doc/filters: split luma/chroma descriptions for unsharp optionStefano Sabatini2013-04-241-10/+23
| | | | | | | | | | Honour declaration order in filter implementation, for shorthand consistency.
* | MAINTAINERS: add jpeg2000 maintainerNicolas Bertrand2013-04-241-0/+2
| | | | | | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | vc1: make INIT_LUT() self containedMichael Niedermayer2013-04-241-4/+4
| | | | | | | | | | | | factorize variable declarations Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | vc1dec: fix current ptr selection in vc1_mc_4mv_chroma()Michael Niedermayer2013-04-241-1/+1
| | | | | | | | | | | | No sample tried shows a difference Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | vc1dec: factorize picture pointer selection in vc1_mc_4mv_chroma()Michael Niedermayer2013-04-241-8/+3
| | | | | | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | vc1dec: factorize picture pointer selection codeMichael Niedermayer2013-04-241-26/+11
| | | | | | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | vc1dec: Fix mv_f shufflingMichael Niedermayer2013-04-241-15/+11
| | | | | | | | | | | | | | | | | | Avoid a (confusing) memcpy() Simpler code Fixes a small number of artifacts in black_screen_VC-1.mkv and several more artifacts in other videos Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | vc1dec: Fix mv_f shufflingMichael Niedermayer2013-04-241-0/+2
| | | | | | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | vc1: simplify code use INIT_LUT()Michael Niedermayer2013-04-241-35/+20
| | | | | | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | Merge remote-tracking branch 'qatar/master'Michael Niedermayer2013-04-242-197/+5
|\ \ | |/ | | | | | | | | | | * qatar/master: x86: Get rid of duplication between *_rnd_template.c Merged-by: Michael Niedermayer <michaelni@gmx.at>
| * x86: Get rid of duplication between *_rnd_template.cMartin Storsjö2013-04-232-197/+5
| | | | | | | | Signed-off-by: Martin Storsjö <martin@martin.st>
* | Merge commit 'feec9349d35b3a46d0c6a05e3b23626050b76a77'Michael Niedermayer2013-04-241-0/+4
|\ \ | |/ | | | | | | | | | | * commit 'feec9349d35b3a46d0c6a05e3b23626050b76a77': mpegvideo: unref cur/next/prev frames when flushing Merged-by: Michael Niedermayer <michaelni@gmx.at>
| * mpegvideo: unref cur/next/prev frames when flushingHendrik Leppkes2013-04-231-0/+4
| | | | | | | | Signed-off-by: Anton Khirnov <anton@khirnov.net>
* | Merge commit '6a8561dbd7c078eb75985f7011ad1ad3fda9e223'Michael Niedermayer2013-04-243-130/+76
|\ \ | |/ | | | | | | | | | | * commit '6a8561dbd7c078eb75985f7011ad1ad3fda9e223': x86: Factorize duplicated inline assembly snippets Merged-by: Michael Niedermayer <michaelni@gmx.at>
| * x86: Factorize duplicated inline assembly snippetsMartin Storsjö2013-04-233-130/+76
| | | | | | | | Signed-off-by: Diego Biurrun <diego@biurrun.de>
* | Merge commit '2e2d24667a2c5cc7af94cfa7b63bb9ec1c04224b'Michael Niedermayer2013-04-241-2/+5
|\ \ | |/ | | | | | | | | | | * commit '2e2d24667a2c5cc7af94cfa7b63bb9ec1c04224b': jpeg2000: Add mutlti-threading support to decoder Merged-by: Michael Niedermayer <michaelni@gmx.at>
| * jpeg2000: Add mutlti-threading support to decoderNicolas Bertrand2013-04-231-2/+5
| | | | | | | | Signed-off-by: Diego Biurrun <diego@biurrun.de>
OpenPOWER on IntegriCloud