| 504 | } |
| 505 | |
| 506 | void avifEncoderDestroy(avifEncoder * encoder) |
| 507 | { |
| 508 | if (encoder->csOptions) { |
| 509 | avifCodecSpecificOptionsDestroy(encoder->csOptions); |
| 510 | } |
| 511 | if (encoder->data) { |
| 512 | avifEncoderDataDestroy(encoder->data); |
| 513 | } |
| 514 | avifFree(encoder); |
| 515 | } |
| 516 | |
| 517 | avifResult avifEncoderSetCodecSpecificOption(avifEncoder * encoder, const char * key, const char * value) |
| 518 | { |
no test coverage detected