[FFmpeg-cvslog] avcodec/asv: Split ASV1Context into decoder and encoder contexts

2022-10-05 Thread Andreas Rheinhardt
ffmpeg | branch: master | Andreas Rheinhardt | Sat Oct 1 17:05:45 2022 +0200| [8a9eac7e42f3bec34dadc4299446a9a9c9304231] | committer: Andreas Rheinhardt avcodec/asv: Split ASV1Context into decoder and encoder contexts A lot of the stuff in ASV1Context is actually only used by decoders or enco

[FFmpeg-cvslog] avcodec/sgidec: Support negative linesizes

2022-10-05 Thread Andreas Rheinhardt
ffmpeg | branch: master | Andreas Rheinhardt | Thu Sep 29 14:21:36 2022 +0200| [54cf0482bd4d58ccb5c913cf1e68468d759d74ca] | committer: Andreas Rheinhardt avcodec/sgidec: Support negative linesizes The earlier code used "p->data[0] + p->linesize[0] * s->height" with the latter being unsigned, w

[FFmpeg-cvslog] avcodec/sunrast: Use ptrdiff_t for stride

2022-10-05 Thread Andreas Rheinhardt
ffmpeg | branch: master | Andreas Rheinhardt | Thu Sep 29 13:18:54 2022 +0200| [02c19dfb8552cb40b02ff9c8d8d3c5e12d5c71e1] | committer: Andreas Rheinhardt avcodec/sunrast: Use ptrdiff_t for stride Fixes segfaults with negative linesizes; in particular, this affected the sunraster-(1|8|24)bit-(r

[FFmpeg-cvslog] avcodec/sgidec: Use planar pixel formats

2022-10-05 Thread Andreas Rheinhardt
ffmpeg | branch: master | Andreas Rheinhardt | Thu Sep 29 19:44:05 2022 +0200| [ce4713ea731b9deb0440abe8d8a2a41d2957efc5] | committer: Andreas Rheinhardt avcodec/sgidec: Use planar pixel formats The data in SGI images is stored planar, so exporting it via planar pixel formats is natural. Sign

[FFmpeg-cvslog] avcodec/sgidec: Avoid redundant private context

2022-10-05 Thread Andreas Rheinhardt
ffmpeg | branch: master | Andreas Rheinhardt | Thu Sep 29 16:05:49 2022 +0200| [e771223ec1be32da96e72d8319a8677aa9776204] | committer: Andreas Rheinhardt avcodec/sgidec: Avoid redundant private context SGI is intra-frame only; the decoder therefore does not maintain any state between frames, s

[FFmpeg-cvslog] avcodec/fraps: Fix segfault with negative linesizes

2022-10-05 Thread Andreas Rheinhardt
ffmpeg | branch: master | Andreas Rheinhardt | Fri Sep 30 18:32:33 2022 +0200| [451b310d4f0ba5a38c3f67ec2ce39bcb62fcf59b] | committer: Andreas Rheinhardt avcodec/fraps: Fix segfault with negative linesizes Using unsigned and negative linesizes doesn't really work. Use ptrdiff_t instead. This f

[FFmpeg-cvslog] avcodec/c93: Fix segfault when using negative linesizes

2022-10-05 Thread Andreas Rheinhardt
ffmpeg | branch: master | Andreas Rheinhardt | Fri Sep 30 18:12:46 2022 +0200| [fced3a17dbdade0635fe900ad0b748c5278c01a2] | committer: Andreas Rheinhardt avcodec/c93: Fix segfault when using negative linesizes c93.c used an int for the stride and an unsigned for the current linenumber. This do

[FFmpeg-cvslog] avcodec/escape124: Fix segfault with negative linesizes

2022-10-05 Thread Andreas Rheinhardt
ffmpeg | branch: master | Andreas Rheinhardt | Fri Sep 30 18:25:04 2022 +0200| [fcfa6965e5e398a850d87a276b0deb5dc5d1525e] | committer: Andreas Rheinhardt avcodec/escape124: Fix segfault with negative linesizes Use ptrdiff_t instead of unsigned for linesizes. Fixes the armovie-escape124 FATE te

[FFmpeg-cvslog] avcodec/audiotoolboxenc: return AVERROR_EXTERNAL immediately when encode error

2022-10-05 Thread Steven Liu
ffmpeg | branch: release/5.1 | Steven Liu | Wed Jun 29 00:14:08 2022 +0800| [79bd6a21a04c7c457bfeb53fddc157bbd80cdaac] | committer: Steven Liu avcodec/audiotoolboxenc: return AVERROR_EXTERNAL immediately when encode error Just return AVERROR_EXTERNAL immediately when encode error. The other lo

[FFmpeg-cvslog] avformat/vividas: Check packet size

2022-10-05 Thread Michael Niedermayer
ffmpeg | branch: release/4.4 | Michael Niedermayer | Sun Sep 18 19:14:07 2022 +0200| [c152b697158466f8b6389394bd4be2fa5a4a0abc] | committer: Michael Niedermayer avformat/vividas: Check packet size Fixes: signed integer overflow: 119760682 - -2084600173 cannot be represented in type 'int' Fixe