|
|
|
|
|
by simias
4654 days ago
|
|
Having worked on the particular issue of streaming real-time video over wireless, I can say that the main issue is not link latency. The main lag comes from encoding/decoding. If you do it naively you encode frame-per-frame (encoding slices is more difficult), and the encoder does not only outputs iframes: you get partial frames that depend on both previous and future frames. Also the decoder does not always output frames in order. So you have to expect something around ~10 frames of latency, maybe less if you optimize everything well enough. That still means easily more than 100ms of lag. The network is really not the main issue here. |
|