Commit 024bf79f authored by Michael Niedermayer's avatar Michael Niedermayer

Simplify deblock_left/top condition for deblocking_filter=2

Originally committed as revision 21876 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 90a5849e
...@@ -996,9 +996,8 @@ static inline void xchg_mb_border(H264Context *h, uint8_t *src_y, uint8_t *src_c ...@@ -996,9 +996,8 @@ static inline void xchg_mb_border(H264Context *h, uint8_t *src_y, uint8_t *src_c
} }
if(h->deblocking_filter == 2) { if(h->deblocking_filter == 2) {
mb_xy = h->mb_xy; deblock_left = h->left_type[0];
deblock_left = h->slice_table[mb_xy] == h->slice_table[mb_xy - 1]; deblock_top = h->top_type;
deblock_top = h->slice_table[mb_xy] == h->slice_table[h->top_mb_xy];
} else { } else {
deblock_left = (s->mb_x > 0); deblock_left = (s->mb_x > 0);
deblock_top = (s->mb_y > !!MB_FIELD); deblock_top = (s->mb_y > !!MB_FIELD);
......
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