Skip to content

Commit

Permalink
[UWP] [Xbox] Fix 4K HEVC crash due out of memory
Browse files Browse the repository at this point in the history
  • Loading branch information
tunip3 authored and thexai committed Apr 29, 2021
1 parent 93c33d2 commit f8146a7
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
3 changes: 2 additions & 1 deletion project/Win32BuildSetup/AppxManifest.xml.in
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<Package IgnorableNamespaces="uap" xmlns="http://schemas.microsoft.com/appx/manifest/foundation/windows10" xmlns:uap="http://schemas.microsoft.com/appx/manifest/uap/windows10" xmlns:rescap="http://schemas.microsoft.com/appx/manifest/foundation/windows10/restrictedcapabilities">
<Package IgnorableNamespaces="uap rescap" xmlns="http://schemas.microsoft.com/appx/manifest/foundation/windows10" xmlns:uap="http://schemas.microsoft.com/appx/manifest/uap/windows10" xmlns:rescap="http://schemas.microsoft.com/appx/manifest/foundation/windows10/restrictedcapabilities">
<Identity Name="@PACKAGE_IDENTITY@" ProcessorArchitecture="@TARGET_ARCHITECTURE@" Publisher="CN=@PACKAGE_PUBLISHER@" Version="@VERSION_CODE@.0" />
<Properties>
<DisplayName>@APP_NAME@</DisplayName>
Expand Down Expand Up @@ -169,5 +169,6 @@
<uap:Capability Name="videosLibrary" />
<uap:Capability Name="removableStorage" />
<uap:Capability Name="picturesLibrary" />
<rescap:Capability Name="expandedResources" />
</Capabilities>
</Package>
4 changes: 3 additions & 1 deletion tools/windows/packaging/uwp/package.appxmanifest.in
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@
xmlns:mp="http://schemas.microsoft.com/appx/2014/phone/manifest"
xmlns:uap="http://schemas.microsoft.com/appx/manifest/uap/windows10"
xmlns:uap3="http://schemas.microsoft.com/appx/manifest/uap/windows10/3"
IgnorableNamespaces="mp uap uap3">
xmlns:rescap="http://schemas.microsoft.com/appx/manifest/foundation/windows10/restrictedcapabilities"
IgnorableNamespaces="mp uap uap3 rescap">

<Identity Name="@APP_PACKAGE_IDENTITY@" ProcessorArchitecture="@SDK_TARGET_ARCH@" Publisher="CN=@APP_PACKAGE_PUBLISHER@" Version="@APP_VERSION_CODE@.0" />
<mp:PhoneIdentity PhoneProductId="0175E9D8-B885-4F34-BE46-F3BA2C70C00C" PhonePublisherId="00000000-0000-0000-0000-000000000000" />
Expand Down Expand Up @@ -236,5 +237,6 @@
<uap:Capability Name="userAccountInformation" />
<uap:Capability Name="videosLibrary" />
<uap3:Capability Name="backgroundMediaPlayback" />
<rescap:Capability Name="expandedResources" />
</Capabilities>
</Package>

0 comments on commit f8146a7

Please sign in to comment.