Justin Ruggles | 1 Oct 2011 01:02
Picon
Gravatar

Re: [PATCH 7/8] Reject block size changes in the shorten decoder.

On 09/30/2011 06:43 PM, Laurent Aimar wrote:

> On Thu, Sep 29, 2011 at 10:12:19PM -0400, Justin Ruggles wrote:
>> On 09/29/2011 06:27 PM, Laurent Aimar wrote:
>>
>>> On Thu, Sep 29, 2011 at 06:24:35PM -0400, Justin Ruggles wrote:
>>>> On 09/29/2011 06:05 PM, fenrir <at> elivagar.org wrote:
>>>>
>>>>> From: Laurent Aimar <fenrir <at> videolan.org>
>>>>>
>>>>> ---
>>>>>  libavcodec/shorten.c |    9 +++++++--
>>>>>  1 files changed, 7 insertions(+), 2 deletions(-)
>>>>>
>>>>> diff --git a/libavcodec/shorten.c b/libavcodec/shorten.c
>>>>> index b39fcbd..966584d 100644
>>>>> --- a/libavcodec/shorten.c
>>>>> +++ b/libavcodec/shorten.c
>>>>>  <at>  <at>  -482,9 +482,14  <at>  <at>  static int shorten_decode_frame(AVCodecContext *avctx,
>>>>>              case FN_BITSHIFT:
>>>>>                  s->bitshift = get_ur_golomb_shorten(&s->gb, BITSHIFTSIZE);
>>>>>                  break;
>>>>> -            case FN_BLOCKSIZE:
>>>>> -                s->blocksize = get_uint(s, av_log2(s->blocksize));
>>>>> +            case FN_BLOCKSIZE: {
>>>>> +                int blocksize = get_uint(s, av_log2(s->blocksize));
>>>>> +                if (blocksize != s->blocksize) {
>>>>> +                    av_log(avctx, AV_LOG_ERROR, "block size changes are not supported\n");
>>>>> +                    return AVERROR_PATCHWELCOME;
>>>>> +                }
(Continue reading)

Michael Niedermayer | 1 Oct 2011 01:02
Picon
Picon

Re: [PATCH 01/12] Check for corrupted data in avs demuxer.

On Sat, Oct 01, 2011 at 12:44:54AM +0200, fenrir <at> elivagar.org wrote:
> From: Laurent Aimar <fenrir <at> videolan.org>

applied, thanks

[...]
--

-- 
Michael     GnuPG fingerprint: 9FF2128B147EF6730BADF133611EC787040B0FAB

It is dangerous to be right in matters on which the established authorities
are wrong. -- Voltaire
_______________________________________________
ffmpeg-devel mailing list
ffmpeg-devel <at> ffmpeg.org
http://ffmpeg.org/mailman/listinfo/ffmpeg-devel
Michael Niedermayer | 1 Oct 2011 01:04
Picon
Picon

Re: [PATCH 02/12] Check for out of bound writes in the avs demuxer.

On Sat, Oct 01, 2011 at 12:44:55AM +0200, fenrir <at> elivagar.org wrote:
> From: Laurent Aimar <fenrir <at> videolan.org>
> 
> ---
>  libavformat/avs.c |    2 ++
>  1 files changed, 2 insertions(+), 0 deletions(-)

applied, thanks

[...]
--

-- 
Michael     GnuPG fingerprint: 9FF2128B147EF6730BADF133611EC787040B0FAB

Observe your enemies, for they first find out your faults. -- Antisthenes
_______________________________________________
ffmpeg-devel mailing list
ffmpeg-devel <at> ffmpeg.org
http://ffmpeg.org/mailman/listinfo/ffmpeg-devel
Michael Niedermayer | 1 Oct 2011 01:06
Picon
Picon

Re: [PATCH 03/12] Check for out of bound reads in AVS decoder.

On Sat, Oct 01, 2011 at 12:44:56AM +0200, fenrir <at> elivagar.org wrote:
> From: Laurent Aimar <fenrir <at> videolan.org>
> 
> ---
>  libavcodec/avs.c |   11 +++++++++++
>  1 files changed, 11 insertions(+), 0 deletions(-)

applied

[...]
--

-- 
Michael     GnuPG fingerprint: 9FF2128B147EF6730BADF133611EC787040B0FAB

I am the wisest man alive, for I know one thing, and that is that I know
nothing. -- Socrates
_______________________________________________
ffmpeg-devel mailing list
ffmpeg-devel <at> ffmpeg.org
http://ffmpeg.org/mailman/listinfo/ffmpeg-devel
Michael Niedermayer | 1 Oct 2011 01:32
Picon
Picon

Re: [PATCH 04/12] Fix double free on error in Deluxe Paint Animation demuxer.

On Sat, Oct 01, 2011 at 12:44:57AM +0200, fenrir <at> elivagar.org wrote:
> From: Laurent Aimar <fenrir <at> videolan.org>
> 
> ---
>  libavformat/anm.c |   23 ++++++++---------------
>  1 files changed, 8 insertions(+), 15 deletions(-)

applied, thanks

[...]
--

-- 
Michael     GnuPG fingerprint: 9FF2128B147EF6730BADF133611EC787040B0FAB

The greatest way to live with honor in this world is to be what we pretend
to be. -- Socrates
_______________________________________________
ffmpeg-devel mailing list
ffmpeg-devel <at> ffmpeg.org
http://ffmpeg.org/mailman/listinfo/ffmpeg-devel
Michael Niedermayer | 1 Oct 2011 01:36
Picon
Picon

Re: [PATCH 05/12] Prevent infinite loop in the ANM decoder.

On Sat, Oct 01, 2011 at 12:44:58AM +0200, fenrir <at> elivagar.org wrote:
> From: Laurent Aimar <fenrir <at> videolan.org>
> 
> ---
>  libavcodec/anm.c |    2 ++
>  1 files changed, 2 insertions(+), 0 deletions(-)

applied, thanks

[...]
--

-- 
Michael     GnuPG fingerprint: 9FF2128B147EF6730BADF133611EC787040B0FAB

While the State exists there can be no freedom; when there is freedom there
will be no State. -- Vladimir Lenin
_______________________________________________
ffmpeg-devel mailing list
ffmpeg-devel <at> ffmpeg.org
http://ffmpeg.org/mailman/listinfo/ffmpeg-devel
Michael Niedermayer | 1 Oct 2011 01:42
Picon
Picon

Re: [PATCH 06/12] Fix potential pointer arithmetic overflows in the Electronic Arts CMV decoder.

On Sat, Oct 01, 2011 at 12:44:59AM +0200, fenrir <at> elivagar.org wrote:
> From: Laurent Aimar <fenrir <at> videolan.org>
> 
> ---
>  libavcodec/eacmv.c |    8 ++++----
>  1 files changed, 4 insertions(+), 4 deletions(-)

applied, thanks

[...]
--

-- 
Michael     GnuPG fingerprint: 9FF2128B147EF6730BADF133611EC787040B0FAB

I have often repented speaking, but never of holding my tongue.
-- Xenocrates
_______________________________________________
ffmpeg-devel mailing list
ffmpeg-devel <at> ffmpeg.org
http://ffmpeg.org/mailman/listinfo/ffmpeg-devel
Michael Niedermayer | 1 Oct 2011 01:43
Picon
Picon

Re: [PATCH 07/12] Prevent NULL dereferences when missing the reference frame in the Electronic Arts CMV decoder.

On Sat, Oct 01, 2011 at 12:45:00AM +0200, fenrir <at> elivagar.org wrote:
> From: Laurent Aimar <fenrir <at> videolan.org>

applied, thanks

[...]
--

-- 
Michael     GnuPG fingerprint: 9FF2128B147EF6730BADF133611EC787040B0FAB

The worst form of inequality is to try to make unequal things equal.
-- Aristotle
_______________________________________________
ffmpeg-devel mailing list
ffmpeg-devel <at> ffmpeg.org
http://ffmpeg.org/mailman/listinfo/ffmpeg-devel
Michael Niedermayer | 1 Oct 2011 01:43
Picon
Picon

Re: [PATCH 08/12] Check for out of bound reads in the Electronic Arts CMV decoder.

On Sat, Oct 01, 2011 at 12:45:01AM +0200, fenrir <at> elivagar.org wrote:
> From: Laurent Aimar <fenrir <at> videolan.org>

applied, thanks

[...]
--

-- 
Michael     GnuPG fingerprint: 9FF2128B147EF6730BADF133611EC787040B0FAB

I know you won't believe me, but the highest form of Human Excellence is
to question oneself and others. -- Socrates
_______________________________________________
ffmpeg-devel mailing list
ffmpeg-devel <at> ffmpeg.org
http://ffmpeg.org/mailman/listinfo/ffmpeg-devel
Michael Niedermayer | 1 Oct 2011 01:49
Picon
Picon

Re: [PATCH 09/12] Fix out of bound reads due to integer overflow in the ADPCM IMA Electronic Arts EACS decoder.

On Sat, Oct 01, 2011 at 12:45:02AM +0200, fenrir <at> elivagar.org wrote:
> From: Laurent Aimar <fenrir <at> videolan.org>
> 
> ---
>  libavcodec/adpcm.c |    6 ++++--
>  1 files changed, 4 insertions(+), 2 deletions(-)

applied, thanks

[...]
--

-- 
Michael     GnuPG fingerprint: 9FF2128B147EF6730BADF133611EC787040B0FAB

I do not agree with what you have to say, but I'll defend to the death your
right to say it. -- Voltaire
_______________________________________________
ffmpeg-devel mailing list
ffmpeg-devel <at> ffmpeg.org
http://ffmpeg.org/mailman/listinfo/ffmpeg-devel

Gmane