From cc448ecc2de77054902961d35948fea50d6d619a Mon Sep 17 00:00:00 2001 From: stan Date: Tue, 28 Dec 2004 15:47:45 +0000 Subject: [PATCH] Added support for YUYV/YUV422 formats. git-svn-id: http://svn.zoneminder.com/svn/zm/trunk@1168 e3e1d417-86f3-4887-817a-d78f3d33393f --- web/zm_html_view_monitor.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/zm_html_view_monitor.php b/web/zm_html_view_monitor.php index 39d1eab5d..11c46fc57 100644 --- a/web/zm_html_view_monitor.php +++ b/web/zm_html_view_monitor.php @@ -90,7 +90,7 @@ if ( !isset( $new_monitor ) ) $new_monitor['Triggers'] = split( ',', isset($monitor['Triggers'])?$monitor['Triggers']:"" ); $new_x10_monitor = isset($x10_monitor)?$x10_monitor:array(); } -$local_palettes = array( $zmSlangGrey=>1, "RGB24"=>4, "RGB565"=>3, "RGB555"=>6, "YUV422P"=>13, "YUV420P"=>15 ); +$local_palettes = array( $zmSlangGrey=>1, "RGB24"=>4, "RGB565"=>3, "RGB555"=>6, "YUV422"=>7, "YUYV"=>8, "YUV422P"=>13, "YUV420P"=>15 ); $remote_palettes = array( $zmSlang8BitGrey=>1, $zmSlang24BitColour=>4 ); $orientations = array( $zmSlangNormal=>0, $zmSlangRotateRight=>90, $zmSlangInverted=>180, $zmSlangRotateLeft=>270 );