mirror of
https://github.com/mpv-player/mpv
synced 2025-02-17 21:27:08 +00:00
vf_vavpp: reindent
This commit is contained in:
parent
f5ff2656e0
commit
837b865c7f
@ -303,14 +303,12 @@ static int filter_ext(struct vf_instance *vf, struct mp_image *in)
|
||||
{
|
||||
struct vf_priv_s *p = vf->priv;
|
||||
|
||||
if (in) {
|
||||
if (in->imgfmt != IMGFMT_VAAPI) {
|
||||
struct mp_image *tmp = upload(vf, in);
|
||||
talloc_free(in);
|
||||
in = tmp;
|
||||
if (!in)
|
||||
return -1;
|
||||
}
|
||||
if (in && in->imgfmt != IMGFMT_VAAPI) {
|
||||
struct mp_image *tmp = upload(vf, in);
|
||||
talloc_free(in);
|
||||
in = tmp;
|
||||
if (!in)
|
||||
return -1;
|
||||
}
|
||||
|
||||
if (in) {
|
||||
|
Loading…
Reference in New Issue
Block a user