Maxim Sharabayko

Results 195 comments of Maxim Sharabayko

Does VLC show any error in the "messages" window? Do you see any SRT traffic on the network?

`ssl->ctx->keylog_callback` is `NULL`, although `config.log_keys()` was called. A different context? 🤔 ```c bool ssl_log_secret(const SSL *ssl, const char *label, Span secret) { if (ssl->ctx->keylog_callback == NULL) { return true; }...

### A Small Update on the Topic There is a related discussion on debug builds on windows with rust here: https://github.com/rust-lang/rust/issues/39016. RUST has not solved this issue yet. However, there...

I was thinking about something like this to start with: ```c++ void th_recv(tf::Taskflow& taskflow) { while (auto pkt = udp.recv()) { taskflow.emplace([pkt] () { std::cout

> Is it possible to fix the structure of the graph (or if needed, using dynamic tasking) during the execution? If a task is defined as "queue a packet for...

Hi @Fanfwe Will see. Might be included in v1.6.0 if time permits.

Hi @tsung-wei-huang Thanks, will take a look! P.S. There seem to be a typo on this page https://taskflow.github.io/taskflow/DependentAsyncTasking.html In the very first example should be `fuD.get()` instead of `D.get()`. ```c++...

Not that accurate, because the time between packet submission to the sender buffer of SRT, and actual sending would be unknown. Furthermore, the source time may be supplied by the...

@teshrim > Might this cause folks to simply use AES-CTR for both live and non-live configurations, to avoid the headache/hassle of conditional encryption logic? Depends on the security requirements.