[FFmpeg-devel] [PATCH 1/2] avcodec/aacdec_template: Fix running cleanup in decode_ics_info()
Michael Niedermayer
michael at niedermayer.cc
Tue Aug 22 21:53:16 EEST 2017
On Mon, Aug 21, 2017 at 03:23:09PM -0700, Alex Converse wrote:
> On Sun, Aug 20, 2017 at 5:15 PM, Michael Niedermayer
> <michael at niedermayer.cc> wrote:
> >
> > Fixes: out of array read
> > Fixes: 2873/clusterfuzz-testcase-minimized-5924145713905664
> >
> > Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
> > Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
> > ---
> > libavcodec/aacdec_template.c | 4 ++--
> > 1 file changed, 2 insertions(+), 2 deletions(-)
> >
> > diff --git a/libavcodec/aacdec_template.c b/libavcodec/aacdec_template.c
> > index a539f74e6f..e7fa27e8db 100644
> > --- a/libavcodec/aacdec_template.c
> > +++ b/libavcodec/aacdec_template.c
> > @@ -1332,7 +1332,7 @@ static int decode_ics_info(AACContext *ac, IndividualChannelStream *ics,
> > ics->tns_max_bands = ff_tns_max_bands_512[sampling_index];
> > }
> > if (!ics->num_swb || !ics->swb_offset)
> > - return AVERROR_BUG;
> > + goto fail;
> > } else {
> > ics->swb_offset = ff_swb_offset_1024[sampling_index];
> > ics->num_swb = ff_aac_num_swb_1024[sampling_index];
>
> okay
>
> > @@ -1356,7 +1356,7 @@ static int decode_ics_info(AACContext *ac, IndividualChannelStream *ics,
> > if (aot == AOT_ER_AAC_LD) {
> > av_log(ac->avctx, AV_LOG_ERROR,
> > "LTP in ER AAC LD not yet implemented.\n");
> > - return AVERROR_PATCHWELCOME;
> > + goto fail;
> > }
> > if ((ics->ltp.present = get_bits(gb, 1)))
> > decode_ltp(&ics->ltp, gb, ics->max_sfb);
>
> I'm not sure if it matters to anyone, but this is a missing decoder
> feature and returning AVERROR_INVALIDDATA is semantically wrong.
ill apply with the unchanged error codes
thx
[...]
--
Michael GnuPG fingerprint: 9FF2128B147EF6730BADF133611EC787040B0FAB
If you think the mosad wants you dead since a long time then you are either
wrong or dead since a long time.
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 181 bytes
Desc: Digital signature
URL: <http://ffmpeg.org/pipermail/ffmpeg-devel/attachments/20170822/a24aa322/attachment.sig>
More information about the ffmpeg-devel
mailing list