moi15moi
moi15moi
When you call ``ass_font_provider_add_font``, it calls ``ass_face_open`` which use the [``FT_New_Face``](https://github.com/libass/libass/blob/6a759836e5e76bb7b69b0ac244eea76b0d290512/libass/ass_font.c#L317). FT_New_Face has a issue on the freetype gitlab: https://gitlab.freedesktop.org/freetype/freetype/-/issues/1098 Because of that, we cannot use the file path to...
I don't know if it really matter, but since Directwrite always give a file path in uppercase, you may want to normalize it like this: https://github.com/arch1t3cht/Aegisub/blob/74ed5a6917c99e99962156eda2788255fde1b5b4/src/font_file_lister_gdi.cpp#L29-L64 Edit 24-10-2024: Since C++17,...
This seems to be dead code, because, as we can see in the [coverage](https://app.codecov.io/github/enthought/comtypes/blob/main/comtypes%2F_meta.py), the if is never entered.
Why was this issue closed? As far as I can tell, the last update was for R66: https://pypi.org/project/VapourSynth-portable/#history Does this mean the portable version has been abandoned?
I am able to reproduce this problem with the version 1.8.0. Also, in the logcat, when I use `player.setVideoEffects(new ArrayList());`, I get this log `dequeueBuffer failed: WOULD_BLOCK(-11).` I couldn't found...
I just retried with the master branch (specifically this commit a8d2f5cb74d212424eae0246bc6b6e23256fb92b) + [this patch](https://github.com/androidx/media/issues/1620#issuecomment-2315409779) and the issue persist. This is the log I get with (``package:mine``): ```kotlin 2025-11-01 14:25:50.615 15108-15108...
@claincly I tried your patch. I indeed don't have the ``WOULD_BLOCK`` error anymore, but I still see a black screen. This is the log I get with ``package:mine``: ```kotlin ----------------------------...
I am not able to reproduce it on any other devices. Would be appreciated if you could get a nvidia shield to diagnostic the issue.
I'm currently trying to investigate why the install-tests CI fails only for Python 3.8
Oh, the problem is simple. The ``license`` in the pryproject.toml have been added in setuptools [77.0.0](https://setuptools.pypa.io/en/latest/history.html#v77-0-0). The last version to support Python 3.8 is [75.3.2](https://pypi.org/project/setuptools/75.3.2/), so it cannot simply work....