Re: [FFmpeg-devel] [PATCH] lavf/http: Export headers as AVDictionary

2015-08-26 Thread Stephan Holljes
On Tue, Aug 25, 2015 at 4:51 PM, Nicolas George wrote: > Le quintidi 5 fructidor, an CCXXIII, Stephan Holljes a écrit : >> Signed-off-by: Stephan Holljes >> --- >> libavformat/http.c | 13 + >> 1 file changed, 13 insertions(+) >> >> diff --git a/libavformat/http.c b/libavformat/http.

Re: [FFmpeg-devel] [PATCH] lavf/http: Export headers as AVDictionary

2015-08-25 Thread Nicolas George
Le quintidi 5 fructidor, an CCXXIII, Stephan Holljes a écrit : > Signed-off-by: Stephan Holljes > --- > libavformat/http.c | 13 + > 1 file changed, 13 insertions(+) > > diff --git a/libavformat/http.c b/libavformat/http.c > index fba87ac..064239b 100644 > --- a/libavformat/http.c >

Re: [FFmpeg-devel] [PATCH] lavf/http: Export headers as AVDictionary

2015-08-22 Thread Stephan Holljes
On Sat, Aug 22, 2015 at 11:00 AM, Nicolas George wrote: > Le tridi 3 fructidor, an CCXXIII, Stephan Holljes a écrit : >> Actually I just noticed that Pragma-headers may appear multiple times. >> What would be a good way to handle that? I thought about expanding the >> header tag from "Pragma" to "

Re: [FFmpeg-devel] [PATCH] lavf/http: Export headers as AVDictionary

2015-08-22 Thread Nicolas George
Le tridi 3 fructidor, an CCXXIII, Stephan Holljes a écrit : > Actually I just noticed that Pragma-headers may appear multiple times. > What would be a good way to handle that? I thought about expanding the > header tag from "Pragma" to "Pragma-%02d" with either an incrementing > number or just usin

Re: [FFmpeg-devel] [PATCH] lavf/http: Export headers as AVDictionary

2015-08-20 Thread Stephan Holljes
Actually I just noticed that Pragma-headers may appear multiple times. What would be a good way to handle that? I thought about expanding the header tag from "Pragma" to "Pragma-%02d" with either an incrementing number or just using s->nb_headers. Is there a better solution? Regards, Stephan _