vaapi: replace VA_STR_FOURCC

This commit is contained in:
wm4
2016-01-11 20:30:36 +01:00
parent 9fee7077d4
commit 453ea2cb6c
4 changed files with 4 additions and 7 deletions

View File

@@ -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;
}