summaryrefslogtreecommitdiffstats
path: root/video/vaapi.c
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2016-01-11 20:30:36 +0100
committerwm4 <wm4@nowhere>2016-01-11 20:30:36 +0100
commit453ea2cb6c4be5142987e218cee609cca22e48f5 (patch)
treed365031a9577d01f84ca28e005a1f172b5201499 /video/vaapi.c
parent9fee7077d483154e7c2ad9442d9e49bb5e7ad2bb (diff)
downloadmpv-453ea2cb6c4be5142987e218cee609cca22e48f5.tar.bz2
mpv-453ea2cb6c4be5142987e218cee609cca22e48f5.tar.xz
vaapi: replace VA_STR_FOURCC
Diffstat (limited to 'video/vaapi.c')
-rw-r--r--video/vaapi.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/video/vaapi.c b/video/vaapi.c
index 1b4cdf6000..61d94ef156 100644
--- a/video/vaapi.c
+++ b/video/vaapi.c
@@ -104,7 +104,7 @@ static void va_get_formats(struct mp_vaapi_ctx *ctx)
return;
MP_VERBOSE(ctx, "%d image formats available:\n", formats->num);
for (int i = 0; i < formats->num; i++)
- MP_VERBOSE(ctx, " %s\n", VA_STR_FOURCC(formats->entries[i].fourcc));
+ MP_VERBOSE(ctx, " %s\n", mp_tag_str(formats->entries[i].fourcc));
ctx->image_formats = formats;
}