---------------------------------------------------------------------------
| 1174 | |
| 1175 | //--------------------------------------------------------------------------- |
| 1176 | static const char* Mxf_CodingEquations(const int128u CodingEquations) |
| 1177 | { |
| 1178 | int32u Code_Compare4=(int32u)CodingEquations.lo; |
| 1179 | switch ((int8u)(Code_Compare4>>16)) |
| 1180 | { |
| 1181 | case 0x01 : return "BT.601"; |
| 1182 | case 0x02 : return "BT.709"; |
| 1183 | case 0x03 : return "SMPTE 240M"; |
| 1184 | case 0x04 : return "YCgCo"; |
| 1185 | case 0x05 : return "Identity"; |
| 1186 | case 0x06 : return "BT.2020 non-constant"; |
| 1187 | default : return ""; |
| 1188 | } |
| 1189 | } |
| 1190 | |
| 1191 | //--------------------------------------------------------------------------- |
| 1192 | static const char* Mxf_ChannelAssignment_ChannelLayout(const int128u& ChannelLayout, int32u ChannelsCount=(int32u)-1) |
no outgoing calls
no test coverage detected