sylware / nyanmp (public) (License: AGPLv3) (since 2020-02-12) (hash sha1)
intended to become a collection of media players for gnu/linux based on ffmpeg, alsa, vulkan, x11, wayland, etc.
List of commits:
Subject Hash Author Date (UTC)
npv: spurious AND faulty image creation flag e7d0d4e9efa15781b323cd092989bc0b95331875 Sylvain BERTRAND 2021-01-15 02:01:16
npa: buffering 9b2ec327646a289dae3e4cbb31b4857bf612d7e2 Sylvain BERTRAND 2020-11-06 17:20:56
npa: tons of love 68a79110ca4a6f5bdb41ed90e421b6f46c1c1877 Sylvain BERTRAND 2020-11-06 15:20:13
npv: spurious unsigned 5b4e039ffd921438a37112f0b4108480366f4d6d Sylvain BERTRAND 2020-11-06 04:31:18
npv: backward discontinuity handling 0fc81a53996993992dd86a96a26afd2aab0ac366 Sylvain BERTRAND 2020-09-25 16:14:26
npv: more monotonic, more pts discontinuity 1ab37ad2a24ca8f9fbf6d51eac8f996bd2eefacf Sylvain BERTRAND 2020-09-25 01:34:41
npv: workaround a mesa bug (which leads to linux state corruption) 780e5bec0b90a9e931778cf68fec62a7c5241c13 Sylvain BERTRAND 2020-09-23 15:57:25
npv: fix filter time base handling, prepare discontinuity support 2b7347be805d17a2b6f06e276e897c51431b9c6c Sylvain BERTRAND 2020-09-22 17:38:46
npv: correct coarse sync of vulkan image acquisition a9b52940ff2d567dc6c26b28d86eab54f5876819 Sylvain BERTRAND 2020-09-20 22:00:32
npv: fix channel layout handling and a tad more 88f74f181a567d108874a936fe3d306d34cfefb7 Sylvain BERTRAND 2020-09-19 23:12:04
npv: dynamic audio filter configuration d8a0ff688ddb2abcde22c01a2ae52ea74e9f0f2f Sylvain BERTRAND 2020-09-19 20:54:04
npv:protection against tantrum of media audio 78589150b7c6f1f3cae49b4b4bc8b572c6d8e6b7 Sylvain BERTRAND 2020-09-18 15:26:17
npv/npa:finish to workaround null channel layout 314788563e01d7ffb364a1775ba68619ee3f6c5c Sylvain BERTRAND 2020-09-15 22:50:57
npv: handle empty channel layout 5b5794fc4d5300b671b684a2f41196f66bd1fc4a Sylvain BERTRAND 2020-09-15 22:11:07
npv: tidy mutex locking 1962092d9675f76604414086200e88f6c857346f Sylvain BERTRAND 2020-09-15 00:51:12
npv: less incorrect reprogramming of blits b319e79f4f1b79670f6eef754142cc65c891ad4b Sylvain BERTRAND 2020-09-12 15:14:27
npv:fix osd restoration 8c64f703eca6b8c54b4cb5c95231dd02aa394135 Sylvain BERTRAND 2020-08-29 20:36:12
npv:osd:solo compilation modulo a few warnings 7805bd8f34f913b1535cc81c5be2a3132bd7e0e5 Sylvain BERTRAND 2020-08-29 14:51:35
npv: cleanup and color component fix 44f294e1de96c7974740f1187ebdbe12204884ae Sylvain BERTRAND 2020-08-28 23:48:18
npv:osd:timer, will add more if pertinent 6d34403c2c49bfa6ccf8e7a72e35a69e6f0527c5 Sylvain BERTRAND 2020-08-28 22:47:18
Commit e7d0d4e9efa15781b323cd092989bc0b95331875 - npv: spurious AND faulty image creation flag
Author: Sylvain BERTRAND
Author date (UTC): 2021-01-15 02:01
Committer name: Sylvain BERTRAND
Committer date (UTC): 2021-01-15 02:01
Parent(s): 9b2ec327646a289dae3e4cbb31b4857bf612d7e2
Signing key:
Tree: 30e430d4258f7cfa4aa2c5329bc11a86160079e9
File Lines added Lines deleted
npv/nyanvk/consts.h 0 4
npv/video/local/code.frag.c 0 1
File npv/nyanvk/consts.h changed (mode: 100644) (index 522aad5..b4363ad)
... ... enum {
183 183 vk_img_tiling_linear = 1, vk_img_tiling_linear = 1,
184 184 vk_img_tiling_enum_max = 0x7fffffff vk_img_tiling_enum_max = 0x7fffffff
185 185 }; };
186 enum {
187 vk_img_create_flag_2d_array_compatible_bit = 0x00000002,
188 vk_img_create_flag_enum_max = 0x7fffffff
189 };
190 186 enum { enum {
191 187 vk_img_layout_undefined = 0, vk_img_layout_undefined = 0,
192 188 vk_img_layout_general = 1, vk_img_layout_general = 1,
File npv/video/local/code.frag.c changed (mode: 100644) (index 44017cd..f8566ed)
... ... STATIC void scaler_img_create(avutil_video_fr_ref_t *fr)
87 87
88 88 memset(&info, 0, sizeof(info)); memset(&info, 0, sizeof(info));
89 89 info.type = vk_struct_type_img_create_info; info.type = vk_struct_type_img_create_info;
90 info.flags = vk_img_create_flag_2d_array_compatible_bit;
91 90 info.img_type = vk_img_type_2d; info.img_type = vk_img_type_2d;
92 91 info.texel_mem_blk_fmt = vk_texel_mem_blk_fmt_b8g8r8a8_srgb; info.texel_mem_blk_fmt = vk_texel_mem_blk_fmt_b8g8r8a8_srgb;
93 92 info.extent.width = (u32)fr->width; info.extent.width = (u32)fr->width;
Hints:
Before first commit, do not forget to setup your git environment:
git config --global user.name "your_name_here"
git config --global user.email "your@email_here"

Clone this repository using HTTP(S):
git clone https://rocketgit.com/user/sylware/nyanmp

Clone this repository using ssh (do not forget to upload a key first):
git clone ssh://rocketgit@ssh.rocketgit.com/user/sylware/nyanmp

Clone this repository using git:
git clone git://git.rocketgit.com/user/sylware/nyanmp

You are allowed to anonymously push to this repository.
This means that your pushed commits will automatically be transformed into a merge request:
... clone the repository ...
... make some changes and some commits ...
git push origin main