Skip to content

Commit e13a62b

Browse files
author
Vladimir Morosev
committed
Merge remote-tracking branch 'origin/releases/m71' into Ivana/20190327-enumerate-devices
2 parents e713e7b + 302ebfb commit e13a62b

File tree

7 files changed

+63
-21
lines changed

7 files changed

+63
-21
lines changed

ClientCore/Signalling/Conductor.cs

+23-7
Original file line numberDiff line numberDiff line change
@@ -1669,7 +1669,9 @@ private void DisplayAudioBufferEvent(
16691669
{
16701670
var buffer = evt.Buffer;
16711671
var data = buffer.Channel(0);
1672-
var array = data.Data.ToArray();
1672+
1673+
var dataArray = new Int16[data.Length];
1674+
data.GetData(dataArray);
16731675

16741676
#if DISPLAY_AUDIO_BUFFER_OUTPUT
16751677
var sb = new StringBuilder();
@@ -1687,15 +1689,15 @@ private void DisplayAudioBufferEvent(
16871689

16881690
double scale = Math.Pow(2, 10);
16891691

1690-
for (int index = 0; index < array.Count(); ++index, ++totalSamples)
1692+
for (int index = 0; index < dataArray.Count(); ++index, ++totalSamples)
16911693
{
16921694
#if DISPLAY_AUDIO_BUFFER_OUTPUT
1693-
sb.Append(array[index] + ",");
1695+
sb.Append(dataArray[index] + ",");
16941696
#endif // DISPLAY_AUDIO_BUFFER_OUTPUT
1695-
array[index] = (short)(Math.Sin(totalSamples) * scale);
1697+
dataArray[index] = (Int16)(Math.Sin(totalSamples) * scale);
16961698
}
16971699

1698-
data.Data = array;
1700+
data.SetData(dataArray);
16991701

17001702
#if DISPLAY_AUDIO_BUFFER_OUTPUT
17011703
sb.Append("\n== AUDIO FRAME PROCESSING ==\n");
@@ -1769,16 +1771,30 @@ private void Process_VideoFrameBufferEvent(IVideoFrameBufferEvent evt)
17691771
if (null == colorSpace)
17701772
continue;
17711773

1772-
IReadOnlyList<byte> bits8View;
1773-
IReadOnlyList<UInt16> bits16View;
1774+
byte[] buffer8bit = null;
1775+
ushort[] buffer16bit = null;
1776+
Windows.Foundation.IMemoryBuffer bits8View;
1777+
Windows.Foundation.IMemoryBuffer bits16View;
17741778

17751779
var hasBit8 = colorSpace.Is8BitColorSpace;
17761780
if (hasBit8)
1781+
{
1782+
// copy the data
1783+
buffer8bit = new byte[colorSpace.Length];
1784+
colorSpace.GetData8bit(buffer8bit);
1785+
// or get a buffer view
17771786
bits8View = colorSpace.Data8bit;
1787+
}
17781788

17791789
var hasBit16 = colorSpace.Is16BitColorSpace;
17801790
if (hasBit16)
1791+
{
1792+
// copy the data
1793+
buffer16bit = new ushort[colorSpace.Length];
1794+
colorSpace.GetData16bit(buffer16bit);
1795+
// or get a buffer view
17811796
bits16View = colorSpace.Data16bit;
1797+
}
17821798
}
17831799

17841800
IReadOnlyList<float> viewTransform = mediaSample?.GetCameraViewTransform();
0 Bytes
Binary file not shown.

ClientUnity/Assets/WSATestCertificate.pfx.meta

-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

ClientUnity/ProjectSettings/GraphicsSettings.asset

+1
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ GraphicsSettings:
3737
- {fileID: 10770, guid: 0000000000000000f000000000000000, type: 0}
3838
- {fileID: 16000, guid: 0000000000000000f000000000000000, type: 0}
3939
- {fileID: 17000, guid: 0000000000000000f000000000000000, type: 0}
40+
- {fileID: 16001, guid: 0000000000000000f000000000000000, type: 0}
4041
m_PreloadedShaders: []
4142
m_SpritesDefaultMaterial: {fileID: 10754, guid: 0000000000000000f000000000000000,
4243
type: 0}

ClientUnity/ProjectSettings/ProjectSettings.asset

+27-11
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
--- !u!129 &1
44
PlayerSettings:
55
m_ObjectHideFlags: 0
6-
serializedVersion: 15
6+
serializedVersion: 16
77
productGUID: 97a0b911ef14dab4dab9026860caba16
88
AndroidProfiler: 0
99
AndroidFilterTouchesWhenObscured: 0
@@ -12,7 +12,7 @@ PlayerSettings:
1212
targetDevice: 2
1313
useOnDemandResources: 0
1414
accelerometerFrequency: 60
15-
companyName: OpticalTone
15+
companyName: DefaultCompany
1616
productName: PeerCCUnity
1717
defaultCursor: {fileID: 0}
1818
cursorHotspot: {x: 0, y: 0}
@@ -125,7 +125,6 @@ PlayerSettings:
125125
m_HolographicPauseOnTrackingLoss: 1
126126
xboxOneDisableKinectGpuReservation: 0
127127
xboxOneEnable7thCore: 0
128-
isWsaHolographicRemotingEnabled: 0
129128
vrSettings:
130129
cardboard:
131130
depthFormat: 0
@@ -140,10 +139,17 @@ PlayerSettings:
140139
hololens:
141140
depthFormat: 1
142141
depthBufferSharingEnabled: 1
142+
lumin:
143+
depthFormat: 0
144+
frameTiming: 2
145+
enableGLCache: 0
146+
glCacheMaxBlobSize: 524288
147+
glCacheMaxFileSize: 8388608
143148
oculus:
144149
sharedDepthBuffer: 0
145150
dashSupport: 0
146151
enable360StereoCapture: 0
152+
isWsaHolographicRemotingEnabled: 0
147153
protectGraphicsMemory: 0
148154
enableFrameTimingStats: 0
149155
useHDRDisplay: 0
@@ -192,6 +198,10 @@ PlayerSettings:
192198
iPadHighResPortraitSplashScreen: {fileID: 0}
193199
iPadLandscapeSplashScreen: {fileID: 0}
194200
iPadHighResLandscapeSplashScreen: {fileID: 0}
201+
iPhone65inPortraitSplashScreen: {fileID: 0}
202+
iPhone65inLandscapeSplashScreen: {fileID: 0}
203+
iPhone61inPortraitSplashScreen: {fileID: 0}
204+
iPhone61inLandscapeSplashScreen: {fileID: 0}
195205
appleTVSplashScreen: {fileID: 0}
196206
appleTVSplashScreen2x: {fileID: 0}
197207
tvOSSmallIconLayers: []
@@ -235,21 +245,23 @@ PlayerSettings:
235245
tvOSManualSigningProvisioningProfileType: 0
236246
appleEnableAutomaticSigning: 0
237247
iOSRequireARKit: 0
248+
iOSAutomaticallyDetectAndAddCapabilities: 1
238249
appleEnableProMotion: 0
239250
clonedFromGUID: 00000000000000000000000000000000
240251
templatePackageId:
241252
templateDefaultScene:
242253
AndroidTargetArchitectures: 5
243254
AndroidSplashScreenScale: 0
244255
androidSplashScreen: {fileID: 0}
245-
AndroidKeystoreName:
256+
AndroidKeystoreName: '{inproject}: '
246257
AndroidKeyaliasName:
247258
AndroidBuildApkPerCpuArchitecture: 0
248259
AndroidTVCompatibility: 1
249260
AndroidIsGame: 1
250261
AndroidEnableTango: 0
251262
androidEnableBanner: 1
252263
androidUseLowAccuracyLocation: 0
264+
androidUseCustomKeystore: 0
253265
m_AndroidBanners:
254266
- width: 320
255267
height: 180
@@ -261,13 +273,14 @@ PlayerSettings:
261273
m_BuildTargetBatching: []
262274
m_BuildTargetGraphicsAPIs: []
263275
m_BuildTargetVRSettings:
264-
- m_BuildTarget: Metro
276+
- m_BuildTarget: Windows Store Apps
265277
m_Enabled: 1
266278
m_Devices:
267279
- WindowsMR
268280
m_BuildTargetEnableVuforiaSettings: []
269281
openGLRequireES31: 0
270282
openGLRequireES31AEP: 0
283+
openGLRequireES32: 0
271284
m_TemplateCustomTags: {}
272285
mobileMTRendering:
273286
Android: 1
@@ -457,6 +470,7 @@ PlayerSettings:
457470
ps4DownloadDataSize: 0
458471
ps4GarlicHeapSize: 2048
459472
ps4ProGarlicHeapSize: 2560
473+
playerPrefsMaxSize: 32768
460474
ps4Passcode: frAQBc8Wsa1xVPfvJcrgRYwTiizs2trQ
461475
ps4pnSessions: 1
462476
ps4pnPresence: 1
@@ -504,18 +518,21 @@ PlayerSettings:
504518
webGLCompressionFormat: 1
505519
webGLLinkerTarget: 1
506520
webGLThreadsSupport: 0
521+
webGLWasmStreaming: 0
507522
scriptingDefineSymbols: {}
508523
platformArchitecture: {}
509524
scriptingBackend:
510-
Metro: 1
525+
Windows Store Apps: 1
511526
il2cppCompilerConfiguration: {}
512527
managedStrippingLevel: {}
513528
incrementalIl2cppBuild: {}
514529
allowUnsafeCode: 0
515530
additionalIl2CppArgs:
516531
scriptingRuntimeVersion: 1
532+
gcIncremental: 0
533+
gcWBarrierValidation: 0
517534
apiCompatibilityLevelPerPlatform:
518-
Metro: 3
535+
Windows Store Apps: 3
519536
m_RenderingPath: 1
520537
m_MobileRenderingPath: 1
521538
metroPackageName: PeerCCUnity
@@ -524,7 +541,7 @@ PlayerSettings:
524541
metroCertificatePassword:
525542
metroCertificateSubject: DefaultCompany
526543
metroCertificateIssuer: DefaultCompany
527-
metroCertificateNotAfter: 800dfa209591d401
544+
metroCertificateNotAfter: 00f458483918d601
528545
metroApplicationDescription: PeerCCUnity
529546
wsaImages: {}
530547
metroTileShortName: UnityVideoSurface
@@ -583,7 +600,6 @@ PlayerSettings:
583600
metroFTAName:
584601
metroFTAFileTypes: []
585602
metroProtocolName:
586-
metroCompilationOverrides: 1
587603
XboxOneProductId:
588604
XboxOneUpdateKey:
589605
XboxOneSandboxId:
@@ -608,7 +624,7 @@ PlayerSettings:
608624
XboxOneAllowedProductIds: []
609625
XboxOnePersistentLocalStorageSize: 0
610626
XboxOneXTitleMemory: 8
611-
xboxOneScriptCompiler: 0
627+
xboxOneScriptCompiler: 1
612628
XboxOneOverrideIdentityName:
613629
vrEditorSettings:
614630
daydream:
@@ -621,7 +637,7 @@ PlayerSettings:
621637
m_PortalFolderPath:
622638
luminCert:
623639
m_CertPath:
624-
m_PrivateKeyPath:
640+
m_SignPackage: 1
625641
luminIsChannelApp: 0
626642
luminVersion:
627643
m_VersionCode: 1
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1-
m_EditorVersion: 2018.3.6f1
1+
m_EditorVersion: 2019.1.0f2
2+
m_EditorVersionWithRevision: 2019.1.0f2 (292b93d75a2c)
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
{
2+
"m_SettingKeys": [
3+
"VR Device Disabled",
4+
"VR Device User Alert"
5+
],
6+
"m_SettingValues": [
7+
"False",
8+
"False"
9+
]
10+
}

0 commit comments

Comments
 (0)