Skip to content

Commit

Permalink
Update libass to 0.17.2 (#116)
Browse files Browse the repository at this point in the history
Co-authored-by: seiya-git <[email protected]>
  • Loading branch information
github-actions[bot] and seiya-git authored Jul 8, 2024
1 parent 1b91ee8 commit faf9196
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion SMP/libass
Submodule libass updated 87 files
+0 −109 .github/ISSUE_TEMPLATE/build.yml
+0 −105 .github/ISSUE_TEMPLATE/crash.yml
+0 −9 .github/ISSUE_TEMPLATE/question.md
+0 −131 .github/ISSUE_TEMPLATE/wrong-rendering-report.yml
+0 −332 .github/workflows/ghci.yml
+5 −0 .gitignore
+41 −0 Changelog
+13 −1 Makefile.am
+35 −4 Makefile_util.am
+17 −2 README.md
+1 −0 RELEASEVERSION
+1 −1 SMP/SMP.patch
+10 −10 SMP/libass.vcxproj
+30 −6 SMP/libass.vcxproj.filters
+8 −2 SMP/libass_files.props
+10 −10 SMP/libass_winrt.vcxproj
+30 −6 SMP/libass_winrt.vcxproj.filters
+1 −1 SMP/version.h
+217 −0 checkasm/arm/checkasm_64.S
+67 −0 checkasm/be_blur.c
+104 −0 checkasm/blend_bitmaps.c
+192 −0 checkasm/blur.c
+816 −0 checkasm/checkasm.c
+344 −0 checkasm/checkasm.h
+210 −0 checkasm/rasterizer.c
+473 −0 checkasm/x86/checkasm.asm
+83 −57 configure.ac
+2 −0 fuzz/ass.dict
+13 −5 fuzz/fuzz.c
+12 −0 gen_defs.py
+1 −1 libass.pc.in
+53 −40 libass/Makefile_library.am
+280 −0 libass/aarch64/asm.S
+150 −0 libass/aarch64/be_blur.S
+162 −0 libass/aarch64/blend_bitmaps.S
+485 −0 libass/aarch64/blur.S
+472 −0 libass/aarch64/rasterizer.S
+35 −20 libass/ass.c
+1 −1 libass/ass.h
+13 −0 libass/ass/meson.build
+3 −142 libass/ass_bitmap.c
+1 −64 libass/ass_bitmap.h
+204 −0 libass/ass_bitmap_engine.c
+99 −0 libass/ass_bitmap_engine.h
+0 −362 libass/ass_blur.c
+3 −3 libass/ass_cache.c
+11 −0 libass/ass_compat.h
+42 −35 libass/ass_coretext.c
+57 −53 libass/ass_directwrite.c
+0 −7 libass/ass_directwrite.h
+14 −46 libass/ass_directwrite_info_template.h
+234 −97 libass/ass_drawing.c
+1 −3 libass/ass_drawing.h
+0 −1 libass/ass_filesystem.c
+119 −34 libass/ass_font.c
+3 −2 libass/ass_font.h
+5 −2 libass/ass_fontconfig.c
+44 −50 libass/ass_fontselect.c
+8 −5 libass/ass_fontselect.h
+0 −125 libass/ass_func_template.h
+1 −1 libass/ass_parse.c
+1 −1 libass/ass_rasterizer.c
+0 −400 libass/ass_rasterizer_c.c
+96 −87 libass/ass_render.c
+2 −3 libass/ass_render.h
+7 −2 libass/ass_render_api.c
+101 −110 libass/ass_shaper.c
+1 −2 libass/ass_shaper.h
+11 −0 libass/ass_types.h
+0 −42 libass/ass_utils.c
+0 −4 libass/ass_utils.h
+343 −0 libass/c/blur_template.h
+73 −0 libass/c/c_be_blur.c
+75 −0 libass/c/c_blend_bitmaps.c
+74 −0 libass/c/c_blur.c
+33 −0 libass/c/c_rasterizer.c
+236 −0 libass/c/rasterizer_template.h
+149 −0 libass/meson.build
+4 −2 libass/x86/be_blur.asm
+10 −10 libass/x86/blend_bitmaps.asm
+85 −75 libass/x86/blur.asm
+3 −0 libass/x86/rasterizer.asm
+225 −84 libass/x86/x86inc.asm
+395 −0 meson.build
+13 −0 meson_options.txt
+10 −0 profile/meson.build
+10 −0 test/meson.build

0 comments on commit faf9196

Please sign in to comment.