summaryrefslogtreecommitdiffstats
path: root/video/filter/vf_swapuv.c
diff options
context:
space:
mode:
Diffstat (limited to 'video/filter/vf_swapuv.c')
-rw-r--r--video/filter/vf_swapuv.c11
1 files changed, 5 insertions, 6 deletions
diff --git a/video/filter/vf_swapuv.c b/video/filter/vf_swapuv.c
index 5e879ff557..a9083ccaa8 100644
--- a/video/filter/vf_swapuv.c
+++ b/video/filter/vf_swapuv.c
@@ -42,13 +42,12 @@ static struct mp_image *filter(struct vf_instance *vf, struct mp_image *mpi)
static int query_format(struct vf_instance *vf, unsigned int fmt){
switch(fmt)
{
- case IMGFMT_YV12:
- case IMGFMT_I420:
- case IMGFMT_IYUV:
- case IMGFMT_YVU9:
case IMGFMT_444P:
- case IMGFMT_422P:
- case IMGFMT_411P:
+ case IMGFMT_422P:
+ case IMGFMT_440P:
+ case IMGFMT_420P:
+ case IMGFMT_411P:
+ case IMGFMT_410P:
return vf_next_query_format(vf, fmt);
}
return 0;