mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-04-02 20:35:37 +02:00
dsicinav: Clip the source size to the expected maximum
A packet larger than cin->bitmap_size does not make sense. Reported-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind CC: libav-stable@libav.org
This commit is contained in:
parent
dd0bfc3a6a
commit
fd81899321
@ -243,6 +243,8 @@ static int cinvideo_decode_frame(AVCodecContext *avctx,
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
bitmap_frame_size = FFMIN(cin->bitmap_size, bitmap_frame_size);
|
||||||
|
|
||||||
/* note: the decoding routines below assumes that
|
/* note: the decoding routines below assumes that
|
||||||
* surface.width = surface.pitch */
|
* surface.width = surface.pitch */
|
||||||
switch (bitmap_frame_type) {
|
switch (bitmap_frame_type) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user