An Optimized H.266/VVC Software Decoder on Mobile Platform

Total Page:16

File Type:pdf, Size:1020Kb

An Optimized H.266/VVC Software Decoder on Mobile Platform An Optimized H.266/VVC Software Decoder On Mobile Platform Yiming Li, Shan Liu, Yu Chen, Yushan Zheng, Sijia Chen, Bin Zhu, Jian Lou Tencent Media Lab, Shenzhen, China and Palo Alto, CA, USA, fmarcli, [email protected] Abstract—As the successor of H.265/HEVC, the new versatile standard. Therefore, it is essential to have an efficient and video coding standard (H.266/VVC) can provide up to 50% optimized software decoder implementation to support the bitrate saving with the same subjective quality, at the cost of emerging applications. In [3] [4], an independent VVC soft- increased decoding complexity. To accelerate the application of the new coding standard, a real-time H.266/VVC software ware decoder implemented by Tencent demonstrated real-time decoder that can support various platforms is implemented, HD/UHD decoding capability on x86 platform. Considering where SIMD technologies, parallelism optimization, and the that mobile devices have become an essential carrier and acceleration strategies based on the characteristics of each coding display tool for video services, extensive optimization efforts tool are applied. As the mobile devices have become an essential were made on top of the framework of [3] to achieve real- carrier for video services nowadays, the mentioned optimization efforts are not only implemented for the x86 platform, but more time HD/UHD decoding on the mobile platform. As a result, importantly utilized to highly optimize the decoding performance a uniform-designed software H.266/VVC decoder that can on the ARM platform in this work. The experimental results show run real-time on different platforms and supports versatile that when running on the Apple A14 SoC (iPhone 12pro), the av- functionalities such as screen content coding (SCC) is ac- erage single-thread decoding speed of the present implementation complished. This paper will focus more on the discussions can achieve 53fps (RA and LB) for full HD (1080p) bitstreams generated by VTM-11.0 reference software using 8bit Common of mobile optimization and capabilities. The rest of the paper Test Conditions (CTC). When multi-threading is enabled, an is organized as follows: Section II presents an overview of average of 32 fps (RA) can be achieved when decoding the 4K H.266/VVC decoder processing blocks and briefly introduces bitstreams. the proposed software decoder design including single in- Index Terms—H.266, Versatile Video Coding (VVC), Video struction, multiple data (SIMD) processing technology and decoding, ARM, SIMD optimization data/task level parallelism. Section III elaborates the optimiza- tion on some important modules and shows the benefit of the I. INTRODUCTION implementation. Experimental results of the proposed decoder With the popularization of the video applications on the are shown in Section IV. Finally, Section V concludes the Internet and the demand for high-quality video services, a paper. more efficient video compression standard with high coding II. CODING TOOL INDEPENDENT DECODER performance is desired. After High Efficiency Video Coding OPTIMIZATION (HEVC)/H.265 standard, Joint Video Experts Team (JVET) between VCEG (Q6/16) and ISO/IEC JTC1 SC29/WG11 A. Overview of H.266/VVC Decoder (MPEG) was created, and formed the Versatile Video Coding The structure of H.266/VVC decoder with the main pro- standard (H.266/VVC) in July 2020 [1]. It can provide up cessing modules is shown in Fig. 1. Following the decoding to 50% improvement in compression efficiency for the same pipeline, the entropy decoder stage is the first stage, which ex- subjective quality compared to its predecessor HEVC [2]. In tract and decode the codewords from the input bitstream. After arXiv:2103.03612v1 [eess.IV] 5 Mar 2021 order to enhance the coding performance, several coding tools that, the syntax elements are derived. Similar as H.265/HEVC, with decoder side computations are adopted, like decoder side the entropy encoding/decoding is still based on the context- motion vector refinement (DMVR), bi-directional optical flow adaptive binary arithmetic coding (CABAC) scheme, but sev- (BDOF), adaptive loop filter (ALF), etc. These coding tools eral enhancements have been introduced into VVC to improve introduce additional complexities for the decoder, that makes the throughput and the compression efficiency. it a hard work to optimize the decoding speed. The derived intra mode after the entropy decoder stage is In general, video decoders can be classified into hard- used in intra prediction stage, where the prediction value can ware implementations and software implementations, where be obtained by using the boundary pixels and the intra mode hardware decoders are preferred in low-power devices, but index. To increase the prediction accuracy, VVC extends the normally come a few years later after a standard is finalized. intra modes from 35 to 67, and wide-angle intra prediction In contrast to the hardware decoder, software decoders may modes are used for the non-square blocks. Different with the need more power, but still play an important role on general traditional angular prediction, the matrix weighted intra predic- computer, especially in the early stage for the new coding tion (MIP) technology takes the left and above neighbouring boundary samples as the input to generate the prediction by matrix vector multiplication and linear interpolation. Besides, a cross-component linear model (CCLM) prediction mode is also introduced in the VVC to utilize the correlation between luma and chroma components. Benefiting from these tools, an accurate predicted block is prepared, and the final recon- structed block can be formed by adding the residual block and predicted block. Fig. 2. Runtime Spending of Each Processing Block on ARM Platform without SIMD Acceleration. a better prediction. Similar as the intra prediction module, the reconstructed block generated by inter prediction mode is from the residual block and the prediction block. In VVC, loop filtering (LF) stage contains three kinds of in- loop filters, including deblocking filter (DBK), adaptive loop filter (ALF) and sample-adaptive offset (SAO). The general idea for DBK and SAO in VVC is similar as the previous video coding standard except the granularity for luma component is changed to 4×4 on the deblocking filtering process. Adaptive loop filters is newly added in VVC. Based on the gradients of each block, one among 25 filters is applied for each 4×4 block filtering. The test on each new coding tool has been conducted by AHG13 of JVET [5], which is based on the reference software. Fig. 1. VVC Decoder Structure [3]. In [3], the runtime spent on each processing block based on the optimized real-time decoder is provided on x86 platform. Residual block is generated by the inverse quantization Considering the architecture is different between x86 and and inverse transform (IQ/IT) stage shown in Fig. 1. This ARM platform, the runtime spent of the optimized decoder stage can dequantize and transform the frequency-domain [3] is tested on the ARM platform, as shown in Fig. 2. It coefficients back to the spatial domain. In VVC, multiple can be seen as a start point for the optimization on the ARM transform selection (MTS) scheme is adopted, so that besides platform. In this test, the test bitstreams are encoded from the DCT-2, DCT8/DST7 can also be selected as the core transform H.266/VVC common test conditions (CTC) [6] with random matrices. This tool can help to remove the correlation and access (RA) configuration. We take the average of the 1080p reduce the coding bits. As another new coding tool, low- test bitstreams for collecting the runtime in order to reduce frequency non-separable transform (LFNST) is added to fur- the content based fluctuation. As SIMD optimization for x86 ther remove the correlation in transform domain. platform cannot be directly used in ARM platform, there is As videos usually contain temporal redundancy, for elim- no SIMD acceleration in this test. The results show that ALF inating the correlation in temporal domain, inter prediction and inter prediction are the most two time-consuming blocks technology is widely used, where the motion compensation in the whole decoding pipeline. (MC) stage generates the inter prediction from a decoded reference block. For acquiring a more accurate prediction B. Tool Independent Decoder Optimization result, the decoded inter modes from entropy decoding stage. As described in Section II-A, many new coding tools are e.g., MVs, RefIdxs can help to locate the reference block. As added in VVC. Besides the coding tools in each module, the Fig. 1 shows, another input for motion compensation stage is new standard can also support larger block size, multi-type the reference block, which is from the decoded picture buffer coding unit partitions, etc. For versatile video applications, (DPB). In the MC stage in VVC, 8-tap interpolation filter is the coding tools for screen content sequences like intra block used for luma block and 4-tap filter is used for chroma block. copy are also included in the main profile of H.266/VVC Besides the traditional translation motion as H.265/HEVC instead of in the extension [7]. With the support for the new used, the affine motion model is also applied in VVC. For coding tools and new coding features, the new standard is further increasing the prediction accuracy, BDOF and DMVR significantly more complex than previous codecs and more can help to refine the subblock motion vector in order to obtain efforts are required for fully accelerating. coefficients among 25 filters. As shown in Fig. 3, The shape of filter is diamond, where 7×7 diamond shape is applied for luma component and chroma components use the 5×5 diamond shape. Considering the filtering process is very time-consuming, many efforts are spent in this part in the VVC standardization stage.
Recommended publications
  • RISC-V Core Out-Clocks Apple, Sifive; Available As IP
    RISC-V core out-clocks Apple, SiFive; available as IP Movember 05, 2020 //By Peter Clarke Micro Magic Inc. (Sunnyvale, Calif.) has functioning silicon of its 5GHz-capable 64bit RISC-V processor and is offering the design as intellectual property. The Micro Magic processor out-clocks the Apple A14 bionic, the processor at the heart of the iPhone 12 and one of the first processors on 5nm silicon. It also goes faster than a quad-core U84 CPU that SiFive states can operate at up to 2.6GHz clock frequency when implemented in a 7nm process. Micro Magic has a history that goes back to Sun Microsystems and beyond (see EDA company claims world’s fastest 64bit RISC-V core). It is reportedly one of Silicon Valley’s well-kept secrets and a go-to resource for design teams trying to remove bottlenecks in their datapath designs. Andy Huang, an independent contractor who supports Micro Magic for marketing and business development functions, contacted eeNews Europe and demonstrated the processor running EEMBC CoreMark benchmarks over a Facetime connection. Huang was founder and CEO of ACAD Corp., the developer of the Finesim simulator, one of the first and fastest of parallel SPICE simulators. ACAD was acquired by Magma Design Automation in 2006 before Magma itself was acquired by Synopsys in 2012. Huang declined to say which foundry had manufactured silicon for Micro Magic or in what manufacturing process it had been implemented. Huang said the that processor is made in a FinFET process and was manufactured using a multiproject wafer (MPW) run.
    [Show full text]
  • Downloaded from Adobe Stock [51]
    big data and cognitive computing Article Fast and Effective Retrieval for Large Multimedia Collections Stefan Wagenpfeil 1,* , Binh Vu 1 , Paul Mc Kevitt 2 and Matthias Hemmje 1 1 Faculty of Mathematics and Computer Science, University of Hagen, Universitätsstrasse 1, D-58097 Hagen, Germany; [email protected] (B.V.); [email protected] (M.H.) 2 Academy for International Science & Research (AISR), Derry BT48 7JL, UK; [email protected] * Correspondence: [email protected] Abstract: The indexing and retrieval of multimedia content is generally implemented by employing feature graphs. These graphs typically contain a significant number of nodes and edges to reflect the level of detail in feature detection. A higher level of detail increases the effectiveness of the results, but also leads to more complex graph structures. However, graph traversal-based algorithms for similarity are quite inefficient and computationally expensive, especially for large data structures. To deliver fast and effective retrieval especially for large multimedia collections and multimedia big data, an efficient similarity algorithm for large graphs in particular is desirable. Hence, in this paper, we define a graph projection into a 2D space (Graph Code) and the corresponding algorithms for indexing and retrieval. We show that calculations in this space can be performed more efficiently than graph traversals due to the simpler processing model and the high level of parallelization. As a consequence, we demonstrate experimentally that the effectiveness of retrieval also increases substantially, as the Graph Code facilitates more levels of detail in feature fusion. These levels of detail also support an increased trust prediction, particularly for fused social media content.
    [Show full text]
  • Download Magazine
    Magazine Issue Porsche Engineering 1/2021 www.porsche-engineering.com AUTOMOTIVE DEVELOPMENT ON THE MOVE Next level As always, our strongest motivation: our own standards. The new Panamera S E-Hybrid. Drive defines us. How can you measure progress? The new Panamera and its numbers make for a good start. Its .-litre twin-turbo V engine combines with the electric motor to produce a system output of kW (PS). And this new power is backed with an increased electric range. Only the best to drive your next project forward. Discover more at www.porsche.com/Panamera Fuel consumption (in l/km) combined . – .; CO₂ emissions (in g/km) combined –; electricity consumption (in kWh/km) combined .–. Porsche Engineering Magazine 1/2021 EDITORIAL 3 Dear Reader, “Next level”—scarcely any other expression sums the situation in which we currently find ourselves more succinctly: In many fields, we simply have to reach the next level. We are familiar with the term from the worlds of computer games and sports. Those who have reached a certain level there often move on to the next level right away. This also applies to our work in automotive development: We cannot rest on our laurels. We see this in trends such as artificial intelligence, the use of game engines in vehicle development and future E/E architectures, which we examine in the title series. They exemplify the increasing complexity of our work. We also have to reach the next level in our methods. In his article, Marius Mihailovici, Managing Director of our digital branch in Cluj, explains what this looks like in the software development sector.
    [Show full text]
  • Thread-Level Parallelism I
    Great Ideas in UC Berkeley UC Berkeley Teaching Professor Computer Architecture Professor Dan Garcia (a.k.a. Machine Structures) Bora Nikolić Thread-Level Parallelism I Garcia, Nikolić cs61c.org Improving Performance 1. Increase clock rate fs ú Reached practical maximum for today’s technology ú < 5GHz for general purpose computers 2. Lower CPI (cycles per instruction) ú SIMD, “instruction level parallelism” Today’s lecture 3. Perform multiple tasks simultaneously ú Multiple CPUs, each executing different program ú Tasks may be related E.g. each CPU performs part of a big matrix multiplication ú or unrelated E.g. distribute different web http requests over different computers E.g. run pptx (view lecture slides) and browser (youtube) simultaneously 4. Do all of the above: ú High fs , SIMD, multiple parallel tasks Garcia, Nikolić 3 Thread-Level Parallelism I (3) New-School Machine Structures Software Harness Hardware Parallelism & Parallel Requests Achieve High Assigned to computer Performance e.g., Search “Cats” Smart Phone Warehouse Scale Parallel Threads Computer Assigned to core e.g., Lookup, Ads Computer Core Core Parallel Instructions Memory (Cache) >1 instruction @ one time … e.g., 5 pipelined instructions Input/Output Parallel Data Exec. Unit(s) Functional Block(s) >1 data item @ one time A +B A +B e.g., Add of 4 pairs of words 0 0 1 1 Main Memory Hardware descriptions Logic Gates A B All gates work in parallel at same time Out = AB+CD C D Garcia, Nikolić Thread-Level Parallelism I (4) Parallel Computer Architectures Massive array
    [Show full text]
  • Warrior Times One School, Two Campuses
    I​ ssue 1 . November . 2020 Warrior Times One School, Two Campuses On the Road to Reopening - Finally! Plans for Nov. 30th By: Eliana Montas and Ivy Pennyfeather Back in the summer, we never expected this school year to start remotely. Although we are currently not in the most ideal situation for learning, more decisions have been made to inform us as to how Franklin School District will be continuing our 2020-2021 school year. Hybrid -- Blue and Gold Teams If you choose hybrid school, this means that you will be spending part of your time in school, and part of your time online. Not sure what to decide? Here are some facts about hybrid school at FMS. Hybrid school will begin on Nov. 30. Parents and students will have the choice to either start hybrid or continue to be fully remote. Students who choose hybrid will be separated into two teams; Blue and Gold. Blue would be in school for one week and then attend online school for the following week, and the same with the Gold team on alternating weeks. Everyone will still be asynchronous on Fridays, meaning that there will be no formal teaching that day. At the start of each hybrid student’s day, they’ll need to complete a health screening form that’ll confirm whether or not they have a COVID-19 symptom or not. Both campuses will continue bussing which means that while you are on the bus you’ll need to follow the bus protocol in order to make sure that you and others around you stay safe.
    [Show full text]
  • Warrior Times One School, Two Campuses
    I​ ssue 1 . November . 2020 Warrior Times One School, Two Campuses On the Road to Reopening - Finally! Plans for Nov. 30th By Eliana Montas and Ivy Pennyfeather Back in the summer, we never expected this school year to start remotely. Although we are currently not in the most ideal situation for learning, more decisions have been made to inform us as to how Franklin School District will be continuing our 2020-2021 school year. Hybrid -- Blue and Gold Teams If you choose hybrid school, this means that you will be spending part of your time in school, and part of your time online. Not sure what to decide? Here are some facts about hybrid school at FMS. Hybrid school will begin on Nov. 30. Parents and students will have the choice to either start hybrid or continue to be fully remote. Students who choose hybrid will be separated into two teams; Blue and Gold. Blue would be in school for one week and then attend online school for the following week, and the same with the Gold team on alternating weeks. Everyone will still be asynchronous on Fridays, meaning that there will be no formal teaching that day. At the start of each hybrid student’s day, they’ll need to complete a health screening form that will confirm whether or not they have a COVID-19 symptom. Both campuses will continue bussing which means that while you are on the bus you’ll need to follow the bus protocol in order to make sure that you and others around you stay safe.
    [Show full text]
  • Multicore Semantics: Making Sense of Relaxed Memory
    Multicore Semantics: Making Sense of Relaxed Memory Peter Sewell1, Christopher Pulte1, Shaked Flur1,2 with contributions from Mark Batty3, Luc Maranget4, Alasdair Armstrong1 1 University of Cambridge, 2 Google, 3 University of Kent, 4 INRIA Paris October { November, 2020 Slides for Part 1 of the Multicore Semantics and Programming course, version of 2021-06-30 Part 2 is by Tim Harris, with separate slides Contents 1 These Slides These are the slides for the first part of the University of Cambridge Multicore Semantics and Programming course (MPhil ACS, Part III, Part II), 2020{2021. They cover multicore semantics: the concurrency of multiprocessors and programming languages, focussing on the concurrency behaviour one can rely on from mainstream machines and languages, how this can be investigated, and how it can be specified precisely, all linked to usage, microarchitecture, experiment, and proof. We focus largely on x86; on Armv8-A, IBM POWER, and RISC-V; and on C/C++. We use the x86 part also to introduce some of the basic phenomena and the approaches to modelling and testing, and give operational and axiomatic models in detail. For Armv8-A, POWER, and RISC-V we introduce many but not all of the phenomena and again give operational and axiomatic models, but omitting some aspects. For C/C++11 we introduce the programming-language concurrency design space, including the thin-air problem, the C/C++11 constructs, and the basics of its axiomatic model, but omit full explanation of the model. These lectures are by Peter Sewell, with Christopher Pulte for the Armv8/RISC-V model section.
    [Show full text]
  • Zacks Equity Research Zacks Equity Research 10 S
    February 3, 2021 Zacks Equity Research Zacks Equity Research www.zacks.com 10 S. Riverside Plaza, Suite 1600 - Chicago, Il 60606 Industry Outlook Coronavirus outbreak has been beneficial for the Zacks Computer – Mini Computers industry as it raised demand for PCs and tablets significantly. Despite massive supply-chain disruption the ongoing work-from-home and online learning wave have been beneficial for industry participants like Apple (AAPL), HP (HPQ) and Lenovo Group ( LNVGY). Although extensive job losses are expected to hurt demand of high-end laptops and smartphones in the near term, the availability of 5G-based iPhones has been a key catalyst. Further, launch of foldable as well as AI and ML-infused smartphones, tablets, wearables and hearables are major growth drivers for the industry participants. Industry Description The Zacks Computer – Mini Computers industry comprises prominent companies like Apple and HP that offer devices including smartphones, desktops, laptops, printers, wearables and 3-D printers. Such devices are based either on Apple’s iOS, MacOS, iPadOS, WatchOS or on Microsoft Windows or on Google Chrome and Android operating systems. They predominantly use processors from Apple, Intel (INTC), AMD, Qualcomm (QCOM), NVIDIA (NVDA), Samsung, Broadcom and MediaTek, among others. 3 Mini Computer Industry Trends to Watch Out For Bring Your Own Device (BYOD) Aids Momentum: The industry is benefiting from the rapid adoption of BYOD in workplaces. Enterprises practicing BYOD allow employees to use their personal devices, including mobiles, laptops and tablets, for work purposes. BYOD helps in bridging communication gaps between remote workers and desk-bound employees, thereby improving process management and workflow.
    [Show full text]
  • National Information Assurance Partnership Common Criteria
    National Information Assurance Partnership Common Criteria Evaluation and Validation Scheme ® TM Validation Report for the Apple iOS 14 and iPadOS 14: Contacts Report Number: CCEVS-VR-VID11191-2021 Dated: August 20, 2021 Version: 1.0 National Institute of Standards and Technology Department of Defense Information Technology Laboratory ATTN: NIAP, SUITE: 6982 100 Bureau Drive 9800 Savage Road Gaithersburg, MD 20899 Fort Meade, MD 20755-6982 ACKNOWLEDGEMENTS Validation Team Patrick Mallett, Ph.D. Jerome Myers, Ph.D. DeRon Graves Seada Mohammed J David D Thompson The Aerospace Corporation Common Criteria Testing Laboratory Kenji Yoshino Thibaut Marconnet Acumen Security, LLC 2 Table of Contents 1 Executive Summary ............................................................................................................... 4 2 Identification .......................................................................................................................... 5 3 Architectural Information .................................................................................................... 6 4 Security Policy........................................................................................................................ 7 4.1 Cryptographic Support .................................................................................................................................. 7 4.2 User Data Protection .....................................................................................................................................
    [Show full text]
  • Apple Platform Security
    Apple Platform Security May 2021 Contents Introduction to Apple platform security 5 A commitment to security 6 Hardware security and biometrics 7 Hardware security overview 7 Apple SoC security 8 Secure Enclave 9 Touch ID and Face ID 17 Hardware microphone disconnect 24 Express Cards with power reserve 25 System security 26 System security overview 26 Secure boot 26 Secure software updates 48 Operating system integrity 50 Additional macOS system security capabilities 52 System security for watchOS 63 Random number generation 67 Apple Security Research Device 68 Encryption and Data Protection 70 Encryption and Data Protection overview 70 Passcodes and passwords 70 Data Protection 73 FileVault 85 How Apple protects users’ personal data 89 Digital signing and encryption 91 App security 93 App security overview 93 Apple Platform Security 2 App security in iOS and iPadOS 94 App security in macOS 99 Secure features in the Notes app 103 Secure features in the Shortcuts app 104 Services security 105 Services security overview 105 Apple ID and Managed Apple ID 105 iCloud 107 Passcode and password management 110 Apple Pay 119 iMessage 132 Secure Business Chat using the Messages app 135 FaceTime security 136 Find My 137 Continuity 140 Car keys security in iOS 143 Network security 146 Network security overview 146 TLS security 146 IPv6 security 147 Virtual private network (VPN) security 148 Wi-Fi security 149 Bluetooth security 152 Ultra Wideband security in iOS 154 Single sign-on security 154 AirDrop security 155 Wi-Fi password sharing security on
    [Show full text]
  • Iphone 12 Pro
    iPhone 12 Pro Versions: A2407 (International); A2341 (USA); A2406 (Canada, Japan); A2408 (China, Hong Kong) NETWORK Technology GSM / CDMA / HSPA / EVDO / LTE / 5G LAUNCH Announced 2020, October 13 Status Released 2020, October 23 BODY Dimensions 146.7 x 71.5 x 7.4 mm (5.78 x 2.81 x 0.29 in) Weight 189 g (6.67 oz) Build Glass front (Gorilla Glass), glass back (Gorilla Glass), stainless steel frame SIM Single SIM (Nano-SIM and/or eSIM) or Dual SIM (Nano-SIM, dual stand-by) - for China IP68 dust/water resistant (up to 6m for 30 mins) Apple Pay (Visa, MasterCard, AMEX certified) DISPLAY Type Super Retina XDR OLED, HDR10, 800 nits (typ), 1200 nits (peak) 2 Size 6.1 inches, 90.2 cm (~86.0% screen-to-body ratio) Resolution 1170 x 2532 pixels, 19.5:9 ratio (~460 ppi density) Protection Scratch-resistant glass, oleophobic coating Dolby Vision Wide color gamut True-tone PLATFORM OS iOS 14 Chipset Apple A14 Bionic (5 nm) CPU Hexa-core GPU Apple GPU (4-core graphics) MEMORY Card slot No Internal 128GB 6GB RAM, 256GB 6GB RAM, 512GB 6GB RAM NVMe MAIN Quad 12 MP, f/1.6, 26mm (wide), 1.4µm, dual pixel PDAF, OIS CAMERA 12 MP, f/2.0, 52mm (telephoto), 1/3.4", 1.0µm, PDAF, OIS, 2x optical zoom 12 MP, f/2.4, 120˚, 13mm (ultrawide), 1/3.6" TOF 3D LiDAR scanner (depth) Features Quad-LED dual-tone flash, HDR (photo/panorama) Video 4K@24/30/60fps, 1080p@30/60/120/240fps, 10-bit HDR, Dolby Vision HDR (up to 60fps), stereo sound rec.
    [Show full text]
  • Apple Platform Security February 2021 Contents
    Apple Platform Security February 2021 Contents Introduction to Apple platform security 5 A commitment to security 6 Hardware security and biometrics 7 Hardware security overview 7 Apple SoC security 8 Secure Enclave 9 Touch ID and Face ID 17 Hardware microphone disconnect 23 Express Cards with power reserve 24 System security 25 System security overview 25 Secure boot 25 Secure software updates 48 Operating system integrity 50 Additional macOS system security capabilities 53 System security for watchOS 65 Random number generation 68 Apple Security Research Device 68 Encryption and Data Protection 70 Encryption and Data Protection overview 70 Passcodes and passwords 70 Data Protection 73 FileVault 87 How Apple protects users’ personal data 90 Digital signing and encryption 92 Apple Platform Security 2 App security 95 App security overview 95 App security in iOS and iPadOS 96 App security in macOS 101 Secure features in the Notes app 105 Secure features in the Shortcuts app 106 Services security 107 Services security overview 107 Apple ID and Managed Apple ID 107 iCloud 109 Passcode and password management 112 Apple Pay 121 iMessage 134 Secure Business Chat using the Messages app 137 FaceTime security 138 Find My 139 Continuity 143 Car keys security in iOS 146 Network security 149 Network security overview 149 TLS security 149 IPv6 security 151 Virtual private network (VPN) security 152 Wi-Fi security 153 Bluetooth security 157 Ultra Wideband security in iOS 158 Single sign-on security 159 AirDrop security 160 Wi-Fi password sharing security
    [Show full text]