mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
ff_emulated_edge_mc: fix integer anomalies, fix out of array reads
Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
7750c48d30
commit
2207ea44fb
@ -131,10 +131,12 @@ void FUNC(ff_emulated_edge_mc)(uint8_t *buf, const uint8_t *src, int linesize, i
|
||||
int start_y, start_x, end_y, end_x;
|
||||
|
||||
if(src_y>= h){
|
||||
src+= (h-1-src_y)*linesize;
|
||||
src-= src_y*linesize;
|
||||
src+= (h-1)*linesize;
|
||||
src_y=h-1;
|
||||
}else if(src_y<=-block_h){
|
||||
src+= (1-block_h-src_y)*linesize;
|
||||
src-= src_y*linesize;
|
||||
src+= (1-block_h)*linesize;
|
||||
src_y=1-block_h;
|
||||
}
|
||||
if(src_x>= w){
|
||||
|
@ -1878,10 +1878,12 @@ static av_always_inline void emulated_edge_mc(uint8_t *buf, const uint8_t *src,
|
||||
int start_y, start_x, end_y, end_x, src_y_add = 0;
|
||||
|
||||
if (src_y >= h) {
|
||||
src_y_add = h - 1 - src_y;
|
||||
src -= src_y*linesize;
|
||||
src_y_add = h - 1;
|
||||
src_y = h - 1;
|
||||
} else if (src_y <= -block_h) {
|
||||
src_y_add = 1 - block_h - src_y;
|
||||
src -= src_y*linesize;
|
||||
src_y_add = 1 - block_h;
|
||||
src_y = 1 - block_h;
|
||||
}
|
||||
if (src_x >= w) {
|
||||
|
Loading…
Reference in New Issue
Block a user