Am 08.02.15 um 22:29 schrieb Alexander Strasser:
> Hello all,
>
> we applied for a booth at `Chemnitzer Linux-Tage' in Germany.
> Fortunately we were accepted again!
>
> The event will take place on 21st & 22nd of March in Chemnitz.
> More information can be found here:
>
> https://chemnit
On Wed, Feb 18, 2015 at 03:46:23PM +0100, Clément Bœsch wrote:
> From: Clément Bœsch
>
> ---
> libavfilter/vf_paletteuse.c | 6 +++---
> 1 file changed, 3 insertions(+), 3 deletions(-)
>
> diff --git a/libavfilter/vf_paletteuse.c b/libavfilter/vf_paletteuse.c
> index a8defc7..87a90d0 100644
> -
On Thu, Feb 19, 2015 at 01:14:04AM +0100, Michael Niedermayer wrote:
> On Wed, Feb 18, 2015 at 03:46:24PM +0100, Clément Bœsch wrote:
> > From: Clément Bœsch
> >
> > TODO: bump minor
> > ---
> > doc/filters.texi| 15 +
> > libavfilter/vf_paletteuse.c | 151
> > +
On 23.02.2015 01:41, Michael Niedermayer wrote:
Subject: [PATCH 2/4] avcodec/a64multienc: don't set incorrect packet size
This fixes invalid reads of the packet buffer in av_dup_packet.
This leaves the packet size wrong for mc_use_5col = 0
The quoted commit broke the size calculation quite com
On 23.02.2015 01:56, Michael Niedermayer wrote:
--- a/libavcodec/a64multienc.c
+++ b/libavcodec/a64multienc.c
@@ -317,7 +317,9 @@ static int a64multi_encode_frame(AVCodecContext *avctx,
AVPacket *pkt,
} else {
/* fill up mc_meta_charset with data until lifetime exceeds */
From: Clément Bœsch
---
tests/fate/filter-video.mak| 9 +
tests/ref/fate/filter-palettegen-1 | 2 ++
tests/ref/fate/filter-palettegen-2 | 2 ++
3 files changed, 13 insertions(+)
create mode 100644 tests/ref/fate/filter-palettegen-1
create mode 100644 tests/ref/fate/filter-palet
Here are two tests for the recently added filters. I'm hopping that qsort will
not cause any issue, otherwise we might need to switch to AV_QSORT (I'm
thinking of the sort where multiple different values have the same score in
palettegen).
Also not sure whether framecrc needs a bitexact flag somew
From: Clément Bœsch
---
tests/fate/filter-video.mak | 12 +
tests/ref/fate/filter-paletteuse-bayer | 72 +
tests/ref/fate/filter-paletteuse-nodither | 72 +
tests/ref/fate/filter-paletteuse-sierra2_4a | 72 +++
On Mon, Feb 23, 2015 at 03:27:54AM +0100, Carl Eugen Hoyos wrote:
> Hi!
>
> Attached patch fixes a crash with the following command line:
> $ ffmpeg -loop 1 -i fate-suite/lena.pnm -vf format=yuva420p,fade -f null -
>
> Please comment, Carl Eugen
> vf_fade.c |5 -
> 1 file changed, 4 ins
On Mon, Feb 23, 2015 at 01:59:45PM +0100, Michael Niedermayer wrote:
> On Mon, Feb 23, 2015 at 03:27:54AM +0100, Carl Eugen Hoyos wrote:
> > Hi!
> >
> > Attached patch fixes a crash with the following command line:
> > $ ffmpeg -loop 1 -i fate-suite/lena.pnm -vf format=yuva420p,fade -f null -
> >
On Mon, Feb 23, 2015 at 01:57:00PM +0100, Clément Bœsch wrote:
> From: Clément Bœsch
>
> ---
> tests/fate/filter-video.mak| 9 +
> tests/ref/fate/filter-palettegen-1 | 2 ++
> tests/ref/fate/filter-palettegen-2 | 2 ++
> 3 files changed, 13 insertions(+)
> create mode 100644 tes
Hi!
Attached patch sets bits_per_raw_sample when decoding hqx.
Please comment, Carl Eugen
diff --git a/libavcodec/hqx.c b/libavcodec/hqx.c
index c4b3bc6..44804cf 100644
--- a/libavcodec/hqx.c
+++ b/libavcodec/hqx.c
@@ -554,7 +554,7 @@ static int hqx_decode_frame(AVCodecContext *avctx, void
*data
On Sat, Feb 21, 2015 at 07:29:23PM +0100, Michael Niedermayer wrote:
> Signed-off-by: Michael Niedermayer
> ---
> libavformat/hlsenc.c |4
> 1 file changed, 4 insertions(+)
applied
[...]
--
Michael GnuPG fingerprint: 9FF2128B147EF6730BADF133611EC787040B0FAB
Complexity theory is t
On 23.02.2015 12:46, Luca Barbato wrote:
On 23/02/15 12:23, Andreas Cadhalpun wrote:
On 23.02.2015 01:56, Michael Niedermayer wrote:
--- a/libavcodec/a64multienc.c
+++ b/libavcodec/a64multienc.c
@@ -317,7 +317,9 @@ static int a64multi_encode_frame(AVCodecContext
*avctx, AVPacket *pkt,
} e
> Attached patches fix different warnings when compiling
> libavdevice/avfoundation.o
> The first silences C90 warnings about mixed declaration
> and functions when using gcc, the second silences many
> "undefined" warnings when compiling for ios.
First patch ok if tested.
For the second, wha
There are several encoders which do not set coded_frame
Signed-off-by: Michael Niedermayer
---
ffmpeg.c |6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/ffmpeg.c b/ffmpeg.c
index becd5df..c3a003e 100644
--- a/ffmpeg.c
+++ b/ffmpeg.c
@@ -1182,8 +1182,8 @@ static void d
This should allow simplifying many encoders
Signed-off-by: Michael Niedermayer
---
libavcodec/utils.c | 12
1 file changed, 12 insertions(+)
diff --git a/libavcodec/utils.c b/libavcodec/utils.c
index c5e6300..c6d588a 100644
--- a/libavcodec/utils.c
+++ b/libavcodec/utils.c
@@ -16
On Mon, 23 Feb 2015 17:19:16 +0100
Michael Niedermayer wrote:
> This should allow simplifying many encoders
>
> Signed-off-by: Michael Niedermayer
> ---
> libavcodec/utils.c | 12
> 1 file changed, 12 insertions(+)
>
> diff --git a/libavcodec/utils.c b/libavcodec/utils.c
> inde
On Mon, Feb 23, 2015 at 06:15:15PM +0100, wm4 wrote:
> On Mon, 23 Feb 2015 17:19:16 +0100
> Michael Niedermayer wrote:
>
> > This should allow simplifying many encoders
> >
> > Signed-off-by: Michael Niedermayer
> > ---
> > libavcodec/utils.c | 12
> > 1 file changed, 12 inserti
On Mon, Feb 23, 2015 at 06:49:36PM +0100, Michael Niedermayer wrote:
> On Mon, Feb 23, 2015 at 06:15:15PM +0100, wm4 wrote:
> > On Mon, 23 Feb 2015 17:19:16 +0100
> > Michael Niedermayer wrote:
> >
> > > This should allow simplifying many encoders
> > >
> > > Signed-off-by: Michael Niedermayer
On Wed, Feb 11, 2015 at 07:33:43PM -0600, Cary Tetrick wrote:
> This reimplements a change authored by Brian Brice
> 2015-01-19
> "librtmp: Allow changing the socket send buffer size"
> (Brian is aware of this change).
> also negates change by Michael Niedermayer 2015-01-23
> 10:45:35
> "avforma
>
> please ping this thread when this happens
>
> about the patch itself
>
> IIUC a user using old rtmpdump with new ffmpeg would loose the
> rtmp_buffer_size option.
> Would it make sense to support the old setsockopt() code for this
> case ?
>
> [...]
>
>
>
That's a really good point. So the only
22 matches
Mail list logo