Re: [FFmpeg-devel] [PATCH 2/2] add socks5 support for tcp clients

2020-06-24 Thread Moritz Barsnick
Now that I have tested this: On Sat, Jun 13, 2020 at 23:17:41 +0800, leviz...@live.cn wrote: > #endif /* !HAVE_WINSOCK2_H */ > +char *socks_proxy; > } TCPContext; [...] > { "listen", "Listen for incoming connections", OFFSET(listen), > AV_OPT_TYPE_INT, { .i64 = 0 },

Re: [FFmpeg-devel] [PATCH 2/2] add socks5 support for tcp clients

2020-06-23 Thread Carl Eugen Hoyos
Am Di., 23. Juni 2020 um 17:24 Uhr schrieb Moritz Barsnick : > > On Sat, Jun 13, 2020 at 23:17:41 +0800, leviz...@live.cn wrote: > > From: zhaoyi > > Is this the name you'd like to appear in the git log, asuming the patch > gets accepted? It is your (the author's) choice what you want to appear a

Re: [FFmpeg-devel] [PATCH 2/2] add socks5 support for tcp clients

2020-06-23 Thread Moritz Barsnick
On Sat, Jun 13, 2020 at 23:17:41 +0800, leviz...@live.cn wrote: > From: zhaoyi Is this the name you'd like to appear in the git log, asuming the patch gets accepted? It cannot be changed afterwards. (I'm saying: Most people use their "real name" here.) In your commit message, please also mention

Re: [FFmpeg-devel] [PATCH 2/2] add socks5 support for tcp clients

2020-06-14 Thread Michael Niedermayer
On Sat, Jun 13, 2020 at 11:17:41PM +0800, leviz...@live.cn wrote: > From: zhaoyi > > --- > libavformat/tcp.c | 204 ++ > 1 file changed, 204 insertions(+) seems to break build on mingw64 AR libavdevice/libavdevice.a AR libavfilter/libavfilte

[FFmpeg-devel] [PATCH 2/2] add socks5 support for tcp clients

2020-06-13 Thread levizhao
From: zhaoyi --- libavformat/tcp.c | 204 ++ 1 file changed, 204 insertions(+) diff --git a/libavformat/tcp.c b/libavformat/tcp.c index 2198e0f00e..ca6ba2867e 100644 --- a/libavformat/tcp.c +++ b/libavformat/tcp.c @@ -45,6 +45,7 @@ typedef struct TCPC