Optimize MDEC encoder, use ffmpeg DCT implementation

This commit is contained in:
spicyjpeg
2023-11-04 10:34:46 +01:00
committed by Adrian Siekierka
parent 87b0fe3f2a
commit 302989badf
5 changed files with 130 additions and 70 deletions

View File

@@ -1,6 +1,6 @@
project('psxavenc', 'c', default_options: ['c_std=c11'])
add_project_arguments('-D_POSIX_C_SOURCE=201112L', language : 'c')
add_project_arguments('-D_POSIX_C_SOURCE=201112L', '-ffast-math', language : 'c')
conf_data = configuration_data()
conf_data.set('VERSION', '"' + run_command('git', '-C', meson.project_source_root(), 'describe', '--tags', '--always', '--dirty', '--match=v*', check: true).stdout().strip() + '"')