Maxim Sharabayko

Results 195 comments of Maxim Sharabayko

> @maxsharabayko That is Great news. Perhaps redundancy at the SRT level could be configurable? So that the application can decide to do it or not or to do a...

Better, but still 50 lines in main() that are not directly related to the SRT API usage in the example app. ```c++ struct Config { Config() : opt_quiet(false) , service("9000")...

_Moving some old overview from #1620 here for future reference._ Core threads synchronization overview. **Note.** `CRcvQueue::m_pRcvUList` may still have this socket, and may be processing it during `releaseSynch()`. Some synchronization...

Looks like some quotation marks (`'query'`) could be used to define the stream ID value as the URI query. 🤔 ``` srt://example.com:9000?streamid='#!::u=admin,r=foo' ```

@quink-black Sorry, I was not clear [in my previous comment](https://github.com/Haivision/srt/issues/1871#issuecomment-800992970). We don't have a dedicated SRT URI documentation yet, however, supported URI querys can be found in [srt-live-transmit.md](https://github.com/Haivision/srt/blob/master/docs/srt-live-transmit.md). `streamid` is...

### Reviewing notes - `CSndUList` - list (heap) of `CUDT` sockets to send data packets. - `m_ListLock` - locks `CSndUList` modifications. `update`, `pop`, `remove`, `getNextProcTime`. - ` m_pWindowLock` - pointer...

Hi @niXman, are you looking for some specific seurity audit or just curious?

A single receive thread for all SRT connections "bound" to the same UDP port is currently a known bottleneck of the existing SRT implementation. The same thread also keeps track...