public static extern FBCAPTURE_STATUS fbc_setVodCaptureSettings(
     int width,
     int height,
     int frameRate,
     int bitRate,
     string fullSavePath,
     bool is360,
     bool verticalFlip,
     bool horizontalFlip,
     PROJECTION_TYPE projectionType,
     STEREO_MODE stereoMode);
 public static extern FBCAPTURE_STATUS fbc_setLiveCaptureSettings(
     int width,
     int height,
     int frameRate,
     int bitRate,
     float flushCycleStart,
     float flushCycleAfter,
     string streamUrl,
     bool is360,
     bool verticalFlip,
     bool horizontalFlip,
     PROJECTION_TYPE projectionType,
     STEREO_MODE stereoMode);
    public void ResetStereoMode(STEREO_MODE _mode)
    {
        stereo_mode   = _mode;
        _windowNormal = Vector3.zero;

        if (_corners.ContainsKey(Corner.TopRight))
        {
            if (_windowController)
            {
                _windowController.DestroyCamera();
            }
        }
        else
        {
            _corners.Remove(Corner.BottomLeft);
            _corners.Remove(Corner.BottomRight);
            _corners.Remove(Corner.TopLeft);
            _corners.Remove(Corner.TopRight);
            ShowInstruction(INSTRUCTION.BottomLeft);
        }
    }