summaryrefslogtreecommitdiff
path: root/tests
Commit message (Collapse)AuthorAge
* swscale: add support for P010LE/BE outputTimo Rothenpieler2016-08-31
|
* avcodec/nvenc: include nvEncodeAPI v7 SDK headerTimo Rothenpieler2016-08-28
| | | | | | | | | | | | | As Nvidia has put the most recent Video Codec SDK behind a double registration wall, of which one needs manual approval of a lenghty application, bundling this header saves everyone trying to use NVENC from that headache. The header is still MIT licensed and thus fine to bundle with ffmpeg. Not bundling this header would get ffmpeg stuck at SDK v6, which is still freely available, holding back future development of the NVENC encoder.
* tests/audiomatch: Fix compile warningSteven Liu2016-08-25
| | | | | | | | | | | | | Making sure bestpos is initialized to zero to prevent gcc from kvetching. It's harmless (although it's not obvious that it's harmless) from code inspection: tests/audiomatch.c: In function ‘main’: tests/audiomatch.c:40: warning: ‘bestpos’ may be used uninitialized in this function Thanks to Moritz Barsnick for first bringing this to the attention. Signed-off-by: LiuQi <liuqi@gosun.com> Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
* fate: add test for af_hdcd analyze modeBurt P2016-08-24
| | | | Signed-off-by: Burt P <pburt0@gmail.com>
* avfilter/vf_lut: add planar RGB supportPaul B Mahol2016-08-24
|
* fate: update for gbrap after 61980dc479ce045d2e280bff0ba2118ccb8ce595Paul B Mahol2016-08-24
|
* swscale/output: Fix rounding offset in yuv2gbrp_full_X_c()Michael Niedermayer2016-08-23
| | | | Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
* avformat/fifo: Add fate testJan Sebechlebsky2016-08-22
| | | | | | Tested-by: Michael Niedermayer <michael@niedermayer.cc> Signed-off-by: Jan Sebechlebsky <sebechlebskyjan@gmail.com> Signed-off-by: Marton Balint <cus@passwd.hu>
* tests/fate/vcodec: add dnxhr mov testsMark Reid2016-08-22
| | | | Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
* fate: add DNxHR 12-bit example.Steven Robertson2016-08-21
| | | | | Signed-off-by: Steven Robertson <steven@strobe.cc> Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
* fate: Add RGB48 FFV1 testMichael Niedermayer2016-08-16
| | | | Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
* fate: add test for compand filterPetru Rares Sincraian2016-08-12
| | | | Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
* tests/fate/vcodec: add dnxhr edge testsMark Reid2016-08-12
| | | | Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
* checkasm: h264dsp: Initialize the padding areaMartin Storsjö2016-08-11
| | | | | | | | | This fixes valgrind warnings about conditional jumps based on uninitialized data (even though the uninitialized data only ever was compared with a direct copy of the same uninitialized data). Signed-off-by: Martin Storsjö <martin@martin.st> Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
* avformat: add a TTA MuxerJames Almer2016-08-04
| | | | | Reviewed-by: Michael Niedermayer <michael@niedermayer.cc> Signed-off-by: James Almer <jamrial@gmail.com>
* fate: add test for tremolo filterPetru Rares Sincraian2016-08-02
| | | | Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
* libavformat/matroskadec: Add test for seeking with codec delay.Chris Cunningham2016-07-30
| | | | | | Also cleanup parens for the skip_to_timecode check. Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
* fate: add test for stereotools filterPetru Rares Sincraian2016-07-29
| | | | Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
* fate: add test for silenceremove filterPetru Rares Sincraian2016-07-29
| | | | Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
* fate: Add HDCD filter tests for false positive and error detectionBurt P2016-07-27
| | | | | Signed-off-by: Burt P <pburt0@gmail.com> Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
* checkasm/vp9dsp: use declare_func_emms in check_loopfilterJames Almer2016-07-26
| | | | | | Fixes checkasm failures on mmxext functions Signed-off-by: James Almer <jamrial@gmail.com>
* tests/fate: add dnxhr encoding testsMark Reid2016-07-24
| | | | | | added sws_flags flags and tested against x86_32 Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
* tests/fate/filter-audio: fate-filter-chorus: Randomly change parameters to ↵Michael Niedermayer2016-07-24
| | | | | | | | | | some values which pass on arm/mips/x86-32/64 If this still doesnt give the same results on all platforms then this should be disabled Found-by: James Almer <jamrial@gmail.com> Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
* tests/fate/dnxhd: add dnxhr prefix testsMark Reid2016-07-23
| | | | | | | | | | | | | | The data offset value in the prefix increases as the heights increases. This test adds a tests for some common dnxhr heights. can somebody add the following test footage to fate/dnxhd? https://dl.dropboxusercontent.com/u/170952/fate/dnxhd/prefix-256x1536.dnxhr https://dl.dropboxusercontent.com/u/170952/fate/dnxhd/prefix-256x1716.dnxhr https://dl.dropboxusercontent.com/u/170952/fate/dnxhd/prefix-256x2048.dnxhr https://dl.dropboxusercontent.com/u/170952/fate/dnxhd/prefix-256x2160.dnxhr https://dl.dropboxusercontent.com/u/170952/fate/dnxhd/prefix-256x3212.dnxhr Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
* fate: add test for extrastereo filterPetru Rares Sincraian2016-07-22
| | | | Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
* avformat/oggenc: add vp8 muxing supportJames Almer2016-07-20
| | | | | | Addresses ticket #5687 Signed-off-by: James Almer <jamrial@gmail.com>
* fate: add test for earwax filterPetru Rares Sincraian2016-07-20
| | | | Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
* fate: add test for dcshift filterPetru Rares Sincraian2016-07-20
| | | | Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
* fate: add test for chorus filterPetru Rares Sincraian2016-07-20
| | | | Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
* fate: add test for avfftPetru Rares Sincraian2016-07-19
| | | | Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
* avcodec/ccaption_dec: implement positioning for closed captionsAman Gupta2016-07-18
| | | | | | Positioning math is based on the guidelines in https://dvcs.w3.org/hg/text-tracks/raw-file/default/608toVTT/608toVTT.html#positioning-in-cea-608 Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
* fate: fix apng tests dependenciesJames Almer2016-07-16
| | | | Signed-off-by: James Almer <jamrial@gmail.com>
* Merge commit '523c4c5b70994f5cd1f192b68d07cf24b292ca05'Clément Bœsch2016-07-14
|\ | | | | | | | | | | | | * commit '523c4c5b70994f5cd1f192b68d07cf24b292ca05': fate: Add TrueMotion 2 RT tests Merged-by: Clément Bœsch <u@pkh.me>
| * fate: Add TrueMotion 2 RT testsVittorio Giovara2016-06-20
| |
* | Merge commit '906ffed9b1b8b06979eb656989aecacb1ae75a3a'Clément Bœsch2016-07-14
|\| | | | | | | | | | | | | * commit '906ffed9b1b8b06979eb656989aecacb1ae75a3a': fate: Move Duck Truemotion 1 and 2 tests to vpx.mak Merged-by: Clément Bœsch <u@pkh.me>
| * fate: Move Duck Truemotion 1 and 2 tests to vpx.makVittorio Giovara2016-06-20
| |
* | fate/video: use FATE_VIDEO instead of FATE_SAMPLES_AVCONVClément Bœsch2016-07-14
| | | | | | | | Consistent with the rest of the rules
* | Merge commit 'cc58656aca95b5ab517989a9524b9a2b1c5653cf'Clément Bœsch2016-07-14
|\| | | | | | | | | | | | | * commit 'cc58656aca95b5ab517989a9524b9a2b1c5653cf': fate: Add tests for MagicYUV Merged-by: Clément Bœsch <u@pkh.me>
| * fate: Add tests for MagicYUVVittorio Giovara2016-06-20
| |
* | fate: fix fate-vp8 dependenciesJames Almer2016-07-13
| | | | | | | | | | | | | | | | Fix the demuxer dependencies in some of the tests and remove the vp8 decoder dependency for the stream copy tests Reviewed-by: Hendrik Leppkes <h.leppkes@gmail.com> Signed-off-by: James Almer <jamrial@gmail.com>
* | Merge commit '105998fb5ca3c343f5c8cb39ce3197f87a5e4d36'Matthieu Bouron2016-07-13
|\| | | | | | | | | | | | | * commit '105998fb5ca3c343f5c8cb39ce3197f87a5e4d36': checkasm: Add tests for h264 idct Merged-by: Matthieu Bouron <matthieu.bouron@stupeflix.com>
| * checkasm: Add tests for h264 idctMartin Storsjö2016-06-17
| | | | | | | | | | | | | | The tests are inspired by similar tests for vp9 by Ronald Bultje. Signed-off-by: Martin Storsjö <martin@martin.st>
* | tests/checkasm: reduce cosmetic diff with libavMatthieu Bouron2016-07-13
| | | | | | | | Chunk was not merged in ca5ec2bf51d8c4f8bb0a829d0a65c70c968888a3.
* | fate: add test for asetratePetru Rares Sincraian2016-07-06
| | | | | | | | Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
* | fate/apng : add test for apng decodingMartin Vignali2016-07-05
| | | | | | | | Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
* | fate/png : add test for rgba64 and interleaved rgbMartin Vignali2016-07-05
| | | | | | | | Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
* | avfilter/vf_rotate: add >8 bit depth supportPaul B Mahol2016-07-04
| | | | | | | | Signed-off-by: Paul B Mahol <onemda@gmail.com>
* | tests/checkasm/pixblockdsp: Test 8 byte aligned positionsMichael Niedermayer2016-07-02
| | | | | | | | | | | | The code is documented as to require 8byte alignment Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
* | tests/fate: Add test for ticket 3386 ([H264] [Regression] illegal short term ↵Michael Niedermayer2016-07-02
| | | | | | | | | | | | buffer state detected) Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
* | fate/webp : add test for lossless picture to improve coverMartin Vignali2016-07-01
| | | | | | | | Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>