pantry/projects/github.com/sekrit-twc/zimg/test.c

9 lines
222 B
C
Raw Normal View History

#include <assert.h>
#include <zimg.h>
int main() {
zimg_image_format format;
zimg_image_format_default(&format, ZIMG_API_VERSION);
assert(ZIMG_MATRIX_UNSPECIFIED == format.matrix_coefficients);
return 0;
}