mirror of https://github.com/mpv-player/mpv
19 lines
373 B
C
19 lines
373 B
C
|
#pragma once
|
||
|
|
||
|
#include "common/common.h"
|
||
|
#include "common/msg.h"
|
||
|
|
||
|
#include <libplacebo/common.h>
|
||
|
|
||
|
void mppl_ctx_set_log(struct pl_context *ctx, struct mp_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,
|
||
|
};
|
||
|
}
|