Commit 6c805007 authored by Michael Niedermayer's avatar Michael Niedermayer

Avoid out of picture accesses when CODEC_FLAG_EMU_EDGE is set.

Fixes issue427.

Originally committed as revision 15418 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 64e4af2a
......@@ -2391,7 +2391,7 @@ static inline void xchg_mb_border(H264Context *h, uint8_t *src_y, uint8_t *src_c
deblock_top = h->slice_table[mb_xy] == h->slice_table[h->top_mb_xy];
} else {
deblock_left = (s->mb_x > 0);
deblock_top = (s->mb_y > 0);
deblock_top = (s->mb_y > !!MB_FIELD);
}
src_y -= linesize + 1;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment