MCPcopy Create free account
hub / github.com/FFmpeg/FFmpeg / get_segmentation_char

Function get_segmentation_char

libavcodec/mpegutils.c:133–145  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

131}
132
133static 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
147static char get_interlacement_char(int mb_type)
148{

Callers 1

ff_print_debug_info2Function · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected