| 131 | } |
| 132 | |
| 133 | static char get_segmentation_char(int mb_type) |
| 134 | { |
| 135 | if (IS_8X8(mb_type)) |
| 136 | return '+'; |
| 137 | else if (IS_16X8(mb_type)) |
| 138 | return '-'; |
| 139 | else if (IS_8X16(mb_type)) |
| 140 | return '|'; |
| 141 | else if (IS_INTRA(mb_type) || IS_16X16(mb_type)) |
| 142 | return ' '; |
| 143 | |
| 144 | return '?'; |
| 145 | } |
| 146 | |
| 147 | static char get_interlacement_char(int mb_type) |
| 148 | { |
no outgoing calls
no test coverage detected