[FFmpeg-devel] [PATCH 5/8] lavf/tcp: increase range for listen and call the underlying socket operations accordingly

2015-07-20 Thread Stephan Holljes
Signed-off-by: Stephan Holljes klaxa1...@googlemail.com --- libavformat/tcp.c | 16 +++- 1 file changed, 11 insertions(+), 5 deletions(-) diff --git a/libavformat/tcp.c b/libavformat/tcp.c index 6f5e175..5505945 100644 --- a/libavformat/tcp.c +++ b/libavformat/tcp.c @@ -45,7 +45,7

[FFmpeg-devel] [PATCH 4/8] lavf/tcp: add tcp_accept

2015-07-20 Thread Stephan Holljes
Signed-off-by: Stephan Holljes klaxa1...@googlemail.com --- libavformat/tcp.c | 18 ++ 1 file changed, 18 insertions(+) diff --git a/libavformat/tcp.c b/libavformat/tcp.c index f24cad2..6f5e175 100644 --- a/libavformat/tcp.c +++ b/libavformat/tcp.c @@ -19,6 +19,7

[FFmpeg-devel] [PATCH 8/8] doc/example: Add http multi-client example code

2015-07-20 Thread Stephan Holljes
Signed-off-by: Stephan Holljes klaxa1...@googlemail.com --- doc/examples/Makefile | 1 + doc/examples/http_multiclient.c | 139 2 files changed, 140 insertions(+) create mode 100644 doc/examples/http_multiclient.c Changes since last version

[FFmpeg-devel] [PATCH 7/8] doc/protocols: document experimental mutli-client api

2015-07-20 Thread Stephan Holljes
Signed-off-by: Stephan Holljes klaxa1...@googlemail.com --- doc/protocols.texi | 2 ++ 1 file changed, 2 insertions(+) diff --git a/doc/protocols.texi b/doc/protocols.texi index f152f5a..905bc09 100644 --- a/doc/protocols.texi +++ b/doc/protocols.texi @@ -304,6 +304,8 @@ autodetection

Re: [FFmpeg-devel] [PATCH 4/8] lavf/tcp: add tcp_accept

2015-07-20 Thread Stephan Holljes
On Tue, Jul 21, 2015 at 5:45 AM, Stephan Holljes klaxa1...@googlemail.com wrote: Signed-off-by: Stephan Holljes klaxa1...@googlemail.com --- libavformat/tcp.c | 18 ++ 1 file changed, 18 insertions(+) diff --git a/libavformat/tcp.c b/libavformat/tcp.c index f24cad2..6f5e175

Re: [FFmpeg-devel] [PATCH 4/8] lavf/tcp: add tcp_accept

2015-07-20 Thread Stephan Holljes
On Tue, Jul 21, 2015 at 5:58 AM, Stephan Holljes klaxa1...@googlemail.com wrote: On Tue, Jul 21, 2015 at 5:45 AM, Stephan Holljes klaxa1...@googlemail.com wrote: Signed-off-by: Stephan Holljes klaxa1...@googlemail.com --- libavformat/tcp.c | 18 ++ 1 file changed, 18

Re: [FFmpeg-devel] [PATCH 6/8] lavf/http: increase range for listen, handle connection closing accordingly, add http_accept, add http_handshake and move handshake logic there

2015-07-20 Thread Stephan Holljes
On Tue, Jul 21, 2015 at 5:45 AM, Stephan Holljes klaxa1...@googlemail.com wrote: Signed-off-by: Stephan Holljes klaxa1...@googlemail.com --- libavformat/http.c | 126 - 1 file changed, 105 insertions(+), 21 deletions(-) Changes since

Re: [FFmpeg-devel] Controlling the server reply (was: 9/9] doc/example: Add http multi-client) example code

2015-07-12 Thread Stephan Holljes
On Sat, Jul 11, 2015 at 11:55 AM, Nicolas George geo...@nsup.org wrote: Le primidi 21 messidor, an CCXXIII, Stephan Holljes a écrit : Good question, I haven't thought about that myself. Adding a 404 error to handle_http_errors() and calling it with AVERROR_HTTP_NOT_FOUND could be a solution. I

Re: [FFmpeg-devel] [PATCH 4/9] lavf/tcp: add tcp_accept

2015-07-09 Thread Stephan Holljes
On Thu, Jul 9, 2015 at 3:31 PM, Nicolas George geo...@nsup.org wrote: Le decadi 20 messidor, an CCXXIII, Stephan Holljes a écrit : Signed-off-by: Stephan Holljes klaxa1...@googlemail.com --- libavformat/tcp.c | 18 ++ 1 file changed, 18 insertions(+) Changes since first

Re: [FFmpeg-devel] [PATCH 9/9] doc/example: Add http multi-client example code

2015-07-09 Thread Stephan Holljes
On Thu, Jul 9, 2015 at 3:47 PM, Nicolas George geo...@nsup.org wrote: Le decadi 20 messidor, an CCXXIII, Stephan Holljes a écrit : Signed-off-by: Stephan Holljes klaxa1...@googlemail.com --- doc/examples/Makefile | 1 + doc/examples/http_multiclient.c | 120

Re: [FFmpeg-devel] [PATCH 6/9] lavf/http: add http_accept

2015-07-09 Thread Stephan Holljes
On Thu, Jul 9, 2015 at 3:41 PM, Nicolas George geo...@nsup.org wrote: Le decadi 20 messidor, an CCXXIII, Stephan Holljes a écrit : Signed-off-by: Stephan Holljes klaxa1...@googlemail.com --- libavformat/http.c | 19 +++ 1 file changed, 19 insertions(+) Changes since

Re: [FFmpeg-devel] [PATCH 7/9] lavf/http: increase range for listen, handle connection closing accordingly, add http_handshake and move handshake logic there

2015-07-09 Thread Stephan Holljes
On Thu, Jul 9, 2015 at 3:42 PM, Nicolas George geo...@nsup.org wrote: Le decadi 20 messidor, an CCXXIII, Stephan Holljes a écrit : Signed-off-by: Stephan Holljes klaxa1...@googlemail.com --- libavformat/http.c | 39 --- 1 file changed, 28 insertions(+), 11

[FFmpeg-devel] [PATCH 4/9] lavf/tcp: add tcp_accept

2015-07-08 Thread Stephan Holljes
Signed-off-by: Stephan Holljes klaxa1...@googlemail.com --- libavformat/tcp.c | 18 ++ 1 file changed, 18 insertions(+) Changes since first version: - Add av_assert0() check for sc-listen - Add bitmask for s-flags in ffurl_alloc - Use ff_accept() instead

[FFmpeg-devel] [PATCH 5/9] lavf/tcp: increase range for listen and call the underlying socket operations accordingly

2015-07-08 Thread Stephan Holljes
Signed-off-by: Stephan Holljes klaxa1...@googlemail.com --- libavformat/tcp.c | 16 +++- 1 file changed, 11 insertions(+), 5 deletions(-) Changes since first version: - Set ret when ff_listen_bind() fails diff --git a/libavformat/tcp.c b/libavformat/tcp.c index 6f5e175

[FFmpeg-devel] [PATCH 6/9] lavf/http: add http_accept

2015-07-08 Thread Stephan Holljes
Signed-off-by: Stephan Holljes klaxa1...@googlemail.com --- libavformat/http.c | 19 +++ 1 file changed, 19 insertions(+) Changes since first version: - Add av_assert0() check for sc-listen - Add bitmask for s-flags in ffurl_alloc diff --git a/libavformat/http.c b

[FFmpeg-devel] [PATCH 8/9] doc/protocols: document experimental mutli-client api

2015-07-08 Thread Stephan Holljes
Signed-off-by: Stephan Holljes klaxa1...@googlemail.com --- doc/protocols.texi | 2 ++ 1 file changed, 2 insertions(+) diff --git a/doc/protocols.texi b/doc/protocols.texi index 453dbcf..39a132a 100644 --- a/doc/protocols.texi +++ b/doc/protocols.texi @@ -292,6 +292,8 @@ autodetection

[FFmpeg-devel] [PATCH 9/9] doc/example: Add http multi-client example code

2015-07-08 Thread Stephan Holljes
Signed-off-by: Stephan Holljes klaxa1...@googlemail.com --- doc/examples/Makefile | 1 + doc/examples/http_multiclient.c | 120 2 files changed, 121 insertions(+) create mode 100644 doc/examples/http_multiclient.c Changes since first

[FFmpeg-devel] [PATCH 2/9] lavf/avio: add ffurl_accept and ffurl_handshake

2015-07-08 Thread Stephan Holljes
Signed-off-by: Stephan Holljes klaxa1...@googlemail.com --- libavformat/avio.c | 19 +++ libavformat/url.h | 18 ++ 2 files changed, 37 insertions(+) Changes since first version: - Add documentation - Let url_accept() allocate contexts

[FFmpeg-devel] [PATCH 1/9] lavf/network: split ff_listen_bind into ff_listen and ff_accept

2015-07-08 Thread Stephan Holljes
Signed-off-by: Stephan Holljes klaxa1...@googlemail.com --- libavformat/network.c | 27 +-- libavformat/network.h | 20 2 files changed, 41 insertions(+), 6 deletions(-) Changes since first version: - Added documentation - Restore

[FFmpeg-devel] [PATCH 3/9] lavf/avio: add avio_accept and avio_handshake

2015-07-08 Thread Stephan Holljes
Signed-off-by: Stephan Holljes klaxa1...@googlemail.com --- libavformat/avio.h| 16 libavformat/aviobuf.c | 17 + 2 files changed, 33 insertions(+) Changes since first version: - Add documentation diff --git a/libavformat/avio.h b/libavformat/avio.h

Re: [FFmpeg-devel] GSoC update

2015-07-08 Thread Stephan Holljes
Hi, I have moved the client code in the sample application into a separate function, I hope I did this correctly. I also annotated the patch files with the changes that occurred over the past few iterations of these exchanges. They will be sent shortly as git send-email patches. I also tested

Re: [FFmpeg-devel] [PATCH 4/9] lavf/tcp: add tcp_accept

2015-07-06 Thread Stephan Holljes
On Mon, Jul 6, 2015 at 7:58 PM, Nicolas George geo...@nsup.org wrote: Le sextidi 16 messidor, an CCXXIII, Stephan Holljes a écrit : Signed-off-by: Stephan Holljes klaxa1...@googlemail.com --- libavformat/tcp.c | 18 ++ 1 file changed, 18 insertions(+) diff --git

Re: [FFmpeg-devel] [PATCH 7/9] lavf/http: increase range for listen, handle connection closing accordingly, add http_handshake and move handshake logic there

2015-07-05 Thread Stephan Holljes
On Sat, Jul 4, 2015 at 7:47 AM, Stephan Holljes klaxa1...@googlemail.com wrote: Signed-off-by: Stephan Holljes klaxa1...@googlemail.com --- libavformat/http.c | 44 +++- 1 file changed, 31 insertions(+), 13 deletions(-) diff --git a/libavformat/http.c

Re: [FFmpeg-devel] [PATCH 7/9] lavf/http: increase range for listen, handle connection closing accordingly, add http_handshake and move handshake logic there

2015-07-03 Thread Stephan Holljes
On Fri, Jul 3, 2015 at 4:18 PM, Nicolas George geo...@nsup.org wrote: Le quintidi 15 messidor, an CCXXIII, Stephan Holljes a écrit : Signed-off-by: Stephan Holljes klaxa1...@googlemail.com --- libavformat/http.c | 45 - 1 file changed, 32

[FFmpeg-devel] [PATCH 1/9] lavf/network: split ff_listen_bind into ff_listen and ff_accept

2015-07-03 Thread Stephan Holljes
Signed-off-by: Stephan Holljes klaxa1...@googlemail.com --- libavformat/network.c | 27 +-- libavformat/network.h | 20 2 files changed, 41 insertions(+), 6 deletions(-) diff --git a/libavformat/network.c b/libavformat/network.c index 47ade8c..7a326d2

[FFmpeg-devel] [PATCH 5/9] lavf/tcp: increase range for listen and call the underlying socket operations accordingly

2015-07-03 Thread Stephan Holljes
Signed-off-by: Stephan Holljes klaxa1...@googlemail.com --- libavformat/tcp.c | 16 +++- 1 file changed, 11 insertions(+), 5 deletions(-) diff --git a/libavformat/tcp.c b/libavformat/tcp.c index 71dff7a..9a8e46e 100644 --- a/libavformat/tcp.c +++ b/libavformat/tcp.c @@ -45,7 +45,7

[FFmpeg-devel] [PATCH 2/9] lavf/avio: add ffurl_accept and ffurl_handshake

2015-07-03 Thread Stephan Holljes
Signed-off-by: Stephan Holljes klaxa1...@googlemail.com --- libavformat/avio.c | 19 +++ libavformat/url.h | 18 ++ 2 files changed, 37 insertions(+) diff --git a/libavformat/avio.c b/libavformat/avio.c index c188adc..1182336 100644 --- a/libavformat/avio.c +++ b

[FFmpeg-devel] [PATCH 3/9] lavf/avio: add avio_accept and avio_handshake

2015-07-03 Thread Stephan Holljes
Signed-off-by: Stephan Holljes klaxa1...@googlemail.com --- libavformat/avio.h| 16 libavformat/aviobuf.c | 17 + 2 files changed, 33 insertions(+) diff --git a/libavformat/avio.h b/libavformat/avio.h index d3d9bbd..b7a4fa8 100644 --- a/libavformat/avio.h

[FFmpeg-devel] [PATCH 4/9] lavf/tcp: add tcp_accept

2015-07-03 Thread Stephan Holljes
Signed-off-by: Stephan Holljes klaxa1...@googlemail.com --- libavformat/tcp.c | 18 ++ 1 file changed, 18 insertions(+) diff --git a/libavformat/tcp.c b/libavformat/tcp.c index f24cad2..71dff7a 100644 --- a/libavformat/tcp.c +++ b/libavformat/tcp.c @@ -19,6 +19,7

[FFmpeg-devel] [PATCH 8/9] doc/protocols: document experimental mutli-client api

2015-07-03 Thread Stephan Holljes
Signed-off-by: Stephan Holljes klaxa1...@googlemail.com --- doc/protocols.texi | 2 ++ 1 file changed, 2 insertions(+) diff --git a/doc/protocols.texi b/doc/protocols.texi index 453dbcf..39a132a 100644 --- a/doc/protocols.texi +++ b/doc/protocols.texi @@ -292,6 +292,8 @@ autodetection

Re: [FFmpeg-devel] [PATCH 9/9] Add http multi-client example code

2015-07-03 Thread Stephan Holljes
On Fri, Jul 3, 2015 at 12:32 PM, Nicolas George geo...@nsup.org wrote: Le quintidi 15 messidor, an CCXXIII, Stephan Holljes a écrit : Signed-off-by: Stephan Holljes klaxa1...@googlemail.com --- doc/examples/Makefile | 1 + doc/examples/http_multiclient.c | 101

[FFmpeg-devel] [PATCH 7/9] lavf/http: increase range for listen, handle connection closing accordingly, add http_handshake and move handshake logic there

2015-07-03 Thread Stephan Holljes
Signed-off-by: Stephan Holljes klaxa1...@googlemail.com --- libavformat/http.c | 44 +++- 1 file changed, 31 insertions(+), 13 deletions(-) diff --git a/libavformat/http.c b/libavformat/http.c index 3c1ec35..6338d80 100644 --- a/libavformat/http.c +++ b

[FFmpeg-devel] [PATCH 6/9] lavf/http: add http_accept

2015-07-03 Thread Stephan Holljes
Signed-off-by: Stephan Holljes klaxa1...@googlemail.com --- libavformat/http.c | 19 +++ 1 file changed, 19 insertions(+) diff --git a/libavformat/http.c b/libavformat/http.c index 676bfd5..3c1ec35 100644 --- a/libavformat/http.c +++ b/libavformat/http.c @@ -25,6 +25,7

[FFmpeg-devel] [PATCH 9/9] doc/example: Add http multi-client example code

2015-07-03 Thread Stephan Holljes
Signed-off-by: Stephan Holljes klaxa1...@googlemail.com --- doc/examples/Makefile | 1 + doc/examples/http_multiclient.c | 111 2 files changed, 112 insertions(+) create mode 100644 doc/examples/http_multiclient.c diff --git a/doc/examples

[FFmpeg-devel] [PATCH 1/9] lavf/network: split ff_listen_bind into ff_listen and ff_accept

2015-07-02 Thread Stephan Holljes
Signed-off-by: Stephan Holljes klaxa1...@googlemail.com --- libavformat/network.c | 27 +-- libavformat/network.h | 20 2 files changed, 41 insertions(+), 6 deletions(-) diff --git a/libavformat/network.c b/libavformat/network.c index 47ade8c..7a326d2

[FFmpeg-devel] [PATCH 2/9] lavf/avio: add ffurl_accept and ffurl_handshake

2015-07-02 Thread Stephan Holljes
Signed-off-by: Stephan Holljes klaxa1...@googlemail.com --- libavformat/avio.c | 19 +++ libavformat/url.h | 18 ++ 2 files changed, 37 insertions(+) diff --git a/libavformat/avio.c b/libavformat/avio.c index c188adc..1182336 100644 --- a/libavformat/avio.c +++ b

[FFmpeg-devel] [PATCH 3/9] lavf/avio: add avio_accept and avio_handshake

2015-07-02 Thread Stephan Holljes
Signed-off-by: Stephan Holljes klaxa1...@googlemail.com --- libavformat/avio.h| 16 libavformat/aviobuf.c | 17 + 2 files changed, 33 insertions(+) diff --git a/libavformat/avio.h b/libavformat/avio.h index d3d9bbd..b7a4fa8 100644 --- a/libavformat/avio.h

Re: [FFmpeg-devel] GSoC update

2015-07-02 Thread Stephan Holljes
On Wed, Jul 1, 2015 at 4:10 PM, Nicolas George geo...@nsup.org wrote: Le duodi 12 messidor, an CCXXIII, Stephan Holljes a écrit : This might be a stupid question, but how would I go about that? Just use open() and read() from stdio.h or are there structs that allow me to do that even more

[FFmpeg-devel] [PATCH 7/9] lavf/http: increase range for listen, handle connection closing accordingly, add http_handshake and move handshake logic there

2015-07-02 Thread Stephan Holljes
Signed-off-by: Stephan Holljes klaxa1...@googlemail.com --- libavformat/http.c | 45 - 1 file changed, 32 insertions(+), 13 deletions(-) diff --git a/libavformat/http.c b/libavformat/http.c index d9c3624..95065f5 100644 --- a/libavformat/http.c +++ b

[FFmpeg-devel] [PATCH 9/9] Add http multi-client example code

2015-07-02 Thread Stephan Holljes
Signed-off-by: Stephan Holljes klaxa1...@googlemail.com --- doc/examples/Makefile | 1 + doc/examples/http_multiclient.c | 101 2 files changed, 102 insertions(+) create mode 100644 doc/examples/http_multiclient.c diff --git a/doc/examples

[FFmpeg-devel] [PATCH 8/9] doc/protocols: document experimental mutli-client api

2015-07-02 Thread Stephan Holljes
Signed-off-by: Stephan Holljes klaxa1...@googlemail.com --- doc/protocols.texi | 2 ++ 1 file changed, 2 insertions(+) diff --git a/doc/protocols.texi b/doc/protocols.texi index 453dbcf..39a132a 100644 --- a/doc/protocols.texi +++ b/doc/protocols.texi @@ -292,6 +292,8 @@ autodetection

[FFmpeg-devel] [PATCH 4/9] lavf/tcp: add tcp_accept

2015-07-02 Thread Stephan Holljes
Signed-off-by: Stephan Holljes klaxa1...@googlemail.com --- libavformat/tcp.c | 19 +++ 1 file changed, 19 insertions(+) diff --git a/libavformat/tcp.c b/libavformat/tcp.c index f24cad2..875da50 100644 --- a/libavformat/tcp.c +++ b/libavformat/tcp.c @@ -19,6 +19,7

[FFmpeg-devel] [PATCH 5/9] lavf/tcp: increase range for listen and call the underlying socket operations accordingly

2015-07-02 Thread Stephan Holljes
Signed-off-by: Stephan Holljes klaxa1...@googlemail.com --- libavformat/tcp.c | 16 +++- 1 file changed, 11 insertions(+), 5 deletions(-) diff --git a/libavformat/tcp.c b/libavformat/tcp.c index 875da50..91c70d4 100644 --- a/libavformat/tcp.c +++ b/libavformat/tcp.c @@ -45,7 +45,7

Re: [FFmpeg-devel] GSoC update

2015-06-27 Thread Stephan Holljes
2001 From: Stephan Holljes klaxa1...@googlemail.com Date: Sun, 28 Jun 2015 06:06:16 +0200 Subject: [PATCH 01/10] lavf/network: split ff_listen_bind into ff_listen and ff_accept Signed-off-by: Stephan Holljes klaxa1...@googlemail.com --- libavformat/network.c | 27

Re: [FFmpeg-devel] GSoC update

2015-06-26 Thread Stephan Holljes
On Fri, Jun 26, 2015 at 10:51 AM, Nicolas George geo...@nsup.org wrote: Le septidi 7 messidor, an CCXXIII, Stephan Holljes a écrit : Thanks, I understand the datastructures and their interaction a lot better now. I discussed it with a friend yesterday too and there a lot of the things started

Re: [FFmpeg-devel] GSoC update

2015-06-23 Thread Stephan Holljes
Thank you for the detailed reply. It has helped me understand the structures a lot better than before. Comments inline. On Tue, Jun 23, 2015 at 5:25 PM, Nicolas George geo...@nsup.org wrote: This has better go to the mailing list. Le quintidi 5 messidor, an CCXXIII, Stephan Holljes a écrit

[FFmpeg-devel] [PATCH][GSoC] lavf/http: Correctly terminate session with HTTP POST client.

2015-06-09 Thread Stephan Holljes
Send a footer to correctly close client sockets. This fixes network errors in client applications. Signed-off-by: Stephan Holljes klaxa1...@googlemail.com --- libavformat/http.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/libavformat/http.c b/libavformat/http.c index

Re: [FFmpeg-devel] [PATCH][GSoC] lavf/http: Add simple autodetection for client HTTP method, based on AVIO_FLAG_READ.

2015-06-06 Thread Stephan Holljes
On Sat, Jun 6, 2015 at 9:47 AM, Nicolas George geo...@nsup.org wrote: Le septidi 17 prairial, an CCXXIII, Stephan Holljes a écrit : Signed-off-by: Stephan Holljes klaxa1...@googlemail.com --- libavformat/http.c | 9 + 1 file changed, 9 insertions(+) LGTM. Michael, I have pushed

[FFmpeg-devel] [PATCH][GSoC] lavf/http: Add simple autodetection for client HTTP method, based on AVIO_FLAG_READ.

2015-06-04 Thread Stephan Holljes
Signed-off-by: Stephan Holljes klaxa1...@googlemail.com --- libavformat/http.c | 9 + 1 file changed, 9 insertions(+) diff --git a/libavformat/http.c b/libavformat/http.c index 90e88ad..32fc1ce 100644 --- a/libavformat/http.c +++ b/libavformat/http.c @@ -563,6 +563,7 @@ static int

Re: [FFmpeg-devel] [PATCH][GSoC] lavf/http: Parse and set HTTP method when listening on HTTP(S)

2015-06-03 Thread Stephan Holljes
On Tue, Jun 2, 2015 at 10:56 AM, Nicolas George geo...@nsup.org wrote: Le quartidi 14 prairial, an CCXXIII, Stephan Holljes a écrit : I agree, I have probably thought a little bit too far ahead. I hope the attached patches are okay. I'm somewhat unsure about the first patch, because it checks

Re: [FFmpeg-devel] [PATCH][GSoC] lavf/http: Parse and set HTTP method when listening on HTTP(S)

2015-06-03 Thread Stephan Holljes
understood what you meant. From 3af5c5867672624d45de447d11c2107b3c77742c Mon Sep 17 00:00:00 2001 From: Stephan Holljes klaxa1...@googlemail.com Date: Wed, 3 Jun 2015 20:57:53 +0200 Subject: [PATCH 5/5] lavf/http: Indent else-clause. Signed-off-by: Stephan Holljes klaxa1...@googlemail.com

Re: [FFmpeg-devel] [PATCH][GSoC] lavf/http: Parse and set HTTP method when listening on HTTP(S)

2015-06-01 Thread Stephan Holljes
On Sat, May 30, 2015 at 10:13 AM, Nicolas George geo...@nsup.org wrote: Le decadi 10 prairial, an CCXXIII, Stephan Holljes a écrit : Should method be reassigned or should the set value be kept? As far as I can tell the only way to set method is by specifying it as an option in the command line

Re: [FFmpeg-devel] [PATCH][GSoC] lavf/http: Parse and set HTTP method when listening on HTTP(S)

2015-06-01 Thread Stephan Holljes
On Mon, Jun 1, 2015 at 10:52 PM, Nicolas George geo...@nsup.org wrote: Le tridi 13 prairial, an CCXXIII, Stephan Holljes a écrit : After looking at the ffserver code, I'm wondering if maintaining a list of clients as HTTPContext or custom wrapper structs would make sense. For the time being

Re: [FFmpeg-devel] [PATCH][GSoC] lavf/http: Parse and set HTTP method when listening on HTTP(S)

2015-05-29 Thread Stephan Holljes
On Fri, May 29, 2015 at 4:19 PM, wm4 nfx...@googlemail.com wrote: On Fri, 29 May 2015 16:12:27 +0200 Stephan Holljes klaxa1...@googlemail.com wrote: Hi, On Fri, May 29, 2015 at 11:54 AM, Michael Niedermayer michae...@gmx.at wrote: On Fri, May 29, 2015 at 05:05:08AM +0200, Stephan Holljes

Re: [FFmpeg-devel] [PATCH][GSoC] lavf/http: Parse and set HTTP method when listening on HTTP(S)

2015-05-29 Thread Stephan Holljes
On Fri, May 29, 2015 at 4:34 PM, Stephan Holljes klaxa1...@googlemail.com wrote: On Fri, May 29, 2015 at 4:19 PM, wm4 nfx...@googlemail.com wrote: On Fri, 29 May 2015 16:12:27 +0200 Stephan Holljes klaxa1...@googlemail.com wrote: Hi, On Fri, May 29, 2015 at 11:54 AM, Michael Niedermayer

Re: [FFmpeg-devel] [PATCH][GSoC] lavf/http: Parse and set HTTP method when listening on HTTP(S)

2015-05-29 Thread Stephan Holljes
On Fri, May 29, 2015 at 7:10 PM, Nicolas George geo...@nsup.org wrote: Le decadi 10 prairial, an CCXXIII, Stephan Holljes a écrit : From 33a479200b9a941d0783d941c6ea68f8b85cc4de Mon Sep 17 00:00:00 2001 From: Stephan Holljes klaxa1...@googlemail.com Date: Fri, 29 May 2015 16:47:11 +0200

[FFmpeg-devel] [PATCH][GSoC] lavf/http: Parse and set HTTP method when listening on HTTP(S)

2015-05-28 Thread Stephan Holljes
Signed-off-by: Stephan Holljes klaxa1...@googlemail.com --- libavformat/http.c | 8 1 file changed, 8 insertions(+) diff --git a/libavformat/http.c b/libavformat/http.c index 4f6716a..3fad43d 100644 --- a/libavformat/http.c +++ b/libavformat/http.c @@ -556,6 +556,14 @@ static int

Re: [FFmpeg-devel] [PATCH] libavformat/http.c: Make http-listen work as an input stream.

2015-04-06 Thread Stephan Holljes
On Mon, Apr 6, 2015 at 1:47 PM, Lukasz Marek lukasz.m.lu...@gmail.com wrote: On Apr 5, 2015 6:02 PM, Stephan Holljes klaxa1...@googlemail.com wrote: With this patch http can be used to listen for POST data to be used as an input stream. Signed-off-by: Stephan Holljes klaxa1...@googlemail.com

[FFmpeg-devel] [PATCH] libavformat/http.c: Make http-listen work as an input stream.

2015-04-05 Thread Stephan Holljes
With this patch http can be used to listen for POST data to be used as an input stream. Signed-off-by: Stephan Holljes klaxa1...@googlemail.com --- libavformat/http.c | 7 +-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/libavformat/http.c b/libavformat/http.c index 3276737

Re: [FFmpeg-devel] [GSoC] Proof-of-concept HTTP Server

2015-04-02 Thread Stephan Holljes
On Mon, Mar 30, 2015 at 5:19 PM, Nicolas George geo...@nsup.org wrote: Le nonidi 9 germinal, an CCXXIII, Stephan Holljes a écrit : I hope this addresses the issues mentioned. I added a new label in case of failure in http_open() in favor of duplicated code (i.e. calling av_dict_free() multiple

Re: [FFmpeg-devel] [GSoC] Proof-of-concept HTTP Server

2015-03-28 Thread Stephan Holljes
I hope this addresses the issues mentioned. I added a new label in case of failure in http_open() in favor of duplicated code (i.e. calling av_dict_free() multiple times). I copied the style from the other functions. Signed-off-by: Stephan Holljes klaxa1...@googlemail.com --- doc/protocols.texi

Re: [FFmpeg-devel] [GSoC] Proof-of-concept HTTP Server

2015-03-25 Thread Stephan Holljes
(s-hd, buf, size); -- 2.3.3 On Sun, Mar 22, 2015 at 10:33 AM, Nicolas George geo...@nsup.org wrote: Le primidi 1er germinal, an CCXXIII, Stephan Holljes a écrit : Please comment. As Michael pointed out, the patch was mangled at sending. That happens with mail user agent that rely on rich text

[FFmpeg-devel] [GSoC] Proof-of-concept HTTP Server

2015-03-21 Thread Stephan Holljes
, Stephan Holljes --- libavformat/http.c | 113 ++-- 1 file changed, 83 insertions(+), 30 deletions(-) diff --git a/libavformat/http.c b/libavformat/http.c index da3c9be..d61e4e2 100644 --- a/libavformat/http.c +++ b/libavformat/http.c @@ -96,8 +96,12

Re: [FFmpeg-devel] [GSoC] Proof-of-concept HTTP Server

2015-03-21 Thread Stephan Holljes
Hi, what would be the correct way to create patches that won't be corrupted? I merely tried to copy what I have seen on the mailing-list before, apparently I didn't do a very good job ;) Regards, Stephan Holljes On Sun, Mar 22, 2015 at 12:24 AM, Michael Niedermayer michae...@gmx.at wrote

Re: [FFmpeg-devel] [GSoC] Proof-of-concept HTTP Server

2015-03-21 Thread Stephan Holljes
On Sun, Mar 22, 2015 at 2:34 AM, Michael Niedermayer michae...@gmx.at wrote: On Sun, Mar 22, 2015 at 12:33:57AM +0100, Stephan Holljes wrote: Hi, what would be the correct way to create patches that won't be corrupted? I merely tried to copy what I have seen on the mailing-list before

[FFmpeg-devel] GSoC Introduction

2015-03-08 Thread Stephan Holljes
Hi, my name is Stephan Holljes, my IRC nick is klaxa. I want to work on implementing servers for network protocols within the GSoC project. I've been using ffmpeg for many years already and I always wanted to contribute in a way other than providing end-user support, but I never really found

<    1   2   3