[FFmpeg-devel] [PATCH] avformat/udp: Add a delay between packets for streaming to clients with short buffer

2016-03-09 Thread Pavel Nikiforov
Nicolas George george at nsup.org wrote: >> libavformat/udp.c | 133 >> -- >> 1 file changed, 129 insertions(+), 4 deletions(-) >Missing documentation update. fixed. >> -while(1) { >> +for(;;) { >Stray change. Portability. You don't

[FFmpeg-devel] [PATCH] avformat/udp: Add a delay between packets for streaming to clients with short buffer

2016-02-29 Thread Pavel Nikiforov
Hello ! This patch enables background sending of UDP packets with specified delay. When sending packets without a delay some devices with small RX buffer ( MAG200 STB, for example) will drop tail packets in burst causing decoding errors. It needs to specify "fifo_size" with "packet_gap" . The ou