#pragma once #include "config.h" #include "common/common.h" #include "common/msg.h" #include "video/csputils.h" #include "video/mp_image.h" #include #include #include #include #include #include pl_log mppl_log_create(void *tactx, struct mp_log *log); void mppl_log_set_probing(pl_log log, bool probing); static inline struct pl_rect2d mp_rect2d_to_pl(struct mp_rect rc) { return (struct pl_rect2d) { .x0 = rc.x0, .y0 = rc.y0, .x1 = rc.x1, .y1 = rc.y1, }; }