summaryrefslogtreecommitdiffstats
path: root/libmpcodecs/vf_yvu9.c
diff options
context:
space:
mode:
Diffstat (limited to 'libmpcodecs/vf_yvu9.c')
-rw-r--r--libmpcodecs/vf_yvu9.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/libmpcodecs/vf_yvu9.c b/libmpcodecs/vf_yvu9.c
index 12aa4dad61..19976da5da 100644
--- a/libmpcodecs/vf_yvu9.c
+++ b/libmpcodecs/vf_yvu9.c
@@ -18,12 +18,12 @@
static int config(struct vf_instance* vf,
int width, int height, int d_width, int d_height,
unsigned int flags, unsigned int outfmt){
-
+
if(vf_next_query_format(vf,IMGFMT_YV12)<=0){
mp_tmsg(MSGT_VFILTER, MSGL_WARN, "%s not supported by next filter/vo :(\n", "YVU9");
return 0;
}
-
+
return vf_next_config(vf,width,height,d_width,d_height,flags,IMGFMT_YV12);
}
@@ -56,7 +56,7 @@ static int put_image(struct vf_instance* vf, mp_image_t *mpi, double pts){
}
vf_clone_mpi_attributes(dmpi, mpi);
-
+
return vf_next_put_image(vf,dmpi, pts);
}