mirror of
https://github.com/mpv-player/mpv
synced 2025-01-29 19:22:48 +00:00
7d11eda72e
Libav seems rather dead: no release for 2 years, no new git commits in master for almost a year (with one exception ~6 months ago). From what I can tell, some developers resigned themselves to the horrifying idea to post patches to ffmpeg-devel instead, while the rest of the developers went on to greener pastures. Libav was a better project than FFmpeg. Unfortunately, FFmpeg won, because it managed to keep the name and website. Libav was pushed more and more into obscurity: while there was initially a big push for Libav, FFmpeg just remained "in place" and visible for most people. FFmpeg was slowly draining all manpower and energy from Libav. A big part of this was that FFmpeg stole code from Libav (regular merges of the entire Libav git tree), making it some sort of Frankenstein mirror of Libav, think decaying zombie with additional legs ("features") nailed to it. "Stealing" surely is the wrong word; I'm just aping the language that some of the FFmpeg members used to use. All that is in the past now, I'm probably the only person left who is annoyed by this, and with this commit I'm putting this decade long problem finally to an end. I just thought I'd express my annoyance about this fucking shitshow one last time. The most intrusive change in this commit is the resample filter, which originally used libavresample. Since the FFmpeg developer refused to enable libavresample by default for drama reasons, and the API was slightly different, so the filter used some big preprocessor mess to make it compatible to libswresample. All that falls away now. The simplification to the build system is also significant.
201 lines
5.8 KiB
C
201 lines
5.8 KiB
C
/*
|
|
* This file is part of mpv.
|
|
*
|
|
* mpv is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
* License as published by the Free Software Foundation; either
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
*
|
|
* mpv is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU Lesser General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
* License along with mpv. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#include <stddef.h>
|
|
#include <string.h>
|
|
|
|
#include "config.h"
|
|
|
|
#include "common/common.h"
|
|
#include "common/msg.h"
|
|
#include "options/m_config.h"
|
|
#include "hwdec.h"
|
|
|
|
extern const struct ra_hwdec_driver ra_hwdec_vaegl;
|
|
extern const struct ra_hwdec_driver ra_hwdec_vaglx;
|
|
extern const struct ra_hwdec_driver ra_hwdec_videotoolbox;
|
|
extern const struct ra_hwdec_driver ra_hwdec_vdpau;
|
|
extern const struct ra_hwdec_driver ra_hwdec_dxva2egl;
|
|
extern const struct ra_hwdec_driver ra_hwdec_d3d11egl;
|
|
extern const struct ra_hwdec_driver ra_hwdec_dxva2gldx;
|
|
extern const struct ra_hwdec_driver ra_hwdec_dxva2;
|
|
extern const struct ra_hwdec_driver ra_hwdec_d3d11va;
|
|
extern const struct ra_hwdec_driver ra_hwdec_dxva2dxgi;
|
|
extern const struct ra_hwdec_driver ra_hwdec_cuda;
|
|
extern const struct ra_hwdec_driver ra_hwdec_cuda_nvdec;
|
|
extern const struct ra_hwdec_driver ra_hwdec_rpi_overlay;
|
|
extern const struct ra_hwdec_driver ra_hwdec_drmprime_drm;
|
|
|
|
const struct ra_hwdec_driver *const ra_hwdec_drivers[] = {
|
|
#if HAVE_VAAPI_EGL || HAVE_VAAPI_VULKAN
|
|
&ra_hwdec_vaegl,
|
|
#endif
|
|
#if HAVE_VIDEOTOOLBOX_GL || HAVE_IOS_GL
|
|
&ra_hwdec_videotoolbox,
|
|
#endif
|
|
#if HAVE_D3D_HWACCEL
|
|
#if HAVE_EGL_ANGLE
|
|
&ra_hwdec_d3d11egl,
|
|
#if HAVE_D3D9_HWACCEL
|
|
&ra_hwdec_dxva2egl,
|
|
#endif
|
|
#endif
|
|
#if HAVE_D3D11
|
|
&ra_hwdec_d3d11va,
|
|
#if HAVE_D3D9_HWACCEL
|
|
&ra_hwdec_dxva2dxgi,
|
|
#endif
|
|
#endif
|
|
#endif
|
|
#if HAVE_GL_DXINTEROP_D3D9
|
|
&ra_hwdec_dxva2gldx,
|
|
#endif
|
|
#if HAVE_CUDA_INTEROP
|
|
&ra_hwdec_cuda,
|
|
#endif
|
|
#if HAVE_VDPAU_GL_X11
|
|
&ra_hwdec_vdpau,
|
|
#endif
|
|
#if HAVE_RPI_MMAL
|
|
&ra_hwdec_rpi_overlay,
|
|
#endif
|
|
#if HAVE_DRM
|
|
&ra_hwdec_drmprime_drm,
|
|
#endif
|
|
|
|
NULL
|
|
};
|
|
|
|
struct ra_hwdec *ra_hwdec_load_driver(struct ra *ra, struct mp_log *log,
|
|
struct mpv_global *global,
|
|
struct mp_hwdec_devices *devs,
|
|
const struct ra_hwdec_driver *drv,
|
|
bool is_auto)
|
|
{
|
|
struct ra_hwdec *hwdec = talloc(NULL, struct ra_hwdec);
|
|
*hwdec = (struct ra_hwdec) {
|
|
.driver = drv,
|
|
.log = mp_log_new(hwdec, log, drv->name),
|
|
.global = global,
|
|
.ra = ra,
|
|
.devs = devs,
|
|
.probing = is_auto,
|
|
.priv = talloc_zero_size(hwdec, drv->priv_size),
|
|
};
|
|
mp_verbose(log, "Loading hwdec driver '%s'\n", drv->name);
|
|
if (hwdec->driver->init(hwdec) < 0) {
|
|
ra_hwdec_uninit(hwdec);
|
|
mp_verbose(log, "Loading failed.\n");
|
|
return NULL;
|
|
}
|
|
return hwdec;
|
|
}
|
|
|
|
int ra_hwdec_validate_opt(struct mp_log *log, const m_option_t *opt,
|
|
struct bstr name, struct bstr param)
|
|
{
|
|
bool help = bstr_equals0(param, "help");
|
|
if (help)
|
|
mp_info(log, "Available hwdecs:\n");
|
|
for (int n = 0; ra_hwdec_drivers[n]; n++) {
|
|
const struct ra_hwdec_driver *drv = ra_hwdec_drivers[n];
|
|
if (help) {
|
|
mp_info(log, " %s\n", drv->name);
|
|
} else if (bstr_equals0(param, drv->name)) {
|
|
return 1;
|
|
}
|
|
}
|
|
if (help) {
|
|
mp_info(log, " auto (behavior depends on context)\n"
|
|
" all (load all hwdecs)\n"
|
|
" no (do not load any and block loading on demand)\n");
|
|
return M_OPT_EXIT;
|
|
}
|
|
if (!param.len)
|
|
return 1; // "" is treated specially
|
|
if (bstr_equals0(param, "all") || bstr_equals0(param, "auto") ||
|
|
bstr_equals0(param, "no"))
|
|
return 1;
|
|
mp_fatal(log, "No hwdec backend named '%.*s' found!\n", BSTR_P(param));
|
|
return M_OPT_INVALID;
|
|
}
|
|
|
|
void ra_hwdec_uninit(struct ra_hwdec *hwdec)
|
|
{
|
|
if (hwdec)
|
|
hwdec->driver->uninit(hwdec);
|
|
talloc_free(hwdec);
|
|
}
|
|
|
|
bool ra_hwdec_test_format(struct ra_hwdec *hwdec, int imgfmt)
|
|
{
|
|
for (int n = 0; hwdec->driver->imgfmts[n]; n++) {
|
|
if (hwdec->driver->imgfmts[n] == imgfmt)
|
|
return true;
|
|
}
|
|
return false;
|
|
}
|
|
|
|
struct ra_hwdec_mapper *ra_hwdec_mapper_create(struct ra_hwdec *hwdec,
|
|
struct mp_image_params *params)
|
|
{
|
|
assert(ra_hwdec_test_format(hwdec, params->imgfmt));
|
|
|
|
struct ra_hwdec_mapper *mapper = talloc_ptrtype(NULL, mapper);
|
|
*mapper = (struct ra_hwdec_mapper){
|
|
.owner = hwdec,
|
|
.driver = hwdec->driver->mapper,
|
|
.log = hwdec->log,
|
|
.ra = hwdec->ra,
|
|
.priv = talloc_zero_size(mapper, hwdec->driver->mapper->priv_size),
|
|
.src_params = *params,
|
|
.dst_params = *params,
|
|
};
|
|
if (mapper->driver->init(mapper) < 0)
|
|
ra_hwdec_mapper_free(&mapper);
|
|
return mapper;
|
|
}
|
|
|
|
void ra_hwdec_mapper_free(struct ra_hwdec_mapper **mapper)
|
|
{
|
|
struct ra_hwdec_mapper *p = *mapper;
|
|
if (p) {
|
|
ra_hwdec_mapper_unmap(p);
|
|
p->driver->uninit(p);
|
|
talloc_free(p);
|
|
}
|
|
*mapper = NULL;
|
|
}
|
|
|
|
void ra_hwdec_mapper_unmap(struct ra_hwdec_mapper *mapper)
|
|
{
|
|
if (mapper->driver->unmap)
|
|
mapper->driver->unmap(mapper);
|
|
mp_image_unrefp(&mapper->src);
|
|
}
|
|
|
|
int ra_hwdec_mapper_map(struct ra_hwdec_mapper *mapper, struct mp_image *img)
|
|
{
|
|
ra_hwdec_mapper_unmap(mapper);
|
|
mp_image_setrefp(&mapper->src, img);
|
|
if (mapper->driver->map(mapper) < 0) {
|
|
ra_hwdec_mapper_unmap(mapper);
|
|
return -1;
|
|
}
|
|
return 0;
|
|
}
|