| 80 | return AVIF_TRUE; |
| 81 | } |
| 82 | static avifBool avifPushOperator(avifSampleTransformExpression * expression, avifSampleTransformTokenType operator) |
| 83 | { |
| 84 | avifSampleTransformToken * token = (avifSampleTransformToken *)avifArrayPush(expression); |
| 85 | if (token == NULL) { |
| 86 | return AVIF_FALSE; |
| 87 | } |
| 88 | token->type = (uint8_t)operator; |
| 89 | return AVIF_TRUE; |
| 90 | } |
| 91 | |
| 92 | avifResult avifSampleTransformRecipeToExpression(avifSampleTransformRecipe recipe, avifSampleTransformExpression * expression) |
| 93 | { |
no test coverage detected