FFmpeg/tests/fate
Lynne 2d85e6e723
ac3enc_fixed: convert to 32-bit sample format
The AC3 encoder used to be a separate library called "Aften", which
got merged into libavcodec (literally, SVN commits and all).
The merge preserved as much features from the library as possible.

The code had two versions - a fixed point version and a floating
point version. FFmpeg had floating point DSP code used by other
codecs, the AC3 decoder including, so the floating-point DSP was
simply replaced with FFmpeg's own functions.
However, FFmpeg had no fixed-point audio code at that point. So
the encoder brought along its own fixed-point DSP functions,
including a fixed-point MDCT.

The fixed-point MDCT itself is trivially just a float MDCT with a
different type and each multiply being a fixed-point multiply.
So over time, it got refactored, and the FFT used for all other codecs
was templated.

Due to design decisions at the time, the fixed-point version of the
encoder operates at 16-bits of precision. Although convenient, this,
even at the time, was inadequate and inefficient. The encoder is noisy,
does not produce output comparable to the float encoder, and even
rings at higher frequencies due to the badly approximated winow function.

Enter MIPS (owned by Imagination Technologies at the time). They wanted
quick fixed-point decoding on their FPUless cores. So they contributed
patches to template the AC3 decoder so it had both a fixed-point
and a floating-point version. They also did the same for the AAC decoder.
They however, used 32-bit samples. Not 16-bits. And we did not have
32-bit fixed-point DSP functions, including an MDCT. But instead of
templating our MDCT to output 3 versions (float, 32-bit fixed and 16-bit fixed),
they simply copy-pasted their own MDCT into ours, and completely
ifdeffed our own MDCT code out if a 32-bit fixed point MDCT was selected.

This is also the status quo nowadays - 2 separate MDCTs, one which
produces floating point and 16-bit fixed point versions, and one
sort-of integrated which produces 32-bit MDCT.

MIPS weren't all that interested in encoding, so they left the encoder
as-is, and they didn't care much about the ifdeffery, mess or quality - it's
not their problem.

So the MDCT/FFT code has always been a thorn in anyone looking to clean up
code's eye.

Backstory over. Internally AC3 operates on 25-bit fixed-point coefficients.
So for the floating point version, the encoder simply runs the float MDCT,
and converts the resulting coefficients to 25-bit fixed-point, as AC3 is inherently
a fixed-point codec. For the fixed-point version, the input is 16-bit samples,
so to maximize precision the frame samples are analyzed and the highest set
bit is detected via ac3_max_msb_abs_int16(), and the coefficients are then
scaled up via ac3_lshift_int16(), so the input for the FFT is always at least 14 bits,
computed in normalize_samples(). After FFT, the coefficients are scaled up to 25 bits.

This patch simply changes the encoder to accept 32-bit samples, reusing
the already well-optimized 32-bit MDCT code, allowing us to clean up and drop
a large part of a very messy code of ours, as well as prepare for the future lavu/tx
conversion. The coefficients are simply scaled down to 25 bits during windowing,
skipping 2 separate scalings, as the hacks to extend precision are simply no longer
necessary. There's no point in running the MDCT always at 32 bits when you're
going to drop 6 bits off anyway, the headroom is plenty, and the MDCT rounds
properly.

This also makes the encoder even slightly more accurate over the float version,
as there's no coefficient conversion step necessary.

SIZE SAVINGS:
ARM32:
HARDCODED TABLES:
BASE           - 10709590
DROP  DSP      - 10702872 - diff:   -6.56KiB
DROP  MDCT     - 10667932 - diff:  -34.12KiB - both:   -40.68KiB
DROP  FFT      - 10336652 - diff: -323.52KiB - all:   -364.20KiB
SOFTCODED TABLES:
BASE           -  9685096
DROP  DSP      -  9678378 - diff:   -6.56KiB
DROP  MDCT     -  9643466 - diff:  -34.09KiB - both:   -40.65KiB
DROP  FFT      -  9573918 - diff:  -67.92KiB - all:   -108.57KiB

ARM64:
HARDCODED TABLES:
BASE           - 14641112
DROP  DSP      - 14633806 - diff:   -7.13KiB
DROP  MDCT     - 14604812 - diff:  -28.31KiB - both:   -35.45KiB
DROP  FFT      - 14286826 - diff: -310.53KiB - all:   -345.98KiB
SOFTCODED TABLES:
BASE           - 13636238
DROP  DSP      - 13628932 - diff:   -7.13KiB
DROP  MDCT     - 13599866 - diff:  -28.38KiB - both:   -35.52KiB
DROP  FFT      - 13542080 - diff:  -56.43KiB - all:    -91.95KiB

x86:
HARDCODED TABLES:
BASE           - 12367336
DROP  DSP      - 12354698 - diff:  -12.34KiB
DROP  MDCT     - 12331024 - diff:  -23.12KiB - both:   -35.46KiB
DROP  FFT      - 12029788 - diff: -294.18KiB - all:   -329.64KiB
SOFTCODED TABLES:
BASE           - 11358094
DROP  DSP      - 11345456 - diff:  -12.34KiB
DROP  MDCT     - 11321742 - diff:  -23.16KiB - both:   -35.50KiB
DROP  FFT      - 11276946 - diff:  -43.75KiB - all:    -79.25KiB

PERFORMANCE (10min random s32le):
ARM32 - before -  39.9x - 0m15.046s
ARM32 - after  -  28.2x - 0m21.525s
                       Speed:  -30%

ARM64 - before -  36.1x - 0m16.637s
ARM64 - after  -  36.0x - 0m16.727s
                       Speed: -0.5%

x86   - before - 184x -    0m3.277s
x86   - after  - 190x -    0m3.187s
                       Speed:   +3%
2021-01-14 01:44:12 +01:00
..
aac.mak fate/aac: add missing bitexact flag to some encoder tests 2020-08-03 09:50:17 -03:00
ac3.mak ac3enc_fixed: convert to 32-bit sample format 2021-01-14 01:44:12 +01:00
acodec.mak fate: add adpcm_ima_alp encoding test 2020-10-25 23:44:27 +10:00
adpcm.mak fate: disable automatic conversions on many tests. 2020-09-08 14:16:08 +02:00
alac.mak
als.mak fate/als: Add test for conformance file with 512 channels. 2019-08-24 09:33:44 +02:00
amrnb.mak
amrwb.mak
api.mak tests: drop api-codec-param test 2020-12-10 09:46:30 +01:00
apng.mak fate: fix apng tests dependencies 2016-07-16 15:29:43 -03:00
atrac.mak
audio.mak fate: disable automatic conversions on many tests. 2020-09-08 14:16:08 +02:00
bmp.mak fate: add scale filters for big-endian architectures. 2020-09-30 16:39:34 +02:00
build.mak Merge commit 'db869f4ea4' 2017-10-11 19:02:04 -03:00
canopus.mak fate: disable automatic conversions on many tests. 2020-09-08 14:16:08 +02:00
cbs.mak avcodec/av1dec: avoid probing with av1dec 2020-10-06 11:28:12 -03:00
cdxl.mak fate: disable automatic conversions on many tests. 2020-09-08 14:16:08 +02:00
checkasm.mak checkasm: add hscale test 2020-05-15 10:29:30 +01:00
concatdec.mak
cover-art.mak
dca.mak fate: disable automatic conversions on many tests. 2020-09-08 14:16:08 +02:00
demux.mak fate: Add aa-demux test 2020-10-10 13:08:24 +02:00
dfa.mak fate: disable automatic conversions on many tests. 2020-09-08 14:16:08 +02:00
dnn.mak FATE/dnn: only run unit test when CONFIG_DNN enabled 2020-10-09 08:35:45 +08:00
dnxhd.mak fate: add scale filters for big-endian architectures. 2020-09-30 16:39:34 +02:00
dpcm.mak
ea.mak fate: disable automatic conversions on many tests. 2020-09-08 14:16:08 +02:00
exif.mak
ffmpeg.mak ac3enc_fixed: convert to 32-bit sample format 2021-01-14 01:44:12 +01:00
ffprobe.mak ffprobe: Fix fate tests for ffprobe in cases where TARGET_PATH differs from the current path 2019-12-18 15:15:12 +02:00
fft.mak tests: Add EXESUF to program calls. 2019-04-19 01:11:39 +02:00
fifo-muxer.mak tests/fate/fifo-muxer: update fifo-muxer dependencies 2017-05-08 08:42:00 +02:00
filter-audio.mak avfilter/af_earwax: fix filter behavior 2020-12-07 21:09:08 +01:00
filter-video.mak lavfi/vf_pp7: convert to the video_enc_params API 2021-01-01 14:25:18 +01:00
fits.mak fate: add scale filters for big-endian architectures. 2020-09-30 16:39:34 +02:00
flac.mak
flvenc.mak fate/flvenc: set bitexact output format flag explicitly 2017-08-30 23:28:21 -03:00
gapless.mak fate: Fix use of target_path/target_samples 2019-12-12 11:28:21 +02:00
gif.mak fate: add scale filters for big-endian architectures. 2020-09-30 16:39:34 +02:00
h264.mak tests: stop using -vsync drop 2020-12-10 09:53:52 +01:00
hap.mak fate: fix hapqa-extract-nosnappy tests on small builds 2018-09-06 19:24:14 -03:00
hevc.mak tests: stop using -vsync drop 2020-12-10 09:53:52 +01:00
hlsenc.mak fate: disable automatic conversions on many tests. 2020-09-08 14:16:08 +02:00
hw.mak tests: Add EXESUF to program calls. 2019-04-19 01:11:39 +02:00
id3v2.mak fate: add id3v2 test 2018-02-02 12:16:56 -03:00
image.mak fate/image: add missing ffprobe dependency to fate-dpx-probe 2020-12-18 18:51:15 -03:00
indeo.mak
lavf-audio.mak fate: add wav chapters test 2020-09-07 19:04:09 +02:00
lavf-container.mak fate/lavf-container: add an AV1 in Matroska muxing test 2020-01-26 12:41:32 -03:00
lavf-image.mak fate/lavf-image: fix passed arguments for some high bit depth tests 2019-03-14 17:15:28 -03:00
lavf-image2pipe.mak tests: Convert image2pipe tests to non-legacy test scripts 2019-02-16 18:15:11 +01:00
lavf-video.mak tests/fate/lavf-video.mak: fix fate-lavf-gif dependencies 2020-01-30 20:30:36 +01:00
libavcodec.mak test/fate: Add missing exe suffix to h265_levels test. 2020-01-28 00:02:01 +01:00
libavdevice.mak tests: Move all test programs to a subdirectory 2016-05-13 14:55:56 +02:00
libavformat.mak tests: Add EXESUF to program calls. 2019-04-19 01:11:39 +02:00
libavresample.mak Merge commit '01621202aa' 2016-05-09 16:25:28 +01:00
libavutil.mak tests: Add EXESUF to program calls. 2019-04-19 01:11:39 +02:00
libswresample.mak fate: disable automatic conversions on many tests. 2020-09-08 14:16:08 +02:00
libswscale.mak libswscale/tests: add floatimg_cmp test 2020-10-02 14:59:52 +02:00
lossless-audio.mak fate: disable automatic conversions on many tests. 2020-09-08 14:16:08 +02:00
lossless-video.mak tests: stop using -vsync drop 2020-12-10 09:53:52 +01:00
matroska.mak avformat/matroskaenc: Don't ignore tags of chapters written late 2020-05-19 03:34:44 +02:00
microsoft.mak fate: add scale filters for big-endian architectures. 2020-09-30 16:39:34 +02:00
monkeysaudio.mak fate: disable automatic conversions on many tests. 2020-09-08 14:16:08 +02:00
mov.mak avformat/movenc: implement writing of the btrt box 2020-09-22 18:21:31 +03:00
mp3.mak fate: disable automatic conversions on many tests. 2020-09-08 14:16:08 +02:00
mpc.mak fate: Convert the musepack8 test to an oneoff test 2020-11-17 23:47:31 +02:00
mpeg4.mak fate: Add test that also decodes packed_bframes.avi 2016-03-23 20:28:28 +01:00
mpegps.mak fate: Fix dependencies to sample files to use local paths 2019-12-12 11:27:55 +02:00
mpegts.mak avformat/mpegts: add merge_pmt_versions option 2018-05-18 19:00:29 -07:00
mxf.mak fate-mxf-probe-applehdr10: Ignore endianness 2020-10-12 20:21:36 +02:00
opus.mak fate: disable automatic conversions on many tests. 2020-09-08 14:16:08 +02:00
pcm.mak fate: disable automatic conversions on many tests. 2020-09-08 14:16:08 +02:00
pixfmt.mak Merge commit '896fe15dbb' 2019-03-14 14:31:48 -03:00
pixlet.mak fate: add scale filters for big-endian architectures. 2020-09-30 16:39:34 +02:00
probe.mak
prores.mak fate: add scale filters for big-endian architectures. 2020-09-30 16:39:34 +02:00
qt.mak fate: disable automatic conversions on many tests. 2020-09-08 14:16:08 +02:00
qtrle.mak fate: disable automatic conversions on many tests. 2020-09-08 14:16:08 +02:00
real.mak Merge commit '043b0b9fb1' 2017-03-24 11:40:35 +01:00
screen.mak fate: disable automatic conversions on many tests. 2020-09-08 14:16:08 +02:00
seek.mak fate: Add an option for disabling the 2k/4k tests 2019-12-17 10:22:29 +02:00
segment.mak Merge commit 'f8df5e2f31' 2019-03-14 14:59:45 -03:00
source-check.sh tests/fate/source-check: Use git grep in place of grep 2017-03-30 03:12:05 +02:00
source.mak
speedhq.mak speedhq: add FATE tests 2017-08-03 16:36:02 -03:00
subtitles.mak fate: add fate-sub-dvb test 2020-08-22 19:02:01 +02:00
truehd.mak fate/truehd: add a test for the truehd_core bitstream filter 2020-04-20 13:53:42 -03:00
utvideo.mak fate: disable automatic conversions on many tests. 2020-09-08 14:16:08 +02:00
vcodec.mak fate/vcodec: use the encoder private option for frame skip compare function 2020-06-04 09:56:01 -03:00
video.mak fate: add tests for AVID 2021-01-01 14:33:12 +01:00
voice.mak fate: disable automatic conversions on many tests. 2020-09-08 14:16:08 +02:00
vorbis.mak fate: Add test for vorbis encoder 2016-05-05 21:08:23 +02:00
vpx.mak fate: add scale filters for big-endian architectures. 2020-09-30 16:39:34 +02:00
vqf.mak Merge commit '4141a5a240' 2017-10-03 21:28:07 -03:00
wavpack.mak fate: disable automatic conversions on many tests. 2020-09-08 14:16:08 +02:00
wma.mak
xvid.mak