HackerTrans
TopNewTrendsCommentsPastAskShowJobs

andersced

13 karmajoined 7 tahun yang lalu

comments

andersced
·5 hari yang lalu·discuss
https://github.com/andersc/fastqueue2/tree/main
andersced
·3 tahun yang lalu·discuss
Another MPEG-TS alternative used by some projects.

https://ieeexplore.ieee.org/document/9828725

https://github.com/agilecontent/efp
andersced
·3 tahun yang lalu·discuss
Should be benchmarked against ->

https://github.com/Deaod/spsc_queue

If proven faster OK.. If not.. Well.. back to the drawing board.

I gave it a try -> https://github.com/andersc/fastqueue

Deaod is the kingpin.
andersced
·4 tahun yang lalu·discuss
We have been testing out various protocols to overcome in our case TCP head-of-line blocking by using the protocols->

SRT: https://github.com/Haivision/srt (C++ wrapper https://github.com/andersc/cppSRTWrapper)

RIST: https://code.videolan.org/rist/rist-cpp

KCP: https://github.com/Unit-X/kcp-cpp

We wrap all data in a common container format https://github.com/agilecontent/efp

To decouple the data from the transport.

Yes the above solutions are media centric but can be used for almost any arbitrary data.

The protocols are not 'fare' so starvation may happen, and must be handled on the application level.

/A