Subject | Hash | Author | Date (UTC) |
---|---|---|---|
npa: forgot zero-ing before cmp | ceff7a70798b604bdb876a92ba0c446e3ede8a5b | Sylvain BERTRAND | 2021-04-15 20:15:07 |
npv: namespace love | cb385e293aeb094073963c46022f3c430b6bf9c1 | Sylvain BERTRAND | 2021-01-16 18:37:11 |
conservative handling of vulkan linear filtering | 7736b342c3566ac3ffa7a83ff1c7985e5595265f | Sylvain BERTRAND | 2021-01-15 18:18:02 |
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 |
File | Lines added | Lines deleted |
---|---|---|
npa/npa.c | 3 | 1 |
File npa/npa.c changed (mode: 100644) (index dc80a5b..e1eaab7) | |||
... | ... | static void stdin_tty_init_once(void) | |
1083 | 1083 | pout("input:standard input is not a terminal\n"); | pout("input:standard input is not a terminal\n"); |
1084 | 1084 | return; | return; |
1085 | 1085 | } | } |
1086 | memset(&stdin_tio_save, 0, sizeof(stdin_tio_save)); | ||
1086 | memset(&tio_new, 0, sizeof(tio_new)); | ||
1087 | memset(&tio_chk, 0, sizeof(tio_chk)); | ||
1088 | memset(&stdin_tio_save, 0, sizeof(stdin_tio_save)); | ||
1087 | 1089 | r = tcgetattr(0, &stdin_tio_save); | r = tcgetattr(0, &stdin_tio_save); |
1088 | 1090 | if (r == -1) | if (r == -1) |
1089 | 1091 | fatal("input:unable to get the current standard input terminal line attributes\n"); | fatal("input:unable to get the current standard input terminal line attributes\n"); |