mirror of
https://github.com/mpv-player/mpv
synced 2024-11-14 22:48:35 +01:00
63bf362d11
A user can barely do anything useful with it, and there are no users which access these anyway, so private is better.
26 lines
787 B
C
26 lines
787 B
C
#pragma once
|
|
|
|
#include "filter.h"
|
|
|
|
// A filter which uploads sw frames to hw. Ignores hw frames.
|
|
struct mp_hwupload {
|
|
struct mp_filter *f;
|
|
};
|
|
|
|
struct mp_hwupload *mp_hwupload_create(struct mp_filter *parent, int hw_imgfmt);
|
|
|
|
// Return the best format suited for upload that is supported for a given input
|
|
// imgfmt. This returns the same as imgfmt if the format is natively supported,
|
|
// and otherwise a format that likely results in the least loss.
|
|
// Returns 0 if completely unsupported.
|
|
int mp_hwupload_find_upload_format(struct mp_hwupload *u, int imgfmt);
|
|
|
|
// A filter which downloads sw frames from hw. Ignores sw frames.
|
|
struct mp_hwdownload {
|
|
struct mp_filter *f;
|
|
|
|
struct mp_image_pool *pool;
|
|
};
|
|
|
|
struct mp_hwdownload *mp_hwdownload_create(struct mp_filter *parent);
|