Re: [FFmpeg-devel] [PATCH] matroskaenc: Add support for writing video projection.

2017-01-27 Thread James Almer
On 1/27/2017 11:21 PM, Aaron Colwell wrote: > On Fri, Jan 27, 2017 at 5:46 PM James Almer wrote: > >> On 1/27/2017 5:12 PM, Aaron Colwell wrote: >>> Adding support for writing spherical metadata in Matroska. >>> >>> >>> 0001-matroskaenc-Add-support-for-writing-video-projection.patch >>> >>> >>> F

Re: [FFmpeg-devel] [PATCH 5/9] nistspheredec: prevent overflow during block alignment calculation

2017-01-27 Thread Ronald S. Bultje
Hi, On Fri, Jan 27, 2017 at 9:28 PM, Michael Niedermayer wrote: > On Sat, Jan 28, 2017 at 01:26:40AM +0100, Andreas Cadhalpun wrote: > > On 27.01.2017 02:56, Marton Balint wrote: > > > I see 3 problems (wm4 explicitly named them, but I also had them in > mind) > > > - Little benefit, yet > > > -

Re: [FFmpeg-devel] [PATCH 5/9] nistspheredec: prevent overflow during block alignment calculation

2017-01-27 Thread Michael Niedermayer
On Sat, Jan 28, 2017 at 01:26:40AM +0100, Andreas Cadhalpun wrote: > On 27.01.2017 02:56, Marton Balint wrote: > > I see 3 problems (wm4 explicitly named them, but I also had them in mind) > > - Little benefit, yet > > - Makes the code less clean, more cluttered > > - Increases binary size > > > >

Re: [FFmpeg-devel] [PATCH] matroskaenc: Add support for writing video projection.

2017-01-27 Thread Aaron Colwell
On Fri, Jan 27, 2017 at 5:46 PM James Almer wrote: > On 1/27/2017 5:12 PM, Aaron Colwell wrote: > > Adding support for writing spherical metadata in Matroska. > > > > > > 0001-matroskaenc-Add-support-for-writing-video-projection.patch > > > > > > From 5a9cf56bf3114186412bb5572b153f886edb6ddb Mon

Re: [FFmpeg-devel] [PATCH] mov: Fix spherical metadata_source parsing.

2017-01-27 Thread James Almer
On 1/27/2017 2:44 PM, Aaron Colwell wrote: > The metadata_source field is a null-terminated string, like other ISOBMFF > strings, not an 8-bit length followed by string characters. This patch > fixes the parsing code so it rejects svhd boxes that are too small and > skips to the end of the svhd box

Re: [FFmpeg-devel] [PATCH] matroskaenc: Add support for writing video projection.

2017-01-27 Thread James Almer
On 1/27/2017 5:12 PM, Aaron Colwell wrote: > Adding support for writing spherical metadata in Matroska. > > > 0001-matroskaenc-Add-support-for-writing-video-projection.patch > > > From 5a9cf56bf3114186412bb5572b153f886edb6ddb Mon Sep 17 00:00:00 2001 > From: Aaron Colwell > Date: Fri, 27 Jan 2

Re: [FFmpeg-devel] [PATCH] lavc/mjpegdec: hint next marker position in ff_mjpeg_find_marker

2017-01-27 Thread Michael Niedermayer
On Fri, Jan 27, 2017 at 09:47:18AM +0100, Matthieu Bouron wrote: > On Fri, Jan 27, 2017 at 02:30:40AM +0100, Michael Niedermayer wrote: > > On Thu, Jan 26, 2017 at 05:47:51PM +0100, Matthieu Bouron wrote: > > > Speeds up next marker search when a SOS marker is found. > > > > > > ff_mjpeg_find_mark

Re: [FFmpeg-devel] [PATCH 5/9] nistspheredec: prevent overflow during block alignment calculation

2017-01-27 Thread Andreas Cadhalpun
On 27.01.2017 02:56, Marton Balint wrote: > I see 3 problems (wm4 explicitly named them, but I also had them in mind) > - Little benefit, yet > - Makes the code less clean, more cluttered > - Increases binary size > > The ideas I proposed (use macros, use common / factorized checks for common > va

Re: [FFmpeg-devel] [PATCH 1/3] mpeg12dec: validate color space

2017-01-27 Thread Andreas Cadhalpun
On 26.01.2017 13:59, Ronald S. Bultje wrote: > On Wed, Jan 25, 2017 at 8:56 PM, Andreas Cadhalpun < > andreas.cadhal...@googlemail.com> wrote: >> On 26.01.2017 02:26, Ronald S. Bultje wrote: >>> The question is not whether changing A or B towards the other makes the >>> combination consistent. The

Re: [FFmpeg-devel] [PATCH] lavf/tls_openssl: Support building with LibreSSL

2017-01-27 Thread Mark Thompson
On 27/01/17 21:42, Marek Behún wrote: > In configure, check if the function BIO_meth_new is defined in the > corresponding OpenSSL/LibreSSL library, and if yes, define > HAVE_OPENSSL_BIO_METH_CALLS variable to 1 in config.h, or to 0 > otherwise. > > Change the heuristics preprocessor check > #if

Re: [FFmpeg-devel] [PATCH]lavf/mov: Export vendor metadata

2017-01-27 Thread Michael Niedermayer
On Mon, Dec 12, 2016 at 12:12:37PM +0100, Carl Eugen Hoyos wrote: > Hi! > > I saw only after writing this patch that a Google employee has sent > a more complicated variant of this patch in November (searching for > a description of the vendor field showed the patch). > > Please comment, Carl E

[FFmpeg-devel] [PATCH] lavf/tls_openssl: Support building with LibreSSL

2017-01-27 Thread Marek Behún
In configure, check if the function BIO_meth_new is defined in the corresponding OpenSSL/LibreSSL library, and if yes, define HAVE_OPENSSL_BIO_METH_CALLS variable to 1 in config.h, or to 0 otherwise. Change the heuristics preprocessor check #if OPENSSL_VERSION_NUMBER >= 0x101fL to #if HAVE

[FFmpeg-devel] [PATCH] avformat: fix ID3v2 parser for v2.2 comment frames

2017-01-27 Thread Christopher Snowhill
From: Chris Moeller --- libavformat/id3v2.c | 7 +-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/libavformat/id3v2.c b/libavformat/id3v2.c index 9969d7a..f7fa3ef 100644 --- a/libavformat/id3v2.c +++ b/libavformat/id3v2.c @@ -823,6 +823,7 @@ static void id3v2_parse(AVIOConte

[FFmpeg-devel] [PATCH] avformat: fix ID3v2 parser for v2.2 comment frames

2017-01-27 Thread Christopher Snowhill
It needs this patch first, but I have some example MP3 files that decode gaplessly with these patches applied. Encoded using the latest iTunes as of this writing (12.5.5.5) on macOS Sierra. Attaching the MP3 files, as well as source FLAC files, after this patch goes through. _

Re: [FFmpeg-devel] [PATCH] lavf/matroskaenc.c: Free dyn bufs in mkv_free. Fixes memory leaks when muxing fails.

2017-01-27 Thread Michael Niedermayer
On Thu, Jan 26, 2017 at 11:26:46AM -0800, Sasi Inguva wrote: > Signed-off-by: Sasi Inguva > --- > libavformat/matroskaenc.c | 17 + > 1 file changed, 17 insertions(+) applied thx [...] -- Michael GnuPG fingerprint: 9FF2128B147EF6730BADF133611EC787040B0FAB I have often rep

Re: [FFmpeg-devel] [PATCH] ffmpeg.c: Add output file index and stream index to vstats file.

2017-01-27 Thread Michael Niedermayer
On Wed, Jan 25, 2017 at 04:41:44PM -0800, Sasi Inguva wrote: > Signed-off-by: Sasi Inguva > --- > doc/ffmpeg.texi | 8 +++- > ffmpeg.c| 9 +++-- > ffmpeg_opt.c| 2 +- > 3 files changed, 15 insertions(+), 4 deletions(-) applied thx [...] -- Michael GnuPG fingerprint: 9F

[FFmpeg-devel] [PATCH] matroskaenc: Add support for writing video projection.

2017-01-27 Thread Aaron Colwell
Adding support for writing spherical metadata in Matroska. From 5a9cf56bf3114186412bb5572b153f886edb6ddb Mon Sep 17 00:00:00 2001 From: Aaron Colwell Date: Fri, 27 Jan 2017 12:07:25 -0800 Subject: [PATCH] matroskaenc: Add support for writing video projection element. Adding support for writing s

Re: [FFmpeg-devel] [PATCH] lavf/tls_openssl: Support building with LibreSSL

2017-01-27 Thread Mark Thompson
On 27/01/17 19:15, Marek Behun wrote: > On Fri, 27 Jan 2017 18:41:09 + > Mark Thompson wrote: > >> On 27/01/17 17:31, Marek Behún wrote: >>> Use the LIBRESSL_VERSION_NUMBER macro to determine if building with >>> LibreSSL instead of OpenSSL. This is pretty straightforward, since >>> it is eno

Re: [FFmpeg-devel] [PATCH] avfilter/vf_gblur: Increase supported pixel count from 31bit to 32bit in filter_postscale()

2017-01-27 Thread Michael Niedermayer
On Sat, Jan 21, 2017 at 11:01:50PM +0100, Michael Niedermayer wrote: > Fixes CID1396252 > > RFC: Is it preferred to use 64bit ? > > Signed-off-by: Michael Niedermayer > --- > libavfilter/vf_gblur.c | 8 > 1 file changed, 4 insertions(+), 4 deletions(-) applied [...] -- Michael G

Re: [FFmpeg-devel] [PATCH] avfilter: do not write to unwritable frame

2017-01-27 Thread Nicolas George
L'octidi 8 pluviôse, an CCXXV, Muhammad Faiz a écrit : > affect filters that set partial_buf_size > test-case > ffplay -i lavfi 'aevalsrc=sin(1000*t*t), aformat=sample_fmts=fltp, asplit > [a][b]; > [a] firequalizer=fixed=on, showcqt=s=1280x360 [a1]; > [b] firequalizer=fixed=on, showcqt=s=1280x360

Re: [FFmpeg-devel] [PATCH] lavf/tls_openssl: Support building with LibreSSL

2017-01-27 Thread Marek Behun
On Fri, 27 Jan 2017 18:41:09 + Mark Thompson wrote: > On 27/01/17 17:31, Marek Behún wrote: > > Use the LIBRESSL_VERSION_NUMBER macro to determine if building with > > LibreSSL instead of OpenSSL. This is pretty straightforward, since > > it is enough to add this check to existing #if macros.

[FFmpeg-devel] [PATCH] avfilter/showwavespic : case of empty audio stream, fixes ticket 6107

2017-01-27 Thread Александр Слободенюк
0001-avfilter-showwavespic-case-of-empty-audio-stream-fix.patch Description: Binary data ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-devel

Re: [FFmpeg-devel] [PATCH] lavf/tls_openssl: Support building with LibreSSL

2017-01-27 Thread Mark Thompson
On 27/01/17 17:31, Marek Behún wrote: > Use the LIBRESSL_VERSION_NUMBER macro to determine if building with > LibreSSL instead of OpenSSL. This is pretty straightforward, since > it is enough to add this check to existing #if macros. > > Signed-off-by: Marek Behun > --- > libavformat/tls_openssl

[FFmpeg-devel] [PATCH] avfilter: do not write to unwritable frame

2017-01-27 Thread Muhammad Faiz
affect filters that set partial_buf_size test-case ffplay -i lavfi 'aevalsrc=sin(1000*t*t), aformat=sample_fmts=fltp, asplit [a][b]; [a] firequalizer=fixed=on, showcqt=s=1280x360 [a1]; [b] firequalizer=fixed=on, showcqt=s=1280x360 [b1]; [a1][b1] vstack' Signed-off-by: Muhammad Faiz --- libavfil

[FFmpeg-devel] [PATCH] movenc: Add support for writing st3d and sv3d boxes.

2017-01-27 Thread Aaron Colwell
Adding support for writing spherical metadata in MP4 files. From 8eb03f706e5c490be7a9644018dd3efaf0154a81 Mon Sep 17 00:00:00 2001 From: Aaron Colwell Date: Fri, 27 Jan 2017 10:07:44 -0800 Subject: [PATCH] movenc: Add support for writing st3d and sv3d boxes. Adding support for writing spherical m

Re: [FFmpeg-devel] [PATCH] avfilter: do not write to unwritable frame

2017-01-27 Thread Muhammad Faiz
On 1/27/17, wm4 wrote: > On Fri, 27 Jan 2017 22:04:50 +0700 > Muhammad Faiz wrote: > >> On 1/27/17, wm4 wrote: >> > On Fri, 27 Jan 2017 18:42:03 +0700 >> > Muhammad Faiz wrote: >> > >> >> affect filters that set partial_buf_size >> >> test-case >> >> ffplay -i lavfi 'aevalsrc=sin(1000*t*t), afo

[FFmpeg-devel] [PATCH] mov: Fix spherical metadata_source parsing.

2017-01-27 Thread Aaron Colwell
The metadata_source field is a null-terminated string, like other ISOBMFF strings, not an 8-bit length followed by string characters. This patch fixes the parsing code so it rejects svhd boxes that are too small and skips to the end of the svhd box since we don't actually care about the contents of

[FFmpeg-devel] [PATCH] lavf/tls_openssl: Support building with LibreSSL

2017-01-27 Thread Marek Behún
Use the LIBRESSL_VERSION_NUMBER macro to determine if building with LibreSSL instead of OpenSSL. This is pretty straightforward, since it is enough to add this check to existing #if macros. Signed-off-by: Marek Behun --- libavformat/tls_openssl.c | 12 ++-- 1 file changed, 6 insertions(+

Re: [FFmpeg-devel] [PATCH] Ignore duplicate ID3 tags if vorbis tags exist

2017-01-27 Thread wm4
On Fri, 27 Jan 2017 17:32:08 +0100 Paul Arzelier wrote: > From 227d7d1f4b5665f824900cf2b14863621180dd1c Mon Sep 17 00:00:00 2001 > From: Polochon-street > Date: Fri, 27 Jan 2017 16:49:41 +0100 > Subject: [PATCH] Ignore ID3 tags if other tags are present (e.g. vorbis) > Originally-by: Ben Boeckel

Re: [FFmpeg-devel] [PATCH] avfilter: do not write to unwritable frame

2017-01-27 Thread wm4
On Fri, 27 Jan 2017 22:04:50 +0700 Muhammad Faiz wrote: > On 1/27/17, wm4 wrote: > > On Fri, 27 Jan 2017 18:42:03 +0700 > > Muhammad Faiz wrote: > > > >> affect filters that set partial_buf_size > >> test-case > >> ffplay -i lavfi 'aevalsrc=sin(1000*t*t), aformat=sample_fmts=fltp, asplit > >>

Re: [FFmpeg-devel] [PATCH] Ignore duplicate ID3 tags if vorbis tags exist

2017-01-27 Thread Paul Arzelier
I've added an id3v2_meta AVDictionary for the AVInternalFormat structure and edited mp3dec.c as wm4 suggested. It solves the issue Michael noticed, and passes the fate tests, but maybe it still need some work; tell me! Le 27/01/2017 à 07:02, wm4 a écrit : On Fri, 27 Jan 2017 03:03:03 +0100

Re: [FFmpeg-devel] [PATCH] avfilter: do not write to unwritable frame

2017-01-27 Thread Muhammad Faiz
On 1/27/17, wm4 wrote: > On Fri, 27 Jan 2017 18:42:03 +0700 > Muhammad Faiz wrote: > >> affect filters that set partial_buf_size >> test-case >> ffplay -i lavfi 'aevalsrc=sin(1000*t*t), aformat=sample_fmts=fltp, asplit >> [a][b]; >> [a] firequalizer=fixed=on, showcqt=s=1280x360 [a1]; >> [b] fireq

Re: [FFmpeg-devel] patch: the fastest video decoder ever? :)

2017-01-27 Thread u-9iep
Here comes a slightly better version, with rounding to nearest instead of rounding down at color bits truncation. I was unable to reliably measure any speed difference compared to the simplistic former version. The output quality now fully corresponds to the capabilities of rgb565 and the decoding

Re: [FFmpeg-devel] [PATCH] avformat: parse iTunes gapless information

2017-01-27 Thread wm4
On Thu, 26 Jan 2017 16:47:12 -0800 Christopher Snowhill wrote: > Signed-off-by: Christopher Snowhill > --- > libavformat/mp3dec.c | 77 > +++- > 1 file changed, 76 insertions(+), 1 deletion(-) > > diff --git a/libavformat/mp3dec.c b/libavformat/

Re: [FFmpeg-devel] [PATCH 5/9] nistspheredec: prevent overflow during block alignment calculation

2017-01-27 Thread wm4
On Thu, 26 Jan 2017 17:02:37 +0100 Michael Niedermayer wrote: > On Thu, Jan 26, 2017 at 06:43:45AM +0100, wm4 wrote: > > On Thu, 26 Jan 2017 03:20:02 +0100 > > Michael Niedermayer wrote: > > > > > On Thu, Jan 26, 2017 at 02:58:07AM +0100, Andreas Cadhalpun wrote: > > > > On 26.01.2017 02:29

Re: [FFmpeg-devel] [PATCH]lavf/mov: Export vendor metadata

2017-01-27 Thread wm4
On Fri, 27 Jan 2017 12:35:25 +0100 Carl Eugen Hoyos wrote: > 2017-01-27 11:55 GMT+01:00 wm4 : > > On Fri, 27 Jan 2017 11:21:08 +0100 > > Carl Eugen Hoyos wrote: > > > >> 2017-01-27 10:42 GMT+01:00 wm4 : > >> > On Fri, 27 Jan 2017 10:38:23 +0100 > >> > Carl Eugen Hoyos wrote: > >> > > >> >

Re: [FFmpeg-devel] [PATCH] avfilter: do not write to unwritable frame

2017-01-27 Thread wm4
On Fri, 27 Jan 2017 18:42:03 +0700 Muhammad Faiz wrote: > affect filters that set partial_buf_size > test-case > ffplay -i lavfi 'aevalsrc=sin(1000*t*t), aformat=sample_fmts=fltp, asplit > [a][b]; > [a] firequalizer=fixed=on, showcqt=s=1280x360 [a1]; > [b] firequalizer=fixed=on, showcqt=s=1280x3

[FFmpeg-devel] [PATCH] avfilter: do not write to unwritable frame

2017-01-27 Thread Muhammad Faiz
affect filters that set partial_buf_size test-case ffplay -i lavfi 'aevalsrc=sin(1000*t*t), aformat=sample_fmts=fltp, asplit [a][b]; [a] firequalizer=fixed=on, showcqt=s=1280x360 [a1]; [b] firequalizer=fixed=on, showcqt=s=1280x360 [b1]; [a1][b1] vstack' Signed-off-by: Muhammad Faiz --- libavfil

Re: [FFmpeg-devel] [PATCH]lavf/mov: Export vendor metadata

2017-01-27 Thread Carl Eugen Hoyos
2017-01-27 11:55 GMT+01:00 wm4 : > On Fri, 27 Jan 2017 11:21:08 +0100 > Carl Eugen Hoyos wrote: > >> 2017-01-27 10:42 GMT+01:00 wm4 : >> > On Fri, 27 Jan 2017 10:38:23 +0100 >> > Carl Eugen Hoyos wrote: >> > >> >> 2017-01-27 10:29 GMT+01:00 wm4 : >> >> > On Fri, 27 Jan 2017 10:19:32 +0100 >> >> >

Re: [FFmpeg-devel] [PATCH]lavf/mov: Export vendor metadata

2017-01-27 Thread wm4
On Fri, 27 Jan 2017 11:21:08 +0100 Carl Eugen Hoyos wrote: > 2017-01-27 10:42 GMT+01:00 wm4 : > > On Fri, 27 Jan 2017 10:38:23 +0100 > > Carl Eugen Hoyos wrote: > > > >> 2017-01-27 10:29 GMT+01:00 wm4 : > >> > On Fri, 27 Jan 2017 10:19:32 +0100 > >> > Carl Eugen Hoyos wrote: > >> > > >> >

Re: [FFmpeg-devel] [PATCH] fate: add SCC test

2017-01-27 Thread Paul B Mahol
On 1/26/17, Michael Niedermayer wrote: > On Wed, Jan 25, 2017 at 10:30:06PM +0100, Paul B Mahol wrote: >> Signed-off-by: Paul B Mahol >> --- >> tests/fate/subtitles.mak | 3 + >> tests/ref/fate/sub-scc | 519 >> +++ >> 2 files changed, 522 insertio

Re: [FFmpeg-devel] [PATCH]lavf/mov: Export vendor metadata

2017-01-27 Thread Carl Eugen Hoyos
2017-01-27 10:42 GMT+01:00 wm4 : > On Fri, 27 Jan 2017 10:38:23 +0100 > Carl Eugen Hoyos wrote: > >> 2017-01-27 10:29 GMT+01:00 wm4 : >> > On Fri, 27 Jan 2017 10:19:32 +0100 >> > Carl Eugen Hoyos wrote: >> > >> >> 2017-01-27 10:09 GMT+01:00 wm4 : >> >> > On Fri, 27 Jan 2017 09:39:03 +0100 >> >> >

Re: [FFmpeg-devel] [PATCH]lavf/mov: Export vendor metadata

2017-01-27 Thread Paul B Mahol
On 12/12/16, Carl Eugen Hoyos wrote: > Hi! > > I saw only after writing this patch that a Google employee has sent > a more complicated variant of this patch in November (searching for > a description of the vendor field showed the patch). > > Please comment, Carl Eugen > -1 _

Re: [FFmpeg-devel] [PATCH]lavf/mov: Export vendor metadata

2017-01-27 Thread wm4
On Fri, 27 Jan 2017 10:38:23 +0100 Carl Eugen Hoyos wrote: > 2017-01-27 10:29 GMT+01:00 wm4 : > > On Fri, 27 Jan 2017 10:19:32 +0100 > > Carl Eugen Hoyos wrote: > > > >> 2017-01-27 10:09 GMT+01:00 wm4 : > >> > On Fri, 27 Jan 2017 09:39:03 +0100 > >> > Carl Eugen Hoyos wrote: > >> > > >> >

Re: [FFmpeg-devel] [PATCH]lavf/mov: Export vendor metadata

2017-01-27 Thread Carl Eugen Hoyos
2017-01-27 10:29 GMT+01:00 wm4 : > On Fri, 27 Jan 2017 10:19:32 +0100 > Carl Eugen Hoyos wrote: > >> 2017-01-27 10:09 GMT+01:00 wm4 : >> > On Fri, 27 Jan 2017 09:39:03 +0100 >> > Carl Eugen Hoyos wrote: >> > >> >> 2017-01-27 9:17 GMT+01:00 wm4 : >> >> >> >> > You're completely misunderstanding. >

Re: [FFmpeg-devel] [PATCH]lavf/mov: Export vendor metadata

2017-01-27 Thread wm4
On Fri, 27 Jan 2017 10:19:32 +0100 Carl Eugen Hoyos wrote: > 2017-01-27 10:09 GMT+01:00 wm4 : > > On Fri, 27 Jan 2017 09:39:03 +0100 > > Carl Eugen Hoyos wrote: > > > >> 2017-01-27 9:17 GMT+01:00 wm4 : > >> > >> > You're completely misunderstanding. > >> > >> Would you mind to elaborate?

Re: [FFmpeg-devel] [PATCH]lavf/mov: Export vendor metadata

2017-01-27 Thread Carl Eugen Hoyos
2017-01-27 10:09 GMT+01:00 wm4 : > On Fri, 27 Jan 2017 09:39:03 +0100 > Carl Eugen Hoyos wrote: > >> 2017-01-27 9:17 GMT+01:00 wm4 : >> >> > You're completely misunderstanding. >> >> Would you mind to elaborate? > > FFmpeg shouldn't mux codec-specific tags into a different > container. This is no

Re: [FFmpeg-devel] [PATCH]lavf/mov: Export vendor metadata

2017-01-27 Thread wm4
On Fri, 27 Jan 2017 09:39:03 +0100 Carl Eugen Hoyos wrote: > 2017-01-27 9:17 GMT+01:00 wm4 : > > > You're completely misunderstanding. > > Would you mind to elaborate? FFmpeg shouldn't mux codec-specific tags into a different container. Your ffmpeg.c patch works for transcoding only, not re

Re: [FFmpeg-devel] [PATCH] lavc/mjpegdec: hint next marker position in ff_mjpeg_find_marker

2017-01-27 Thread Matthieu Bouron
On Fri, Jan 27, 2017 at 02:30:40AM +0100, Michael Niedermayer wrote: > On Thu, Jan 26, 2017 at 05:47:51PM +0100, Matthieu Bouron wrote: > > Speeds up next marker search when a SOS marker is found. > > > > ff_mjpeg_find_marker goes from 54% to 30% under perf record ffmpeg -i > > sample_2992x4000.jp

Re: [FFmpeg-devel] [PATCH]lavf/mov: Export vendor metadata

2017-01-27 Thread Carl Eugen Hoyos
2017-01-27 9:17 GMT+01:00 wm4 : > You're completely misunderstanding. Would you mind to elaborate? Carl Eugen ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-devel

Re: [FFmpeg-devel] [PATCH]lavf/mov: Export vendor metadata

2017-01-27 Thread wm4
On Fri, 27 Jan 2017 09:05:15 +0100 Carl Eugen Hoyos wrote: > 2017-01-27 8:56 GMT+01:00 wm4 : > > On Fri, 27 Jan 2017 08:26:26 +0100 > > Carl Eugen Hoyos wrote: > > > >> 2017-01-27 7:04 GMT+01:00 wm4 : > >> > On Thu, 26 Jan 2017 18:06:39 +0100 > >> > Carl Eugen Hoyos wrote: > >> > > >> >>

Re: [FFmpeg-devel] [PATCH]lavf/mov: Export vendor metadata

2017-01-27 Thread Carl Eugen Hoyos
2017-01-27 8:56 GMT+01:00 wm4 : > On Fri, 27 Jan 2017 08:26:26 +0100 > Carl Eugen Hoyos wrote: > >> 2017-01-27 7:04 GMT+01:00 wm4 : >> > On Thu, 26 Jan 2017 18:06:39 +0100 >> > Carl Eugen Hoyos wrote: >> > >> >> 2017-01-26 9:26 GMT+01:00 wm4 : >> >> > On Thu, 26 Jan 2017 09:16:00 +0100 >> >> > Ca