summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2016-04-07 17:48:00 +0200
committerwm4 <wm4@nowhere>2016-04-07 17:48:00 +0200
commitf009d16f362694b6f49571b76f8b0331966824b5 (patch)
tree92851b786b11c32c0345cc1a803d58cc535a6219
parent32a92071b4cc58967d51a5e3ce1c3bed219d9111 (diff)
downloadmpv-f009d16f362694b6f49571b76f8b0331966824b5.tar.bz2
mpv-f009d16f362694b6f49571b76f8b0331966824b5.tar.xz
vd_lavc: fix codec vs. decoder confusion
Some functions which expected a codec name (i.e. the name of the video format itself) were passed a decoder name. Most "native" libavcodec decoders have the same name as the codec, so this was never an issue. This should mean that e.g. using "--vd=lavc:h264_mmal --hwdec=mmal" should now actually enable native surface mode (instead of doing copy- back).
-rw-r--r--video/decode/d3d.c4
-rw-r--r--video/decode/d3d.h2
-rw-r--r--video/decode/d3d11va.c4
-rw-r--r--video/decode/dxva2.c4
-rw-r--r--video/decode/lavc.h4
-rw-r--r--video/decode/rpi.c4
-rw-r--r--video/decode/vaapi.c8
-rw-r--r--video/decode/vd_lavc.c27
-rw-r--r--video/decode/vdpau.c2
-rw-r--r--video/decode/videotoolbox.c4
10 files changed, 32 insertions, 31 deletions
diff --git a/video/decode/d3d.c b/video/decode/d3d.c
index 14d94384be..4737ebf1bc 100644
--- a/video/decode/d3d.c
+++ b/video/decode/d3d.c
@@ -97,9 +97,9 @@ static const struct d3dva_mode d3dva_modes[] = {
#undef MODE
#undef MODE2
-int d3d_probe_codec(const char *decoder)
+int d3d_probe_codec(const char *codec)
{
- enum AVCodecID codec = mp_codec_to_av_codec_id(decoder);
+ enum AVCodecID codec = mp_codec_to_av_codec_id(codec);
for (int i = 0; i < MP_ARRAY_SIZE(d3dva_modes); i++) {
const struct d3dva_mode *mode = &d3dva_modes[i];
if (mode->codec == codec)
diff --git a/video/decode/d3d.h b/video/decode/d3d.h
index 107a227579..bbd6bdfd2a 100644
--- a/video/decode/d3d.h
+++ b/video/decode/d3d.h
@@ -30,7 +30,7 @@ struct d3d_decoder_fmt {
DWORD dxfmt_decoded; // D3DFORMAT or DXGI_FORMAT
};
-int d3d_probe_codec(const char *decode);
+int d3d_probe_codec(const char *codec);
struct d3d_decoder_fmt d3d_select_decoder_mode(
struct lavc_ctx *s, const GUID *device_guids, UINT n_guids,
DWORD (*get_dxfmt_cb)(struct lavc_ctx *s, const GUID *guid, int depth));
diff --git a/video/decode/d3d11va.c b/video/decode/d3d11va.c
index 3c0cce6e0d..bf59c0f49b 100644
--- a/video/decode/d3d11va.c
+++ b/video/decode/d3d11va.c
@@ -480,10 +480,10 @@ fail:
static int d3d11va_probe(struct vd_lavc_hwdec *hwdec,
struct mp_hwdec_info *info,
- const char *decoder)
+ const char *codec)
{
hwdec_request_api(info, "d3d11va");
- return d3d_probe_codec(decoder);
+ return d3d_probe_codec(codec);
}
const struct vd_lavc_hwdec mp_vd_lavc_d3d11va_copy = {
diff --git a/video/decode/dxva2.c b/video/decode/dxva2.c
index 79416d52b7..50eee69d2a 100644
--- a/video/decode/dxva2.c
+++ b/video/decode/dxva2.c
@@ -485,7 +485,7 @@ fail:
}
static int dxva2_probe(struct vd_lavc_hwdec *hwdec, struct mp_hwdec_info *info,
- const char *decoder)
+ const char *codec)
{
hwdec_request_api(info, "dxva2");
// dxva2-copy can do without external context; dxva2 requires it.
@@ -494,7 +494,7 @@ static int dxva2_probe(struct vd_lavc_hwdec *hwdec, struct mp_hwdec_info *info,
info->hwctx->type == HWDEC_DXVA2_COPY)
return HWDEC_ERR_NO_CTX;
}
- return d3d_probe_codec(decoder);
+ return d3d_probe_codec(codec);
}
const struct vd_lavc_hwdec mp_vd_lavc_dxva2 = {
diff --git a/video/decode/lavc.h b/video/decode/lavc.h
index 9ef74668d8..44c5c27a0f 100644
--- a/video/decode/lavc.h
+++ b/video/decode/lavc.h
@@ -50,7 +50,7 @@ struct vd_lavc_hwdec {
// get_format callback.
int image_format;
int (*probe)(struct vd_lavc_hwdec *hwdec, struct mp_hwdec_info *info,
- const char *decoder);
+ const char *codec);
int (*init)(struct lavc_ctx *ctx);
int (*init_decoder)(struct lavc_ctx *ctx, int w, int h);
void (*uninit)(struct lavc_ctx *ctx);
@@ -80,7 +80,7 @@ struct hwdec_profile_entry {
const struct hwdec_profile_entry *hwdec_find_profile(
struct lavc_ctx *ctx, const struct hwdec_profile_entry *table);
-bool hwdec_check_codec_support(const char *decoder,
+bool hwdec_check_codec_support(const char *codec,
const struct hwdec_profile_entry *table);
int hwdec_get_max_refs(struct lavc_ctx *ctx);
diff --git a/video/decode/rpi.c b/video/decode/rpi.c
index b72dc34faa..f2ed6d2549 100644
--- a/video/decode/rpi.c
+++ b/video/decode/rpi.c
@@ -50,9 +50,9 @@ static int init(struct lavc_ctx *ctx)
}
static int probe(struct vd_lavc_hwdec *hwdec, struct mp_hwdec_info *info,
- const char *decoder)
+ const char *codec)
{
- return map_codec(decoder) ? 0 : HWDEC_ERR_NO_CODEC;
+ return map_codec(codec) ? 0 : HWDEC_ERR_NO_CODEC;
}
static const char *get_codec(struct lavc_ctx *ctx, const char *codec)
diff --git a/video/decode/vaapi.c b/video/decode/vaapi.c
index d7aa2694aa..97fe59c889 100644
--- a/video/decode/vaapi.c
+++ b/video/decode/vaapi.c
@@ -431,12 +431,12 @@ static int init(struct lavc_ctx *ctx)
}
static int probe(struct vd_lavc_hwdec *hwdec, struct mp_hwdec_info *info,
- const char *decoder)
+ const char *codec)
{
hwdec_request_api(info, "vaapi");
if (!info || !info->hwctx || !info->hwctx->vaapi_ctx)
return HWDEC_ERR_NO_CTX;
- if (!hwdec_check_codec_support(decoder, profiles))
+ if (!hwdec_check_codec_support(codec, profiles))
return HWDEC_ERR_NO_CODEC;
if (va_guess_if_emulated(info->hwctx->vaapi_ctx))
return HWDEC_ERR_EMULATED;
@@ -444,14 +444,14 @@ static int probe(struct vd_lavc_hwdec *hwdec, struct mp_hwdec_info *info,
}
static int probe_copy(struct vd_lavc_hwdec *hwdec, struct mp_hwdec_info *info,
- const char *decoder)
+ const char *codec)
{
struct priv dummy = {mp_null_log};
if (!create_va_dummy_ctx(&dummy))
return HWDEC_ERR_NO_CTX;
bool emulated = va_guess_if_emulated(dummy.ctx);
destroy_va_dummy_ctx(&dummy);
- if (!hwdec_check_codec_support(decoder, profiles))
+ if (!hwdec_check_codec_support(codec, profiles))
return HWDEC_ERR_NO_CODEC;
if (emulated)
return HWDEC_ERR_EMULATED;
diff --git a/video/decode/vd_lavc.c b/video/decode/vd_lavc.c
index 677d406989..175df0bc6e 100644
--- a/video/decode/vd_lavc.c
+++ b/video/decode/vd_lavc.c
@@ -214,12 +214,12 @@ const struct hwdec_profile_entry *hwdec_find_profile(
}
// Check codec support, without checking the profile.
-bool hwdec_check_codec_support(const char *decoder,
+bool hwdec_check_codec_support(const char *codec,
const struct hwdec_profile_entry *table)
{
- enum AVCodecID codec = mp_codec_to_av_codec_id(decoder);
+ enum AVCodecID codecid = mp_codec_to_av_codec_id(codec);
for (int n = 0; table[n].av_codec; n++) {
- if (table[n].av_codec == codec)
+ if (table[n].av_codec == codecid)
return true;
}
return false;
@@ -240,17 +240,17 @@ void hwdec_request_api(struct mp_hwdec_info *info, const char *api_name)
}
static int hwdec_probe(struct vd_lavc_hwdec *hwdec, struct mp_hwdec_info *info,
- const char *decoder)
+ const char *codec)
{
int r = 0;
if (hwdec->probe)
- r = hwdec->probe(hwdec, info, decoder);
+ r = hwdec->probe(hwdec, info, codec);
return r;
}
static struct vd_lavc_hwdec *probe_hwdec(struct dec_video *vd, bool autoprobe,
enum hwdec_type api,
- const char *decoder)
+ const char *codec)
{
MP_VERBOSE(vd, "Probing '%s'...\n", m_opt_choice_str(mp_hwdec_names, api));
struct vd_lavc_hwdec *hwdec = find_hwcodec(api);
@@ -258,7 +258,7 @@ static struct vd_lavc_hwdec *probe_hwdec(struct dec_video *vd, bool autoprobe,
MP_VERBOSE(vd, "Requested hardware decoder not compiled.\n");
return NULL;
}
- int r = hwdec_probe(hwdec, vd->hwdec_info, decoder);
+ int r = hwdec_probe(hwdec, vd->hwdec_info, codec);
if (r == HWDEC_ERR_EMULATED) {
if (autoprobe)
return NULL;
@@ -269,8 +269,8 @@ static struct vd_lavc_hwdec *probe_hwdec(struct dec_video *vd, bool autoprobe,
if (r >= 0) {
return hwdec;
} else if (r == HWDEC_ERR_NO_CODEC) {
- MP_VERBOSE(vd, "Hardware decoder '%s' not found in libavcodec.\n",
- decoder);
+ MP_VERBOSE(vd, "Hardware decoder for '%s' with the given API not found "
+ "in libavcodec.\n", codec);
} else if (r == HWDEC_ERR_NO_CTX && !autoprobe) {
MP_WARN(vd, "VO does not support requested hardware decoder, or "
"loading it failed.\n");
@@ -301,25 +301,26 @@ static void reinit(struct dec_video *vd)
{
vd_ffmpeg_ctx *ctx = vd->priv;
const char *decoder = ctx->decoder;
+ const char *codec = vd->codec->codec;
uninit_avctx(vd);
struct vd_lavc_hwdec *hwdec = NULL;
- if (hwdec_codec_allowed(vd, decoder)) {
+ if (hwdec_codec_allowed(vd, codec)) {
if (vd->opts->hwdec_api == HWDEC_AUTO) {
for (int n = 0; hwdec_list[n]; n++) {
- hwdec = probe_hwdec(vd, true, hwdec_list[n]->type, decoder);
+ hwdec = probe_hwdec(vd, true, hwdec_list[n]->type, codec);
if (hwdec)
break;
}
} else if (vd->opts->hwdec_api != HWDEC_NONE) {
- hwdec = probe_hwdec(vd, false, vd->opts->hwdec_api, decoder);
+ hwdec = probe_hwdec(vd, false, vd->opts->hwdec_api, codec);
}
} else {
MP_VERBOSE(vd, "Not trying to use hardware decoding: codec %s is not "
"on whitelist, or does not support hardware acceleration.\n",
- decoder);
+ codec);
}
if (hwdec) {
diff --git a/video/decode/vdpau.c b/video/decode/vdpau.c
index c69465094b..313fabff76 100644
--- a/video/decode/vdpau.c
+++ b/video/decode/vdpau.c
@@ -84,7 +84,7 @@ static int init(struct lavc_ctx *ctx)
}
static int probe(struct vd_lavc_hwdec *hwdec, struct mp_hwdec_info *info,
- const char *decoder)
+ const char *codec)
{
hwdec_request_api(info, "vdpau");
if (!info || !info->hwctx || !info->hwctx->vdpau_ctx)
diff --git a/video/decode/videotoolbox.c b/video/decode/videotoolbox.c
index 61e3005bd5..2867204ecd 100644
--- a/video/decode/videotoolbox.c
+++ b/video/decode/videotoolbox.c
@@ -28,12 +28,12 @@
static int probe(struct vd_lavc_hwdec *hwdec, struct mp_hwdec_info *info,
- const char *decoder)
+ const char *codec)
{
hwdec_request_api(info, "videotoolbox");
if (!info || !info->hwctx || info->hwctx->type != HWDEC_VIDEOTOOLBOX)
return HWDEC_ERR_NO_CTX;
- switch (mp_codec_to_av_codec_id(decoder)) {
+ switch (mp_codec_to_av_codec_id(codec)) {
case AV_CODEC_ID_H264:
case AV_CODEC_ID_H263:
case AV_CODEC_ID_MPEG1VIDEO: