Added support for YUYV/YUV422 formats.

git-svn-id: http://svn.zoneminder.com/svn/zm/trunk@1168 e3e1d417-86f3-4887-817a-d78f3d33393f
This commit is contained in:
stan 2004-12-28 15:47:45 +00:00
parent 4d777ed19c
commit cc448ecc2d
1 changed files with 1 additions and 1 deletions

View File

@ -90,7 +90,7 @@ if ( !isset( $new_monitor ) )
$new_monitor['Triggers'] = split( ',', isset($monitor['Triggers'])?$monitor['Triggers']:"" ); $new_monitor['Triggers'] = split( ',', isset($monitor['Triggers'])?$monitor['Triggers']:"" );
$new_x10_monitor = isset($x10_monitor)?$x10_monitor:array(); $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 ); $remote_palettes = array( $zmSlang8BitGrey=>1, $zmSlang24BitColour=>4 );
$orientations = array( $zmSlangNormal=>0, $zmSlangRotateRight=>90, $zmSlangInverted=>180, $zmSlangRotateLeft=>270 ); $orientations = array( $zmSlangNormal=>0, $zmSlangRotateRight=>90, $zmSlangInverted=>180, $zmSlangRotateLeft=>270 );