2024-09-26 15:39:49 +02:00

10 lines
182 B
C

#pragma once
#include <stddef.h>
#include <stdint.h>
typedef struct {
uint16_t *src;
uint16_t *dst;
uint32_t *pm;
size_t n_frames;
size_t n_pixels;
} thread_args;