1# Multimedia Subsystem Changelog 2 3## cl.multimedia.1 Change in Memory Ownership for Player Usage 4 5**Access Level** 6 7Other 8 9**Reason for Change** 10 11Currently, the memory used by AVPlayer instances created by applications is uniformly attributed to the operating system. This makes it impossible to manage memory finely based on applications and can easily lead to misuse of AVPlayer instances by applications. This change will associate the memory cache used by the AVPlayer with the application that created the AVPlayer, facilitating the statistical use of resources by applications. 12 13**Impact of the Change** 14 15This change requires application adaptation. 16 17Before the change, when an application uses AVPlayer, the memory used by the AVPlayer is attributed to the operating system's memory usage during memory management. 18After the change, when an application uses AVPlayer, the memory used by the AVPlayer is attributed to the application's memory usage during memory management. 19 20**Start API Level** 21 229 23 24**Change Since** 25 26OpenHarmony SDK 6.0.0.32 27 28**Key API/Component Changes** 29 30AVPlayer 31 32**Adaptation Guide** 33 34If the number of instances used by an application exceeds the recommended number (16), adjust the number of instances based on its actual memory usage to prevent the application from being terminated by RSS when it transitions to the background. 35