summaryrefslogtreecommitdiffstats
path: root/video
diff options
context:
space:
mode:
authorsyphyr <syphyr@gmail.com>2023-06-28 01:22:37 +0200
committerPhilip Langdale <github.philipl@overt.org>2023-06-28 10:29:24 -0700
commitf8cb539e6ffce52b370964bd45efe1424aacac53 (patch)
treef8c07d01d8a51bb147ae77a84b5d1c49a50c4f24 /video
parentc3781b2d6837389c0eb6af6ad0e1998c0df76bc1 (diff)
downloadmpv-f8cb539e6ffce52b370964bd45efe1424aacac53.tar.bz2
mpv-f8cb539e6ffce52b370964bd45efe1424aacac53.tar.xz
hwdec: fix undeclared identifier in mediacodec_embed
mediacodec_embed is a `vo` and not a `hwdec`.
Diffstat (limited to 'video')
-rw-r--r--video/out/vo_mediacodec_embed.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/video/out/vo_mediacodec_embed.c b/video/out/vo_mediacodec_embed.c
index bf12c49ceb..08d3866d57 100644
--- a/video/out/vo_mediacodec_embed.c
+++ b/video/out/vo_mediacodec_embed.c
@@ -57,7 +57,7 @@ static int preinit(struct vo *vo)
};
if (!p->hwctx.av_device_ref) {
- MP_VERBOSE(hw, "Failed to create hwdevice_ctx\n");
+ MP_VERBOSE(vo, "Failed to create hwdevice_ctx\n");
return -1;
}