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
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
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
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
>
在 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
在 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
在 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()
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
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
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
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()))
>
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
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
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
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 +
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
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
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
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
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
>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
>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
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
>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,
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 +++
>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 +++
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.
>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,
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
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
+++
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
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
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 +++
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
在 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
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
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
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
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
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
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.
>
>
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
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
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 +++
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
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
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
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
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
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
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
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(
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
> ---
>
53 matches
Mail list logo