From 73f0afe78c73179bfbdcdec37472ad97b9c0468f Mon Sep 17 00:00:00 2001 From: jmcneill Date: Sun, 14 Sep 2008 00:26:35 +0000 Subject: [PATCH] Add RGB24 --- sys/dev/video_if.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/sys/dev/video_if.h b/sys/dev/video_if.h index 4e2416e91019..a2134d01ac12 100644 --- a/sys/dev/video_if.h +++ b/sys/dev/video_if.h @@ -1,4 +1,4 @@ -/* $NetBSD: video_if.h,v 1.1 2008/09/06 19:00:54 jmcneill Exp $ */ +/* $NetBSD: video_if.h,v 1.2 2008/09/14 00:26:35 jmcneill Exp $ */ /* * Copyright (c) 2008 Patrick Mahoney @@ -184,6 +184,7 @@ enum video_pixel_format { /* uncompressed frame-based formats */ VIDEO_FORMAT_YUY2, /* packed 4:2:2 */ VIDEO_FORMAT_NV12, /* planar 4:2:0 */ + VIDEO_FORMAT_RGB24, /* compressed frame-based formats */ VIDEO_FORMAT_MJPEG, /* frames of JPEG images */