[FFmpeg-devel] chromium-review spam - my mistake

2015-06-17 Thread Chris Cunningham
Hey Group, Please ignore a wave of emails that were just sent out asking for code review at https://chromium-review.googlesource.com/ . Sorry for the spam! I'm rolling upstream ffmpeg into chromium and our review tools have changed recently. Our d

Re: [FFmpeg-devel] [PATCH] avcodec/flacenc: Regression test for ticket #4628

2015-06-17 Thread Michael Niedermayer
On Wed, Jun 17, 2015 at 02:51:16PM +0100, George Boyle wrote: > Corresponding commit: 2469ed32c81ebf2347e6883091c566724b286167 > --- > tests/fate/flac.mak | 4 > 1 file changed, 4 insertions(+) applied thanks [...] -- Michael GnuPG fingerprint: 9FF2128B147EF6730BADF133611EC787040B0FAB

[FFmpeg-devel] Ability to skip cursor draw in FIC decoding

2015-06-17 Thread Cal Leeming
It would appear that the FIC codec will skip any errors relating to cursor draw, but results in a lot of warnings being printed. In some situations, the user may not even want the cursor to be drawn, and as such it would be good to offer the ability to disable this via CLI. It seems the source alr

Re: [FFmpeg-devel] [PATCH] libvpxenc: support setting colorspace for vp9

2015-06-17 Thread Ronald S. Bultje
Hi, On Jun 17, 2015 12:21 PM, "James Zern" wrote: > > the vp9 bitstream supports 8 values: > unknown (default), bt601, bt709, smpte170, smpte240, bt2020, reserved > and sRGB. > --- > doc/encoders.texi | 12 > libavcodec/libvpxenc.c | 29 + > 2 files

Re: [FFmpeg-devel] [PATCH] libvpxenc: add color-space option for vp9

2015-06-17 Thread James Zern
On Tue, Jun 16, 2015 at 10:58 PM, James Almer wrote: > On 16/06/15 2:43 AM, James Zern wrote: >> the vp9 bitstream supports 8 values: >> unknown (default), bt601, bt709, smpte170, smpte240, bt2020, reserved >> and sRGB. >> --- >> doc/encoders.texi | 12 >> libavcodec/libvpxenc.c

[FFmpeg-devel] [PATCH] libvpxenc: support setting colorspace for vp9

2015-06-17 Thread James Zern
the vp9 bitstream supports 8 values: unknown (default), bt601, bt709, smpte170, smpte240, bt2020, reserved and sRGB. --- doc/encoders.texi | 12 libavcodec/libvpxenc.c | 29 + 2 files changed, 41 insertions(+) diff --git a/doc/encoders.texi b/doc/enco

Re: [FFmpeg-devel] [PATCH] vp9: don't retain NULL as segmentation_map

2015-06-17 Thread Andreas Cadhalpun
Hi Ronald, On 17.06.2015 20:26, Ronald S. Bultje wrote: > On Jun 17, 2015 10:07 AM, "Andreas Cadhalpun" < > andreas.cadhal...@googlemail.com> wrote: >> >> This fixes segmentation faults, which were introduced in commit >> 4ba8f327. >> >> Signed-off-by: Andreas Cadhalpun >> --- >> libavcodec/vp9.

Re: [FFmpeg-devel] [PATCH] vp9: don't retain NULL as segmentation_map

2015-06-17 Thread Ronald S. Bultje
Hi, On Jun 17, 2015 10:07 AM, "Andreas Cadhalpun" < andreas.cadhal...@googlemail.com> wrote: > > This fixes segmentation faults, which were introduced in commit > 4ba8f327. > > Signed-off-by: Andreas Cadhalpun > --- > libavcodec/vp9.c | 3 ++- > 1 file changed, 2 insertions(+), 1 deletion(-) > >

[FFmpeg-devel] [PATCH] vp9: don't retain NULL as segmentation_map

2015-06-17 Thread Andreas Cadhalpun
This fixes segmentation faults, which were introduced in commit 4ba8f327. Signed-off-by: Andreas Cadhalpun --- libavcodec/vp9.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/libavcodec/vp9.c b/libavcodec/vp9.c index 4e2ed53..9d9326c 100644 --- a/libavcodec/vp9.c +++ b/lib

[FFmpeg-devel] [PATCH 2/2] movtextenc.c: Support for Bold, Italic and Underlined styles

2015-06-17 Thread Niklesh Lalwani
From: Niklesh Support for Bold, Italic and Underlined styles. The style information is appended into the buffer after the text. Dynarray is used to account for multiple style records. Tested on QuickTime OSX and iPhone. Signed-off-by: Niklesh --- libavcodec/movtextenc.c | 165

[FFmpeg-devel] [PATCH 1/2] movtextdec.c: Improve upon dynarrays and text_to_ass

2015-06-17 Thread Niklesh Lalwani
From: Niklesh This Patch uses a single dynarray instead of 3 dynarrays used before. Changes are also done in text_to_ass() which previously failed to produce correct results for a few specific cases. Signed-off-by: Niklesh --- libavcodec/movtextdec.c | 83 -

[FFmpeg-devel] [PATCH] avcodec/flacenc: Regression test for ticket #4628

2015-06-17 Thread George Boyle
Corresponding commit: 2469ed32c81ebf2347e6883091c566724b286167 --- tests/fate/flac.mak | 4 1 file changed, 4 insertions(+) diff --git a/tests/fate/flac.mak b/tests/fate/flac.mak index 4a13404..115cc96 100644 --- a/tests/fate/flac.mak +++ b/tests/fate/flac.mak @@ -6,6 +6,7 @@ FATE_FLAC += fa

Re: [FFmpeg-devel] [PATCH 1/5] avcodec/mips: MSA (MIPS-SIMD-Arch) optimizations for H263 lpf functions

2015-06-17 Thread Michael Niedermayer
On Sun, Jun 14, 2015 at 11:26:22PM +0530, shivraj.pa...@imgtec.com wrote: > From: Shivraj Patil > > This patch adds MSA (MIPS-SIMD-Arch) optimizations for H263 lpf functions in > new file h263dsp_msa.c > > Signed-off-by: Shivraj Patil > --- > libavcodec/h263dsp.c| 2 + > lib

Re: [FFmpeg-devel] [PATCH 3/6] lavf/brstm: add support for seeking

2015-06-17 Thread Michael Niedermayer
On Tue, Jun 16, 2015 at 05:28:15PM -0500, Rodger Combs wrote: > --- > libavformat/brstm.c | 17 + > 1 file changed, 17 insertions(+) > > diff --git a/libavformat/brstm.c b/libavformat/brstm.c > index 1eba943..8adffb8 100644 > --- a/libavformat/brstm.c > +++ b/libavformat/brstm.c >

Re: [FFmpeg-devel] [PATCH 2/6] lavc/adpcm: THP: handle trailing padding

2015-06-17 Thread Michael Niedermayer
On Tue, Jun 16, 2015 at 05:28:14PM -0500, Rodger Combs wrote: > --- > libavcodec/adpcm.c | 5 - > 1 file changed, 4 insertions(+), 1 deletion(-) > > diff --git a/libavcodec/adpcm.c b/libavcodec/adpcm.c > index 22b5468..07ebce8 100644 > --- a/libavcodec/adpcm.c > +++ b/libavcodec/adpcm.c > @@

Re: [FFmpeg-devel] [PATCH] lavf/brstm: add support for BFSTM files

2015-06-17 Thread Michael Niedermayer
On Wed, Jun 17, 2015 at 03:09:52AM -0500, Rodger Combs wrote: > Adds a FATE test with sample file: > fate-suite/bfstm/spl-forest-day.bfstm > Available at: > http://puu.sh/is0XS/ac869386e6.bfstm file uploaded > --- > Changelog| 1 + > doc/general.texi | 2 + > libavc

[FFmpeg-devel] [PATCH] lavf/brstm: add support for BFSTM files

2015-06-17 Thread Rodger Combs
Adds a FATE test with sample file: fate-suite/bfstm/spl-forest-day.bfstm Available at: http://puu.sh/is0XS/ac869386e6.bfstm --- Changelog| 1 + doc/general.texi | 2 + libavcodec/utils.c | 4 ++ libavformat/Makefile | 1 + libavformat/allformats.c | 1 +

Re: [FFmpeg-devel] [PATCH 1/6] lavf/brstm: add support for BFSTM files

2015-06-17 Thread Paul B Mahol
Dana 17. 6. 2015. 00:28 osoba "Rodger Combs" napisala je: > > --- > libavcodec/utils.c | 4 ++ > libavformat/Makefile | 1 + > libavformat/allformats.c | 1 + > libavformat/brstm.c | 129 +++ > 4 files changed, 115 insertions(+), 20