summaryrefslogtreecommitdiff
path: root/v4l2-apps/libv4l/libv4lconvert/flip.c
diff options
context:
space:
mode:
Diffstat (limited to 'v4l2-apps/libv4l/libv4lconvert/flip.c')
-rw-r--r--v4l2-apps/libv4l/libv4lconvert/flip.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/v4l2-apps/libv4l/libv4lconvert/flip.c b/v4l2-apps/libv4l/libv4lconvert/flip.c
index 5a108c8d9..f47afde72 100644
--- a/v4l2-apps/libv4l/libv4lconvert/flip.c
+++ b/v4l2-apps/libv4l/libv4lconvert/flip.c
@@ -119,6 +119,7 @@ void v4lconvert_rotate(unsigned char *src, unsigned char *dest,
v4lconvert_rotate90_rgbbgr24(src, dest, width, height);
break;
case V4L2_PIX_FMT_YUV420:
+ case V4L2_PIX_FMT_YVU420:
v4lconvert_rotate90_yuv420(src, dest, width, height);
break;
}
@@ -130,6 +131,7 @@ void v4lconvert_rotate(unsigned char *src, unsigned char *dest,
v4lconvert_rotate180_rgbbgr24(src, dest, width, height);
break;
case V4L2_PIX_FMT_YUV420:
+ case V4L2_PIX_FMT_YVU420:
v4lconvert_rotate180_yuv420(src, dest, width, height);
break;
}