Re: [FFmpeg-devel] [PATCH] Allow mpjpeg demuxer to process MIME parts which do not include Content-Length header.

2015-11-27 Thread Alex Agranovsky
On November 25, 2015 at 10:35:33 AM, Alex Agranovsky (a...@sighthound.com) wrote: On November 24, 2015 at 6:06:36 PM, Michael Niedermayer (michae...@gmx.at) wrote: On Tue, Nov 24, 2015 at 03:01:28PM -0500, Alex Agranovsky wrote:  [...]  > From 2c253d7978a6c9c2dc701d393eb5b9d68e831c98 Mon

Re: [FFmpeg-devel] [PATCH] Allow mpjpeg demuxer to process MIME parts which do not include Content-Length header.

2015-11-25 Thread Alex Agranovsky
On November 24, 2015 at 6:06:36 PM, Michael Niedermayer (michae...@gmx.at) wrote: On Tue, Nov 24, 2015 at 03:01:28PM -0500, Alex Agranovsky wrote:  [...]  > From 2c253d7978a6c9c2dc701d393eb5b9d68e831c98 Mon Sep 17 00:00:00 2001  > From: Alex Agranovsky <a...@sighthound.com>  >

Re: [FFmpeg-devel] [PATCH] Allow mpjpeg demuxer to process MIME parts which do not include Content-Length header.

2015-11-24 Thread Alex Agranovsky
--  Alex Agranovsky Sighthound, Inc www.sighthound.com On November 24, 2015 at 12:36:30 PM, wm4 (nfx...@googlemail.com) wrote: On Tue, 24 Nov 2015 11:39:07 -0500 Alex Agranovsky <a...@sighthound.com> wrote: > On November 24, 2015 at 10:32:47 AM, wm4 (nfx...@googl

Re: [FFmpeg-devel] [PATCH] Allow mpjpeg demuxer to process MIME parts which do not include Content-Length header.

2015-11-24 Thread Alex Agranovsky
On November 24, 2015 at 10:32:47 AM, wm4 (nfx...@googlemail.com) wrote: On Tue, 24 Nov 2015 00:16:06 -0500 Alex Agranovsky <a...@sighthound.com> wrote: > From a2a0b9e0da14b6e82aa783535ec1878c8ffbede0 Mon Sep 17 00:00:00 2001 > From: Alex Agranovsky <a...@sighthound.com> &

[FFmpeg-devel] [PATCH] Allow mpjpeg demuxer to process MIME parts which do not include Content-Length header.

2015-11-23 Thread Alex Agranovsky
This addresses ticket 5023From a2a0b9e0da14b6e82aa783535ec1878c8ffbede0 Mon Sep 17 00:00:00 2001 From: Alex Agranovsky <a...@sighthound.com> Date: Tue, 24 Nov 2015 00:06:14 -0500 Subject: [PATCH 1/2] Allow mpjpeg demuxer to process MIME parts which do not include Content-Length header.

Re: [FFmpeg-devel] [PATCH] avfilter/drawtext: allow to format pts with strftime

2015-10-10 Thread Alex Agranovsky
Hi — are there still outstanding issues with the patch, or is it good to go? Thanks, - Alex On October 9, 2015 at 8:57:22 AM, Alex Agranovsky (a...@sighthound.com) wrote: Thanks for your comments. I’m attaching the amended patch, hopefully it addresses all of them. Please let me know

Re: [FFmpeg-devel] [PATCH] avfilter/drawtext: allow to format pts with strftime

2015-10-10 Thread Alex Agranovsky
we have not been very careful with it, but for legal reasons it would be better to have it, and I can not add it myself. Please see the modified patch attached.From 0d759b996718de1987741906480534d2e0f739ff Mon Sep 17 00:00:00 2001 From: Alex Agranovsky <a...@sighthound.com> Date: Sat, 10 O

Re: [FFmpeg-devel] [PATCH] avfilter/drawtext: allow to format pts with strftime

2015-10-09 Thread Alex Agranovsky
Thanks for your comments. I’m attaching the amended patch, hopefully it addresses all of them. Please let me know if something else is out of order. - Alex On October 9, 2015 at 2:23:42 AM, Nicolas George (geo...@nsup.org) wrote: Le septidi 17 vendémiaire, an CCXXIV, Alex Agranovsky a écrit

[FFmpeg-devel] [PATCH] avfilter/drawtext: allow to format pts with strftime

2015-10-08 Thread Alex Agranovsky
--  Alex Agranovsky 0001-avfilter-drawtext-allow-to-format-pts-with-strftime.patch Description: Binary data ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-devel

[FFmpeg-devel] [PATCH] mpjpeg: probe should require same constraints as packet reader - both proper content-type and content-size must be present

2015-09-13 Thread Alex Agranovsky
0001-mpjpeg-probe-should-require-same-constraints-as-pack.patch Description: Binary data ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-devel

Re: [FFmpeg-devel] [PATCH] mpjpeg: probe should require same constraints as packet reader - both proper content-type and content-size must be present

2015-09-13 Thread Alex Agranovsky
A slightly improved version … On September 13, 2015 at 4:56:21 PM, Alex Agranovsky (a...@sighthound.com) wrote: 0001-mpjpeg-probe-should-require-same-constraints-as-pack.patch Description: Binary data ___ ffmpeg-devel mailing list ffmpeg-devel

Re: [FFmpeg-devel] [PATCH] mpjpeg: CRLF terminating a sequence of MIME headers should not cause an error

2015-09-12 Thread Alex Agranovsky
e, "image/jpeg")) {                  av_log(s, AV_LOG_ERROR, --  Alex Agranovsky Sighthound, Inc www.sighthound.com On September 12, 2015 at 4:50:54 PM, Alex Agranovsky (a...@sighthound.com) wrote:  libavformat/mpjpegdec.c | 22 ++  1 file changed, 18

[FFmpeg-devel] [PATCH] mpjpeg: CRLF terminating a sequence of MIME headers should not cause an error

2015-09-12 Thread Alex Agranovsky
LL) +            break;            if (line[0] == '\0')              break;            ret = split_tag_value(, , line); -        if (ret < 0) +        if (ret < 0 || tag == NULL || value == NULL)              return ret;            if (!av_strcasecmp(tag, "Content-type")) {

[FFmpeg-devel] [PATCH] Allow mpjpeg headers parsing to succeed upon EOF, if required headers are present

2015-09-12 Thread Alex Agranovsky
(AVFormatContext *s)          ret = get_line(s->pb, line, sizeof(line));          if (ret < 0) -            return ret; +            break;          if (line[0] == '\0')              break; --  Alex Agranovsky Sighthound, Inc www.sighthound.com ___

Re: [FFmpeg-devel] [PATCH] mpjpeg: trim header name/value of MIME headers while probing

2015-09-12 Thread Alex Agranovsky
Attached. --  Alex Agranovsky Sighthound, Inc www.sighthound.com On September 12, 2015 at 5:41:56 PM, Michael Niedermayer (michae...@gmx.at) wrote: On Sat, Sep 12, 2015 at 05:10:06PM -0400, Alex Agranovsky wrote: >  libavformat/mpjpegdec.c | 15 +++ >  

Re: [FFmpeg-devel] [PATCH] mpjpeg: CRLF terminating a sequence of MIME headers should not cause an error

2015-09-12 Thread Alex Agranovsky
You’re correct, sir. New patch is attached. --  Alex Agranovsky Sighthound, Inc www.sighthound.com On September 12, 2015 at 5:54:23 PM, Michael Niedermayer (michae...@gmx.at) wrote: On Sat, Sep 12, 2015 at 05:05:04PM -0400, Alex Agranovsky wrote: > Amended: one of the

Re: [FFmpeg-devel] Proposed patches to mpjpeg demux

2015-09-12 Thread Alex Agranovsky
Michael, thanks! Is the other change (mpjpegdec.c) still in review, or had it been overlooked due to not being included in the amended patch? -Best. - Alex --  Alex Agranovsky Sighthound, Inc www.sighthound.com On September 11, 2015 at 6:43:31 PM, Michael Niedermayer (michae

Re: [FFmpeg-devel] Proposed patches to mpjpeg demux

2015-09-12 Thread Alex Agranovsky
Sure thing — will split and resubmit. --  Alex Agranovsky Sighthound, Inc www.sighthound.com On September 12, 2015 at 2:37:52 PM, Michael Niedermayer (michae...@gmx.at) wrote: On Sat, Sep 12, 2015 at 02:06:28PM -0400, Alex Agranovsky wrote: > Michael, tha

[FFmpeg-devel] [PATCH] mpjpeg: trim header name/value of MIME headers while probing

2015-09-12 Thread Alex Agranovsky
       p++;        *value = p; +    trim_right(*value);        return 0;  } --  Alex Agranovsky Sighthound, Inc www.sighthound.com ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-devel

Re: [FFmpeg-devel] [PATCH] Allow mpjpeg headers parsing to succeed upon EOF, if required headers are present

2015-09-12 Thread Alex Agranovsky
Modified patch is attached. --  Alex Agranovsky Sighthound, Inc www.sighthound.com On September 12, 2015 at 5:37:51 PM, Michael Niedermayer (michae...@gmx.at) wrote: On Sat, Sep 12, 2015 at 04:33:17PM -0400, Alex Agranovsky wrote: >  libavformat/mpjpegdec.c | 2 +- >  

Re: [FFmpeg-devel] [PATCH] Allow mpjpeg headers parsing to succeed upon EOF, if required headers are present

2015-09-12 Thread Alex Agranovsky
My bad — sorry about that.  On September 12, 2015 at 7:08:34 PM, Michael Niedermayer (michae...@gmx.at) wrote: On Sat, Sep 12, 2015 at 06:49:41PM -0400, Alex Agranovsky wrote: > Modified patch is attached. > > --  > Alex Agranovsky > Sighthound, Inc >

Re: [FFmpeg-devel] Proposed patches to mpjpeg demux

2015-09-11 Thread Alex Agranovsky
Quick update: format.c patch needs to be amended, to include a NULL check. --  Alex Agranovsky Sighthound, Inc www.sighthound.com On September 10, 2015 at 12:04:55 PM, Alex Agranovsky (a...@sighthound.com) wrote: Please look at the attached patches. They accomplish

[FFmpeg-devel] Proposed patches to mpjpeg demux

2015-09-10 Thread Alex Agranovsky
flexibility for the incoming data --  Alex Agranovsky Sighthound, Inc www.sighthound.com ffmpeg3.patch Description: Binary data ffmpeg4.patch Description: Binary data ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org http://ffmpeg.org/mailman