summaryrefslogtreecommitdiff
path: root/tests/fate/acodec.mak
Commit message (Collapse)AuthorAge
* tests/Makefile: Redo how to keep intermediate FATE-filesAndreas Rheinhardt2022-05-06
| | | | | | | | | Extend the ordinary mechanism to signal KEEP for this. This also allows to remove the keep-parameter from enc_dec, transcode and stream_remux, so that several empty parameters '""' could be removed. Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
* fate/acodec: Remove acodec-adpcm-adx-trellis testAndreas Rheinhardt2022-04-28
| | | | | | | adx ignores the trellis option, making this test identical to acodec-adpcm-adx. Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
* fate/acodec: Fix test requirementsAndreas Rheinhardt2022-04-28
| | | | | | | | This automatically fixes the requirements of the fate-seek-acodec* tests (e.g. 16 of the 27 such tests are now automatically disabled if the aresample filter is disabled). Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
* fate: add adpcm_ima_ws testZane van Iperen2021-04-26
| | | | Signed-off-by: Zane van Iperen <zane@zanevaniperen.com>
* tests/fate: Don't keep unnecessary temp filesAndreas Rheinhardt2021-03-05
| | | | | | | | | | | | | Some FATE tests use files created by other FATE tests as input files; this mostly affects the seek tests which use files from vsynth_lena as well as acodec-pcm as input files. In order to make this possible the temporary files of all the vsynth* and all acodec-pcm tests are kept. Yet only a fraction of these files are actually used. This commit changes this to only keep the files that are actually needed for other tests. This reduces the size of the tests/data/fate folder after a full FATE run from 2024727441B to 138739312B. Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
* fate: add adpcm_ima_alp encoding testZane van Iperen2020-10-25
|
* fate: add test for adpcm_swf in wavZane van Iperen2020-10-21
| | | | Signed-off-by: Zane van Iperen <zane@zanevaniperen.com>
* fate: disable automatic conversions on many tests.Nicolas George2020-09-08
| | | | | | | | | | Explicitly insert the scale or aresample filter where it would have been inserted by the negotiation. Re-enable conversions if it cannot be done easily. If a conversion is needed in a test, we want to know about it. If the negotiation changes and makes new conversion necessary, we want to know about it even more.
* fate: cosmeticsZane van Iperen2020-08-07
| | | | Signed-off-by: Zane van Iperen <zane@zanevaniperen.com>
* fate: add adpcm_argo testZane van Iperen2020-08-07
| | | | Signed-off-by: Zane van Iperen <zane@zanevaniperen.com>
* fate: add adpcm_ima_apm encoding testZane van Iperen2020-07-21
| | | | Signed-off-by: Zane van Iperen <zane@zanevaniperen.com>
* fate: add adpcm_ima_ssi encoding testZane van Iperen2020-06-01
| | | | | Signed-off-by: Zane van Iperen <zane@zanevaniperen.com> Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
* avcodec/dcaenc: Use ffmpeg mdct instead of own implementationDaniil Cherednik2018-01-13
| | | | Signed-off-by: Daniil Cherednik <dan.cherednik@gmail.com>
* dcaenc: Implementation of Huffman codes for DCA encoderDaniil Cherednik2017-01-15
| | | | Reviewed-by: Rostislav Pehlivanov <atomnuker@gmail.com>
* avformat: add a TTA MuxerJames Almer2016-08-04
| | | | | Reviewed-by: Michael Niedermayer <michael@niedermayer.cc> Signed-off-by: James Almer <jamrial@gmail.com>
* avcodec/dca: add new decoder based on libdcadecfoo862016-01-31
|
* avcodec/dca: remove old decoderfoo862016-01-31
| | | | | Remove all files and functions which are not going to be reused, and disable all functions and FATE tests temporarily which will be.
* avcodec/dcaenc: return correct number of bytes in output packetPaul B Mahol2016-01-25
| | | | Signed-off-by: Paul B Mahol <onemda@gmail.com>
* fate: explicitly specify audio bitrate for adpcm/mp2fixed tests.Ronald S. Bultje2015-08-17
| | | | | They picked up defaults, which changes from 128 to 200 when we remove FF_API_OLD_AVOPTIONS.
* avcodec/dcaenc: clear bitstream endMichael Niedermayer2015-08-04
| | | | | | This avoids leaving uninitialized bits in the output Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
* fate: Add test for -exact_rice_parameters 1Michael Niedermayer2015-05-19
|
* fate: add tta encoder testJames Almer2015-04-13
| | | | | Signed-off-by: James Almer <jamrial@gmail.com> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* tests/fate: Add S302M testMichael Niedermayer2015-03-02
| | | | | Reviewed-by: Reimar Döffinger <Reimar.Doeffinger@gmx.de> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* fate: add wavpack encoderPaul B Mahol2015-02-13
| | | | Signed-off-by: Paul B Mahol <onemda@gmail.com>
* fate: enable adpcm-ima_qt-trellisMichael Niedermayer2014-06-06
| | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* tests: add adpcm trellis testsTimothy Gu2014-06-05
| | | | | | | | adpcm_ima_qt does not produce reproducible results, so it is temporarily disabled (see #3701). Signed-off-by: Timothy Gu <timothygu99@gmail.com> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* fate: force 128kb/sec for mp2 testMichael Niedermayer2014-04-15
| | | | | | This fixes rounding differences between platforms Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* avcodec: split mp2 encoder into float and fixedMichael Niedermayer2013-12-03
| | | | | | | | | | This makes the USE_FLOATS == 0 available to the end user More float optimizations can easily be added as well now common code should be factored out into a common file once all fixed point & floating point optimizations are done, this is to avoid having to move code back and forth between files. Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* fate: re-enable fate-acodec-dca2Michael Niedermayer2013-04-25
| | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* fate: update dca test and disable dca2 testPaul B Mahol2013-04-25
| | | | Signed-off-by: Paul B Mahol <onemda@gmail.com>
* Merge commit 'e816034a5fa131b13c4ad87bb0b5065b4f5697c6'Michael Niedermayer2012-12-03
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | * commit 'e816034a5fa131b13c4ad87bb0b5065b4f5697c6': fate-seek: remove use of gnu make 3.82 only private modifier fate: move vsynth reference files to their own directory fate: move fate-acodec reference files to their own dir configure: avplay now depends on avresample fate: split dependencies for fate-seek tests Conflicts: configure tests/fate/seek.mak Merged-by: Michael Niedermayer <michaelni@gmx.at>
| * fate: move fate-acodec reference files to their own dirJanne Grunau2012-12-03
| |
| * FATE: fix (AD)PCM test dependencies broken in e519990Anton Khirnov2012-10-30
| | | | | | | | Signed-off-by: Diego Biurrun <diego@biurrun.de>
* | fate: increase pcm coveragePaul B Mahol2012-11-20
| | | | | | | | Signed-off-by: Paul B Mahol <onemda@gmail.com>
* | Merge commit '381dc1a5ec0925b281c573457c413ae643567086'Michael Niedermayer2012-10-30
|\| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * 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: Add shorthands for acodec PCM and ADPCM testsDiego Biurrun2012-10-29
| |
* | fate: dependencies for ffmpeg acodec testsMichael Niedermayer2012-10-18
| | | | | | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | Merge commit '292d1e78743855404c7d07e3e7cb3f9c9ae6275b'Michael Niedermayer2012-10-18
|\| | | | | | | | | | | | | | | | | | | | | | | | | | | * commit '292d1e78743855404c7d07e3e7cb3f9c9ae6275b': fate: dependencies for acodec tests fate: dependencies for vsynth tests fate: add macros useful for conditionally enabling things libmp3lame: resize the output buffer if needed Conflicts: tests/fate/acodec.mak tests/fate/vcodec.mak Merged-by: Michael Niedermayer <michaelni@gmx.at>
| * fate: dependencies for acodec testsMans Rullgard2012-10-17
| | | | | | | | Signed-off-by: Mans Rullgard <mans@mansr.com>
* | fate: Try to fix source path for fate-acodec-dcaMichael Niedermayer2012-06-25
| | | | | | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | fate-acodec-dca2: add bitexact flagMichael Niedermayer2012-06-10
| | | | | | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | fate: only check stddev for acodec-ra144Michael Niedermayer2012-06-01
| | | | | | | | | | | | | | ra144 uses floats so bitexactness cannot be guranteed This should fix a long standing issue with icc Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | fate: fix long standing bug in the g723_1 testMichael Niedermayer2012-05-30
| | | | | | | | | | | | The test compared files of mismatching sample rate Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | fate: add a fate-acodec-dca test that works on all platforms second tryMichael Niedermayer2012-05-30
| | | | | | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | fate: disable fate-acodec-dcaMichael Niedermayer2012-05-30
| | | | | | | | | | | | | | the new test doesnt work on all platforms, thus disable it until a better solution is found. the dca2 test remains and provides partial testing until this is resolved Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | fate: resurrect acodec-dcaMichael Niedermayer2012-05-30
| | | | | | | | | | | | | | This was lost in todays merge Ideas to do this less ugly are welcome! Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | Merge commit 'f919cc7df6ab844bc12f89fe7bef4fb915a47725'Michael Niedermayer2012-05-30
|/ | | | | | | | | | | | | | | | * commit 'f919cc7df6ab844bc12f89fe7bef4fb915a47725': fate: fix acodec/vsynth tests for make 3.81 pcm_mpeg: fix number of consumed bytes to include the header. avfilter: include required header file avfilter.h in video.h x86: Avoid movs on BUTTERFLYPS when in AVX mode x86: use new schema for ASM macros fate: convert codec-regression.sh to makefile rules fate: allow tests to specify unit size for psnr comparison fate: teach videogen/rotozoom to output a single raw video stream http: Add support for reusing the http socket for subsequent requests http: Add support for using persistent connections Merged-by: Michael Niedermayer <michaelni@gmx.at>
* fate: fix acodec/vsynth tests for make 3.81Mans Rullgard2012-05-29
| | | | | | | | | GNU make 3.81 applies pattern rules in declaration order rather than by stem length as in 3.82. This moves the more generic patterns above the more specific ones such that they work with either make version. Some of the vsynth patterns are also simplified a little. Signed-off-by: Mans Rullgard <mans@mansr.com>
* fate: convert codec-regression.sh to makefile rulesMans Rullgard2012-05-29
Signed-off-by: Mans Rullgard <mans@mansr.com>