Re: [FFmpeg-devel] [Patch] no_delay option for librtmp

2015-02-27 Thread Michael Niedermayer
On Thu, Feb 26, 2015 at 11:32:06PM -0600, Cary Tetrick wrote: It looks like #include netinet/tcp.h might work BUT According to this page http://linux.die.net/man/7/tcp it looks like this socket setting is not truly portable. :( My intent was to offer some flexibility in what looks like a long

Re: [FFmpeg-devel] [Patch] no_delay option for librtmp

2015-02-26 Thread Cary Tetrick
It looks like #include netinet/tcp.h might work BUT According to this page http://linux.die.net/man/7/tcp it looks like this socket setting is not truly portable. :( My intent was to offer some flexibility in what looks like a long standing problem with rtmp streaming. For my purposes, I can get

[FFmpeg-devel] [Patch] no_delay option for librtmp

2015-02-26 Thread Cary Tetrick
This adds another option to a change authored by Brian Brice bbr...@gmail.com 2015-01-19 librtmp: Allow changing the socket send buffer size (Brian is aware of this change). Unlike a previous patch, this has no dependency on rtmpdump. Options to the ffmpeg commandline in support of now

Re: [FFmpeg-devel] [Patch] no_delay option for librtmp

2015-02-26 Thread Cary Tetrick
Use this instead. (sorry, corrected grammatical errors.) On Thu, Feb 26, 2015 at 1:22 PM, Cary Tetrick ctetri...@gmail.com wrote: This adds another option to a change authored by Brian Brice bbr...@gmail.com 2015-01-19 librtmp: Allow changing the socket send buffer size (Brian is aware

Re: [FFmpeg-devel] [Patch] no_delay option for librtmp

2015-02-26 Thread Cary Tetrick
No, i just extended what Brian already had. Just an option to to control the no delay. I put the changes inside you #if for networking config. On Feb 26, 2015 7:42 PM, Michael Niedermayer michae...@gmx.at wrote: On Thu, Feb 26, 2015 at 03:23:40PM -0600, Cary Tetrick wrote: Use this instead.

Re: [FFmpeg-devel] [Patch] no_delay option for librtmp

2015-02-26 Thread Michael Niedermayer
On Thu, Feb 26, 2015 at 03:23:40PM -0600, Cary Tetrick wrote: Use this instead. (sorry, corrected grammatical errors.) On Thu, Feb 26, 2015 at 1:22 PM, Cary Tetrick ctetri...@gmail.com wrote: This adds another option to a change authored by Brian Brice bbr...@gmail.com 2015-01-19

Re: [FFmpeg-devel] [Patch] no_delay option for librtmp

2015-02-26 Thread Michael Niedermayer
On Thu, Feb 26, 2015 at 08:00:49PM -0600, Cary Tetrick wrote: No, i just extended what Brian already had. Just an option to to control the no delay. I put the changes inside you #if for networking config. you misunderstood my question my question is what #includes it needs and if this is