Some issues about low-latency video stream #354
Unanswered
KevinChau9527
asked this question in
Questions
Replies: 1 comment 2 replies
-
The main idea is bypass 802.11 (wifi) stack and use wifi card as raw radio. Classic wifi has very slow AP association and limited range due to mandatory ACKs. Wfb-ng use direct packet capture/injection via pcap and raw sockets. You can try dpdk but this will not give any acceleration, since the bottleneck is the speed of the radio channel |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
From the code point of view, it seems that the project achieves low latency by building Ethernet frames and sending video data as payload to LLC at the L2 layer to bypass kernel's TCP/IP protocol stack. Can other mechanisms (such as xdp/ebpf, dpdk, etc.) be used to achieve the same effect?
Beta Was this translation helpful? Give feedback.
All reactions