comparison h264_loopfilter.c @ 11016:4aee091df934 libavcodec

remove unneeded check
author michael
date Tue, 26 Jan 2010 15:34:21 +0000
parents d844c58b985a
children 2bc05f2fc993
comparison
equal deleted inserted replaced
11015:d844c58b985a 11016:4aee091df934
611 int first_vertical_edge_done = 0; 611 int first_vertical_edge_done = 0;
612 av_unused int dir; 612 av_unused int dir;
613 int list; 613 int list;
614 614
615 if (FRAME_MBAFF 615 if (FRAME_MBAFF
616 // left mb is in picture
617 && h->slice_table[mb_xy-1] != 0xFFFF
618 // and current and left pair do not have the same interlaced type 616 // and current and left pair do not have the same interlaced type
619 && IS_INTERLACED(mb_type^h->left_type[0]) 617 && IS_INTERLACED(mb_type^h->left_type[0])
620 // and left mb is in the same slice if deblocking_filter == 2 618 // and left mb is in the same slice if deblocking_filter == 2
621 && h->left_type[0]) { 619 && h->left_type[0]) {
622 /* First vertical edge is different in MBAFF frames 620 /* First vertical edge is different in MBAFF frames