| 1229 | } |
| 1230 | |
| 1231 | static uint8_t avifDecoderItemOperatingPoint(const avifDecoderItem * item) |
| 1232 | { |
| 1233 | const avifProperty * a1opProp = avifPropertyArrayFind(&item->properties, "a1op"); |
| 1234 | if (a1opProp) { |
| 1235 | return a1opProp->u.a1op.opIndex; |
| 1236 | } |
| 1237 | return 0; // default |
| 1238 | } |
| 1239 | |
| 1240 | static avifResult avifDecoderItemValidateProperties(const avifDecoderItem * item, |
| 1241 | const char * configPropName, |
no test coverage detected