Add support for S3D content over HDMI

Add support in the overlay to display 3D content on the HDMI.
The 3D input and out formats are passed along with the regular color format.

Change-Id: I85d96928f1fc43de8b8eafab8526af4e716099a5
This commit is contained in:
Naomi Luis 2011-01-06 19:13:17 -08:00 committed by Arun Kumar K.R
parent de03d0ec9f
commit 140db9dc03

View File

@ -149,9 +149,9 @@ enum {
HAL_3D_IN_LR_SIDE = 0x10000,
HAL_3D_IN_LR_TOP = 0x20000,
HAL_3D_IN_LR_INTERLEAVE = 0x40000,
HAL_3D_OUT_LR_SIDE = 0x1,
HAL_3D_OUT_LR_TOP = 0x2,
HAL_3D_OUT_LR_INTERLEAVE = 0x4
HAL_3D_OUT_LR_SIDE = 0x1000,
HAL_3D_OUT_LR_TOP = 0x2000,
HAL_3D_OUT_LR_INTERLEAVE = 0x4000
};
/*****************************************************************************/