Re: [FFmpeg-devel] [PATCH 2/2] avcodec/h264: simplify h264_split()

2015-02-14 Thread Michael Niedermayer
On Fri, Feb 13, 2015 at 01:51:30PM +0800, Zhaoxiu Zeng wrote: > From 52be21b15e078fb52a841aefcf78409a408fe8b4 Mon Sep 17 00:00:00 2001 > From: Zeng Zhaoxiu > Date: Fri, 13 Feb 2015 13:37:46 +0800 > Subject: [PATCH 2/2] avcodec/h264: simplify h264_split() > > Signed-off-by: Zeng Zhaoxiu > --- >

Re: [FFmpeg-devel] [PATCH] avformat/matroskaenc: add allow_raw_vfw and disable it by default

2015-02-14 Thread Michael Niedermayer
On Sat, Feb 14, 2015 at 02:12:15PM -0300, James Almer wrote: > On 14/02/15 12:20 PM, Michael Niedermayer wrote: > > Based on complaint by wm4 > > > > Signed-off-by: Michael Niedermayer > > --- > > libavformat/matroskaenc.c | 14 -- > > 1 file changed, 12 insertions(+), 2 deletions(

Re: [FFmpeg-devel] [PATCH 2/3] avcodec/wmalosslessdec: optimize sign operation

2015-02-14 Thread Clément Bœsch
On Sat, Feb 14, 2015 at 09:47:34AM +0100, Reimar Döffinger wrote: > On 13.02.2015, at 17:51, "zhaoxiu.zeng" wrote: > > From b08b4a38c87000fe5549de96f65de6ba77740b30 Mon Sep 17 00:00:00 2001 > > From: Zeng Zhaoxiu > > Date: Fri, 13 Feb 2015 23:52:29 +0800 > > Subject: [PATCH 2/3] avcodec/wmalossle

Re: [FFmpeg-devel] [RFC][PATCH] ffplay: factorize subtitle rendering code to a private filter

2015-02-14 Thread Clément Bœsch
On Sat, Feb 14, 2015 at 02:08:15AM +0100, Marton Balint wrote: > Signed-off-by: Marton Balint > --- > Makefile | 1 + > doc/ffplay.texi | 4 + > ffplay.c | 336 + > libavfilter/Makefile

Re: [FFmpeg-devel] Color quantization for GIF v2

2015-02-14 Thread Clément Bœsch
Patchset improved with regard to: • quality: palettegen now uses the variance to determine which box to split instead of the number of color inside (a box encloses a bunch of colors and is averaged at the end to produce the palette color entry). • speed: paletteuse now cache the found

Re: [FFmpeg-devel] [PATCH 3/3] avformat/rtpdec_ac3: add AC3 RTP depacketization (RFC 4184)

2015-02-14 Thread Michael Niedermayer
On Sat, Feb 14, 2015 at 07:21:04PM +0100, Thomas Volkert wrote: > On 02/13/2015 10:51 PM, Gilles Chanteperdrix wrote: > >Signed-off-by: Gilles Chanteperdrix > >--- > > Changelog| 1 + > > MAINTAINERS | 1 + > > libavformat/Makefile | 1 + > > lib

Re: [FFmpeg-devel] [PATCH 2/3] avformat/rtpdec_mpeg12: add robust MPEG audio depacketization (RFC 5219)

2015-02-14 Thread Michael Niedermayer
On Sat, Feb 14, 2015 at 07:08:36PM +0100, Thomas Volkert wrote: > On 02/14/2015 06:16 PM, Gilles Chanteperdrix wrote: > >On Sat, Feb 14, 2015 at 05:56:49PM +0100, Thomas Volkert wrote: > >>On 02/13/2015 10:51 PM, Gilles Chanteperdrix wrote: > >>> #define LIBAVFORMAT_VERSION_MAJOR 56 > >>>-#define

Re: [FFmpeg-devel] [PATCH 1/3] avcodec/wmalosslessdec: change type of acfilter_coeffs from int64_t to int16_t

2015-02-14 Thread Christophe Gisquet
Hi, 2015-02-13 17:49 GMT+01:00 zhaoxiu.zeng : > int8_t acfilter_order; > int8_t acfilter_scaling; > -int64_t acfilter_coeffs[16]; > +int16_t acfilter_coeffs[16]; > int acfilter_prevvalues[WMALL_MAX_CHANNELS][16]; > > int8_t mclms_order; > @@ -818,7 +818,7 @@ stat

Re: [FFmpeg-devel] [PATCH 3/5] avcodec/vc1_pred: few branchless optimizations

2015-02-14 Thread Christophe Gisquet
2015-02-14 17:14 GMT+01:00 Michael Niedermayer : > On Sat, Feb 14, 2015 at 11:03:13PM +0800, zhaoxiu.zeng wrote: >> From 7e4038fe1291b857261584e69323486fc955cfb2 Mon Sep 17 00:00:00 2001 >> From: Zeng Zhaoxiu >> Date: Sat, 14 Feb 2015 20:08:48 +0800 >> Subject: [PATCH 3/5] avcodec/vc1_pred: few br

Re: [FFmpeg-devel] [PATCH 3/3] avformat/rtpdec_ac3: add AC3 RTP depacketization (RFC 4184)

2015-02-14 Thread Thomas Volkert
On 02/13/2015 10:51 PM, Gilles Chanteperdrix wrote: Signed-off-by: Gilles Chanteperdrix --- Changelog| 1 + MAINTAINERS | 1 + libavformat/Makefile | 1 + libavformat/rtpdec.c | 1 + libavformat/rtpdec_ac3.c | 157 +++

Re: [FFmpeg-devel] [PATCH 2/3] avformat/rtpdec_mpeg12: add robust MPEG audio depacketization (RFC 5219)

2015-02-14 Thread Thomas Volkert
On 02/14/2015 06:16 PM, Gilles Chanteperdrix wrote: On Sat, Feb 14, 2015 at 05:56:49PM +0100, Thomas Volkert wrote: On 02/13/2015 10:51 PM, Gilles Chanteperdrix wrote: #define LIBAVFORMAT_VERSION_MAJOR 56 -#define LIBAVFORMAT_VERSION_MINOR 19 -#define LIBAVFORMAT_VERSION_MICRO 101 +#define L

Re: [FFmpeg-devel] [PATCH 1/7] avformat/rtpdec_ac3: add AC3 RTP depacketization

2015-02-14 Thread Thomas Volkert
On 02/13/2015 09:11 PM, Gilles Chanteperdrix wrote: On Thu, Feb 12, 2015 at 10:07:39PM +0100, Thomas Volkert wrote: +if (nr_frames > 1) { +av_log(ctx, AV_LOG_ERROR, + "Unimplemented multiple AC3 frames per packet\n"); You could use avpriv_report_missing_fea

Re: [FFmpeg-devel] [PATCH 7/7] x86: hevc: remove a parameter to WP internals

2015-02-14 Thread Michael Niedermayer
On Sat, Feb 07, 2015 at 04:14:11PM +0100, Christophe Gisquet wrote: > Hi, > > 2015-02-06 18:33 GMT+01:00 James Almer : > > Yes, that should do it. > > > > And for that matter you were right, it should be "4, 6". I was reading it > > as regs > > loaded when the second argument is regs needed. > >

Re: [FFmpeg-devel] [PATCH 2/3] avformat/rtpdec_mpeg12: add robust MPEG audio depacketization (RFC 5219)

2015-02-14 Thread Gilles Chanteperdrix
On Sat, Feb 14, 2015 at 05:56:49PM +0100, Thomas Volkert wrote: > On 02/13/2015 10:51 PM, Gilles Chanteperdrix wrote: > > #define LIBAVFORMAT_VERSION_MAJOR 56 > >-#define LIBAVFORMAT_VERSION_MINOR 19 > >-#define LIBAVFORMAT_VERSION_MICRO 101 > >+#define LIBAVFORMAT_VERSION_MINOR 20 > >+#define L

Re: [FFmpeg-devel] [PATCH] avformat/matroskaenc: add allow_raw_vfw and disable it by default

2015-02-14 Thread James Almer
On 14/02/15 12:20 PM, Michael Niedermayer wrote: > Based on complaint by wm4 > > Signed-off-by: Michael Niedermayer > --- > libavformat/matroskaenc.c | 14 -- > 1 file changed, 12 insertions(+), 2 deletions(-) > > diff --git a/libavformat/matroskaenc.c b/libavformat/matroskaenc.c

Re: [FFmpeg-devel] [PATCH 2/3] avformat/rtpdec_mpeg12: add robust MPEG audio depacketization (RFC 5219)

2015-02-14 Thread Thomas Volkert
On 02/13/2015 10:51 PM, Gilles Chanteperdrix wrote: Signed-off-by: Gilles Chanteperdrix --- Changelog | 1 + libavcodec/mpegaudio_parser.c | 14 ++- libavcodec/mpegaudiodecheader.c | 3 +- libavformat/rtpdec.c| 1 + libavformat/rtpdec_formats.h

Re: [FFmpeg-devel] [PATCH 3/5] avcodec/vc1_pred: few branchless optimizations

2015-02-14 Thread Michael Niedermayer
On Sat, Feb 14, 2015 at 11:03:13PM +0800, zhaoxiu.zeng wrote: > From 7e4038fe1291b857261584e69323486fc955cfb2 Mon Sep 17 00:00:00 2001 > From: Zeng Zhaoxiu > Date: Sat, 14 Feb 2015 20:08:48 +0800 > Subject: [PATCH 3/5] avcodec/vc1_pred: few branchless optimizations applied please include benchma

Re: [FFmpeg-devel] [PATCH 4/5] avcodec/vc1_mc: create some helper functions for scaling blocks

2015-02-14 Thread Hendrik Leppkes
On Sat, Feb 14, 2015 at 4:11 PM, zhaoxiu.zeng wrote: > From a67cc93ea550ba2670003f5be024626a093a06fd Mon Sep 17 00:00:00 2001 > From: Zeng Zhaoxiu > Date: Sat, 14 Feb 2015 21:09:28 +0800 > Subject: [PATCH 4/5] avcodec/vc1_mc: create some helper functions for scaling > blocks > Shouldn't those f

Re: [FFmpeg-devel] [PATCH 5/5] avcodec/vc1_mc: move median4() to mathops.h

2015-02-14 Thread zhaoxiu.zeng
在 2015/2/14 23:18, Paul B Mahol 写道: > On 2/14/15, zhaoxiu.zeng wrote: >> From 2f68090470ce1f4eb738e7a4af80c78a7b5d461a Mon Sep 17 00:00:00 2001 >> From: Zeng Zhaoxiu >> Date: Sat, 14 Feb 2015 21:11:18 +0800 >> Subject: [PATCH 5/5] avcodec/vc1_mc: move median4() to mathops.h >> >> --- >> libavcod

Re: [FFmpeg-devel] [PATCH] avcodec/dxtory: use init_get_bits8()

2015-02-14 Thread Michael Niedermayer
On Sat, Feb 14, 2015 at 02:22:15PM +, Paul B Mahol wrote: > Signed-off-by: Paul B Mahol > --- > libavcodec/dxtory.c | 15 ++- > 1 file changed, 10 insertions(+), 5 deletions(-) LGTM [...] -- Michael GnuPG fingerprint: 9FF2128B147EF6730BADF133611EC787040B0FAB While the Stat

[FFmpeg-devel] [PATCH] rtpdec: experimental VP9 depacketizer (draft 0)

2015-02-14 Thread Thomas Volkert
From: Thomas Volkert --- Changelog| 1 + MAINTAINERS | 1 + libavcodec/version.h | 4 +- libavformat/Makefile | 1 + libavformat/rtpdec.c | 1 + libavformat/rtpdec_formats.h | 1 + libavformat/rtpdec_vp9.c | 316 +++

Re: [FFmpeg-devel] [PATCH] avformat/matroskaenc: add allow_raw_vfw and disable it by default

2015-02-14 Thread wm4
On Sat, 14 Feb 2015 16:20:58 +0100 Michael Niedermayer wrote: > Based on complaint by wm4 > > Signed-off-by: Michael Niedermayer > --- > libavformat/matroskaenc.c | 14 -- > 1 file changed, 12 insertions(+), 2 deletions(-) > > diff --git a/libavformat/matroskaenc.c b/libavformat

Re: [FFmpeg-devel] [PATCH] matroskaenc: Warning message when RAWVIDEO have unsupported colour space.

2015-02-14 Thread Michael Niedermayer
On Sat, Feb 14, 2015 at 04:01:15PM +0100, wm4 wrote: > On Sat, 14 Feb 2015 15:44:37 +0100 > Michael Niedermayer wrote: > > > On Sat, Feb 14, 2015 at 03:23:49PM +0100, wm4 wrote: > > > On Sat, 14 Feb 2015 13:25:29 +0100 > > > Michael Niedermayer wrote: > > > > > > > On Fri, Feb 13, 2015 at 03:34

[FFmpeg-devel] [PATCH] avformat/matroskaenc: add allow_raw_vfw and disable it by default

2015-02-14 Thread Michael Niedermayer
Based on complaint by wm4 Signed-off-by: Michael Niedermayer --- libavformat/matroskaenc.c | 14 -- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/libavformat/matroskaenc.c b/libavformat/matroskaenc.c index eb6e859..fc6371b 100644 --- a/libavformat/matroskaenc.c +++

Re: [FFmpeg-devel] [PATCH 5/5] avcodec/vc1_mc: move median4() to mathops.h

2015-02-14 Thread Paul B Mahol
On 2/14/15, zhaoxiu.zeng wrote: > From 2f68090470ce1f4eb738e7a4af80c78a7b5d461a Mon Sep 17 00:00:00 2001 > From: Zeng Zhaoxiu > Date: Sat, 14 Feb 2015 21:11:18 +0800 > Subject: [PATCH 5/5] avcodec/vc1_mc: move median4() to mathops.h > > --- > libavcodec/mathops.h | 14 ++ > libavcode

[FFmpeg-devel] [PATCH 5/5] avcodec/vc1_mc: move median4() to mathops.h

2015-02-14 Thread zhaoxiu.zeng
>From 2f68090470ce1f4eb738e7a4af80c78a7b5d461a Mon Sep 17 00:00:00 2001 From: Zeng Zhaoxiu Date: Sat, 14 Feb 2015 21:11:18 +0800 Subject: [PATCH 5/5] avcodec/vc1_mc: move median4() to mathops.h --- libavcodec/mathops.h | 14 ++ libavcodec/vc1_mc.c | 11 --- 2 files changed,

Re: [FFmpeg-devel] [PATCH] rtpdec: experimental VP9 depacketizer (draft 0)

2015-02-14 Thread Thomas Volkert
The patch implements the already specified parts of the VP9 related parsing of RTP packets. It is tested with live555 server (they do not use the SS/SU data). The available draft 0 of the spec. has still some gaps. So, the parser prints a warning about its "experimental" state. BR, Thomas.

[FFmpeg-devel] [PATCH 4/5] avcodec/vc1_mc: create some helper functions for scaling blocks

2015-02-14 Thread zhaoxiu.zeng
>From a67cc93ea550ba2670003f5be024626a093a06fd Mon Sep 17 00:00:00 2001 From: Zeng Zhaoxiu Date: Sat, 14 Feb 2015 21:09:28 +0800 Subject: [PATCH 4/5] avcodec/vc1_mc: create some helper functions for scaling blocks --- libavcodec/vc1_mc.c | 254 +++

[FFmpeg-devel] [PATCH] rtpdec: experimental VP9 depacketizer (draft 0)

2015-02-14 Thread Thomas Volkert
From: Thomas Volkert --- Changelog| 1 + MAINTAINERS | 1 + libavcodec/version.h | 4 +- libavformat/Makefile | 1 + libavformat/rtpdec.c | 1 + libavformat/rtpdec_formats.h | 1 + libavformat/rtpdec_vp9.c | 315 +++

[FFmpeg-devel] [PATCH 3/5] avcodec/vc1_pred: few branchless optimizations

2015-02-14 Thread zhaoxiu.zeng
>From 7e4038fe1291b857261584e69323486fc955cfb2 Mon Sep 17 00:00:00 2001 From: Zeng Zhaoxiu Date: Sat, 14 Feb 2015 20:08:48 +0800 Subject: [PATCH 3/5] avcodec/vc1_pred: few branchless optimizations --- libavcodec/vc1_pred.c | 68 +-- 1 file changed,

Re: [FFmpeg-devel] [PATCH] matroskaenc: Warning message when RAWVIDEO have unsupported colour space.

2015-02-14 Thread wm4
On Sat, 14 Feb 2015 15:44:37 +0100 Michael Niedermayer wrote: > On Sat, Feb 14, 2015 at 03:23:49PM +0100, wm4 wrote: > > On Sat, 14 Feb 2015 13:25:29 +0100 > > Michael Niedermayer wrote: > > > > > On Fri, Feb 13, 2015 at 03:34:23PM +0300, Vitaly _Vi Shukela wrote: > > > > Show warning if the re

[FFmpeg-devel] [PATCH 2/5] avcodec/vc1: optimize block functions

2015-02-14 Thread zhaoxiu.zeng
>From 960eca51e6e65e6969f7d829e29ddc2387420733 Mon Sep 17 00:00:00 2001 From: Zeng Zhaoxiu Date: Sat, 14 Feb 2015 19:46:51 +0800 Subject: [PATCH 2/5] avcodec/vc1: optimize block functions --- libavcodec/vc1_block.c | 352 - 1 file changed, 142 inse

[FFmpeg-devel] [PATCH 1/5] avcodec/vc1: cleanup

2015-02-14 Thread zhaoxiu.zeng
>From 72e2c3dcb89000a1e0737afdf17ed145bb760fb1 Mon Sep 17 00:00:00 2001 From: Zeng Zhaoxiu Date: Sat, 14 Feb 2015 19:02:14 +0800 Subject: [PATCH 1/5] avcodec/vc1: cleanup --- libavcodec/vc1.c | 229 ++- 1 file changed, 107 insertions(+), 122 de

Re: [FFmpeg-devel] [PATCH] matroskaenc: Warning message when RAWVIDEO have unsupported colour space.

2015-02-14 Thread Michael Niedermayer
On Sat, Feb 14, 2015 at 03:23:49PM +0100, wm4 wrote: > On Sat, 14 Feb 2015 13:25:29 +0100 > Michael Niedermayer wrote: > > > On Fri, Feb 13, 2015 at 03:34:23PM +0300, Vitaly _Vi Shukela wrote: > > > Show warning if the resulting file is expected to be unplayable. > > > The warning also has a hint

Re: [FFmpeg-devel] [RFC][PATCH] ffplay: factorize subtitle rendering code to a private filter

2015-02-14 Thread wm4
On Sat, 14 Feb 2015 02:08:15 +0100 Marton Balint wrote: > diff --git a/libavfilter/vf_ffplay_subtitle.c > b/libavfilter/vf_ffplay_subtitle.c > new file mode 100644 > index 000..f89528b > --- /dev/null > +++ b/libavfilter/vf_ffplay_subtitle.c Is this parody? You disallow external filters i

Re: [FFmpeg-devel] [PATCH] matroskaenc: Warning message when RAWVIDEO have unsupported colour space.

2015-02-14 Thread wm4
On Sat, 14 Feb 2015 13:25:29 +0100 Michael Niedermayer wrote: > On Fri, Feb 13, 2015 at 03:34:23PM +0300, Vitaly _Vi Shukela wrote: > > Show warning if the resulting file is expected to be unplayable. > > The warning also has a hint about NUT format which support more pixel > > formats for rawvid

[FFmpeg-devel] [PATCH] avcodec/dxtory: use init_get_bits8()

2015-02-14 Thread Paul B Mahol
Signed-off-by: Paul B Mahol --- libavcodec/dxtory.c | 15 ++- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/libavcodec/dxtory.c b/libavcodec/dxtory.c index 91d87f0..22e7b2f 100644 --- a/libavcodec/dxtory.c +++ b/libavcodec/dxtory.c @@ -285,7 +285,8 @@ static int dxtor

Re: [FFmpeg-devel] libavutil: optimize camellia cipher

2015-02-14 Thread supraja reddy
Hello, Here are the results. lavu CAMELLIA size: 1048576 runs: 1024 time: 21.476 +- 0.034 crypto CAMELLIA size: 1048576 runs: 1024 time: 20.184 +- 0.043 gcrypt CAMELLIA size: 1048576 runs: 1024 time: 64.362 +- 1.031 tomcrypt CAMELLIA size: 1048576

Re: [FFmpeg-devel] [PATCH 1/2] avcodec/parser: simplify ff_mpeg4video_split()

2015-02-14 Thread Michael Niedermayer
On Sat, Feb 14, 2015 at 06:00:40PM +0800, zhaoxiu.zeng wrote: > 在 2015/2/13 17:22, wm4 写道: > > On Fri, 13 Feb 2015 13:50:23 +0800 > > Zhaoxiu Zeng wrote: > > > >> From 3cac16572aee4425377e4bc9e496ab5844200a51 Mon Sep 17 00:00:00 2001 > >> From: Zeng Zhaoxiu > >> Date: Fri, 13 Feb 2015 13:27:26 +

Re: [FFmpeg-devel] [PATCH] matroskaenc: Warning message when RAWVIDEO have unsupported colour space.

2015-02-14 Thread Michael Niedermayer
On Fri, Feb 13, 2015 at 03:34:23PM +0300, Vitaly _Vi Shukela wrote: > Show warning if the resulting file is expected to be unplayable. > The warning also has a hint about NUT format which support more pixel > formats for rawvideo data. > > The file is muxed anyway, as it can be useful for some spe

Re: [FFmpeg-devel] [PATCH] MAINTAINERS: Remove 1.2 from the maintained releases

2015-02-14 Thread Alexis Ballier
On Fri, 13 Feb 2015 17:56:41 +0100 Michael Niedermayer wrote: > no security updates for FFmpeg 1.2 and "gentoo stable" but its > http://www.gentoo.org/security/en/glsa/index.xml also lists no > security updates for 1.2 also > http://packages.gentoo.org/package/media-video/ffmpeg lists stable as

Re: [FFmpeg-devel] tools: crypto_bench: Added support for Twofish

2015-02-14 Thread Michael Niedermayer
On Sat, Feb 14, 2015 at 11:57:30AM +0100, Nicolas George wrote: > Le sextidi 26 pluviôse, an CCXXIII, Michael Niedermayer a écrit : > > > +static void run_lavu_twofish(uint8_t *output, > > > + const uint8_t *input, unsigned size) > > > +{ > > > +static struct AVTWOF

Re: [FFmpeg-devel] tools: crypto_bench: Added support for Twofish

2015-02-14 Thread Nicolas George
Le sextidi 26 pluviôse, an CCXXIII, Michael Niedermayer a écrit : > > +static void run_lavu_twofish(uint8_t *output, > > + const uint8_t *input, unsigned size) > > +{ > > +static struct AVTWOFISH *twofish; > > +if (!twofish && !(twofish = av_twofish_alloc())) >

Re: [FFmpeg-devel] tools: crypto_bench: Added support for Twofish

2015-02-14 Thread Michael Niedermayer
On Sat, Feb 14, 2015 at 02:03:23PM +0530, supraja reddy wrote: > Hello, > > I have added the necessary functions for twofish in crypto_bench. > A note, there is no twofish implementation in openssl library but since the > code demands that all the libraries have the impl, i have introduced a > dum

Re: [FFmpeg-devel] libavutil: optimize camellia cipher

2015-02-14 Thread Giorgio Vazzana
Hi Supraja, could you also post the result of crypto_bench now to see how fast our implementation is compared to the others? Thanks. Giorgio Vazzana ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-devel

Re: [FFmpeg-devel] tools: crypto_bench: Added support for Twofish

2015-02-14 Thread Giorgio Vazzana
Hi, 2015-02-14 9:33 GMT+01:00 supraja reddy : > Hello, > > I have added the necessary functions for twofish in crypto_bench. > A note, there is no twofish implementation in openssl library but since the > code demands that all the libraries have the impl, i have introduced a > dummy function. I k

Re: [FFmpeg-devel] [PATCH 1/2] avcodec/parser: simplify ff_mpeg4video_split()

2015-02-14 Thread zhaoxiu.zeng
在 2015/2/13 17:22, wm4 写道: > On Fri, 13 Feb 2015 13:50:23 +0800 > Zhaoxiu Zeng wrote: > >> From 3cac16572aee4425377e4bc9e496ab5844200a51 Mon Sep 17 00:00:00 2001 >> From: Zeng Zhaoxiu >> Date: Fri, 13 Feb 2015 13:27:26 +0800 >> Subject: [PATCH 1/2] avcodec/parser: simplify ff_mpeg4video_split()

Re: [FFmpeg-devel] [PATCH] avcodec/golomb: simplify sign conversion

2015-02-14 Thread zhaoxiu.zeng
在 2015/2/14 16:43, Reimar Döffinger 写道: > On 13.02.2015, at 17:58, "zhaoxiu.zeng" wrote: >> From 7d782e106cf485ca9a44d4283a18402bf0a84fb9 Mon Sep 17 00:00:00 2001 >> From: Zeng Zhaoxiu >> Date: Sat, 14 Feb 2015 00:44:39 +0800 >> Subject: [PATCH] avcodec/golomb: simplify sign conversion > > This

Re: [FFmpeg-devel] [PATCH 2/3] avcodec/wmalosslessdec: optimize sign operation

2015-02-14 Thread zhaoxiu.zeng
在 2015/2/14 16:47, Reimar Döffinger 写道: > On 13.02.2015, at 17:51, "zhaoxiu.zeng" wrote: >> From b08b4a38c87000fe5549de96f65de6ba77740b30 Mon Sep 17 00:00:00 2001 >> From: Zeng Zhaoxiu >> Date: Fri, 13 Feb 2015 23:52:29 +0800 >> Subject: [PATCH 2/3] avcodec/wmalosslessdec: optimize sign operation

Re: [FFmpeg-devel] Add configure option --disable-warnings

2015-02-14 Thread Reimar Döffinger
On 12.02.2015, at 19:56, Gautier Pelloux-Prayer wrote: > Hi list, > > I added an option to disable compiler warnings while building ffmpeg. Reason > is that when integrating ffmpeg within another project, I would like to > disable these warnings since I cannot fix them myself and having them >

Re: [FFmpeg-devel] [PATCH 2/3] avcodec/wmalosslessdec: optimize sign operation

2015-02-14 Thread Reimar Döffinger
On 13.02.2015, at 17:51, "zhaoxiu.zeng" wrote: > From b08b4a38c87000fe5549de96f65de6ba77740b30 Mon Sep 17 00:00:00 2001 > From: Zeng Zhaoxiu > Date: Fri, 13 Feb 2015 23:52:29 +0800 > Subject: [PATCH 2/3] avcodec/wmalosslessdec: optimize sign operation > > Signed-off-by: Zeng Zhaoxiu > --- > lib

Re: [FFmpeg-devel] [PATCH] avcodec/golomb: simplify sign conversion

2015-02-14 Thread Reimar Döffinger
On 13.02.2015, at 17:58, "zhaoxiu.zeng" wrote: > From 7d782e106cf485ca9a44d4283a18402bf0a84fb9 Mon Sep 17 00:00:00 2001 > From: Zeng Zhaoxiu > Date: Sat, 14 Feb 2015 00:44:39 +0800 > Subject: [PATCH] avcodec/golomb: simplify sign conversion This may be faster, but IMHO the term "simplify" is com

[FFmpeg-devel] tools: crypto_bench: Added support for Twofish

2015-02-14 Thread supraja reddy
Hello, I have added the necessary functions for twofish in crypto_bench. A note, there is no twofish implementation in openssl library but since the code demands that all the libraries have the impl, i have introduced a dummy function. Please let me know if anything has to be changed. Thanks, Sup