git.videolan.org Git - ffmpeg.git/rss log
FFmpeg git repo
Les articles publiés sur le site
-
lavc/vvc : Fix divide-by-zero in LMCS param derivation
24 mai, par Frank Plowman -
avcodec/vc2enc : Use LUT to avoid repeated av_log2()
24 mai, par Andreas Rheinhardt -
doc : use av_dict_iterate in documentation example
23 mai, par Marvin Scholz -
ffv1enc_vulkan : fix array overflow
23 mai, par Maxime Gervais -
avcodec/ac3dec : Hardcode tables to save space
23 mai, par Andreas Rheinhardtavcodec/ac3dec: Hardcode tables to save space The code to initialize the ungrouped bap mantissa tables (bap 3 or 5) takes more bytes of .text than the tables itself; they have therefore been hardcoded. For GCC (14, -O3, albeit in an av_cold function), the initialization code takes 99B each for the fixed and floating point decoders (the code is currently duplicated), whereas the hardcoded tables only take 96B. For Clang 19 it were 374B each (I don't now what Clang was doing there). Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>