vd_lavc: fix return value in receive_frame()

Pointed out by uau. Not sure why gcc doesn't warn (it uses ((void*)0)
for NULL).
This commit is contained in:
wm4 2017-04-07 12:24:26 +02:00
parent c9d3a79187
commit bcfdcd6226
1 changed files with 1 additions and 1 deletions

View File

@ -1133,7 +1133,7 @@ static bool receive_frame(struct dec_video *vd, struct mp_image **out_image)
MP_ERR(vd, "Could not copy back hardware decoded frame.\n"); MP_ERR(vd, "Could not copy back hardware decoded frame.\n");
ctx->hwdec_fail_count = INT_MAX - 1; // force fallback ctx->hwdec_fail_count = INT_MAX - 1; // force fallback
handle_err(vd); handle_err(vd);
return NULL; return false;
} }
} }