0
0
mirror of https://github.com/mpv-player/mpv.git synced 2024-09-20 12:02:23 +02:00

vda: attempt to fix build (2)

Still no OSX here.
This commit is contained in:
wm4 2013-12-22 01:44:19 +01:00
parent cb36f9fddb
commit 4833e92b54

View File

@ -79,7 +79,7 @@ static void print_vda_error(struct mp_log *log, int lev, char *message,
for (int n = 0; vda_errors[n].code < 0; n++)
if (vda_errors[n].code == error_code) {
mp_msg(log, lev, "%s: %s (%d)\n",
message, vda_errors[n].reason, error_code);
message, vda_errors[n].reason, error_code);
return;
}
@ -135,7 +135,7 @@ static int init_vda_decoder(struct lavc_ctx *ctx)
&p->vda_ctx, ctx->avctx->extradata, ctx->avctx->extradata_size);
if (status) {
print_vda_error(ctx->log, "failed to init VDA decoder", status);
print_vda_error(ctx->log, MSGL_ERR, "failed to init VDA decoder", status);
return -1;
}