| 65 | }; |
| 66 | |
| 67 | int32_t Eval(int32_t a, int32_t b, avifSampleTransformTokenType op) { |
| 68 | AvifExpression e; |
| 69 | e.AddConstant(a); |
| 70 | e.AddConstant(b); |
| 71 | e.AddOperator(op); |
| 72 | return e.Apply(); |
| 73 | } |
| 74 | |
| 75 | //------------------------------------------------------------------------------ |
| 76 |
no test coverage detected