Introduction to the Media Data Processing Function

This section describes the functions, API call sequence, and sample code of image, video, and audio data processing.

Typical Functions of Image/Video/Audio Data Processing

Figure 1 Image/Video data processing

The following table describes the functions. For details about the media data processing functions supported by each product model, see Functions supported by each product model. The current AIPP versions support all the functions.

Description

Sub-Function Module

Description

Obtain video data.

Image signal processing (ISP) system control

The system control function is used to register the 3A algorithm, register the sensor driver, initialize the ISP firmware, run the ISP firmware, exit the ISP firmware, and configure the ISP attributes.

Obtain video data.

MIPI Rx ioctl command

MIPI RX is a collection unit that supports multiple differential video input interfaces. It receives data from the MIPI, LVDS, sub-LVDS, and HiSPI interfaces through the combo PHY. MIPI RX supports data transmission at multiple speeds and resolutions by configuring different function modes and supports multiple external input devices.

Obtain video data.

Video Input (VI)

The VI module captures video images, performs operations such as cropping, color optimization, brightness optimization, and noise removal on the images, and outputs YUV or RAW images.

Display video data.

VO (Video Output)

The VO module receives the images that have been processed by VPSS, controls the playing of the images, and outputs the images to peripheral video devices based on the configured output protocols (only HDMI is supported now).

The VO module can work with the two-dimensional engine (TDE) module and HiSilicon Framebuffer (HiFB) module to draw graphics and manage graphics layers by leveraging hardware.

Display video data.

High Definition Multimedia Interface (HDMI)

HDMI is an all-digital image and audio sending interface that can send uncompressed audio and video signals.

Display video data.

Two-Dimensional Engine (TDE)

The TDE is a two-dimensional graphics acceleration engine. It uses hardware to provide fast graphics drawing functions for the On Screen Display (OSD) and Graphics User Interface (GUI). The functions include quick copy, quick color filling, and pattern filling. (Currently, only alpha blending is supported.)

Display video data.

HiSilicon Framebuffer (HiFB)

The HiFB is used to manage overlaid graphics layers. It not only provides the basic functions of Linux framebuffer, but also provides extended functions such as modifying the display start position of a graphics layer and inter-layer alpha.

Region Management

Region

The overlaid on screen displays (OSDs) and color blocks in a video are called regions. The REGION module is used to manage the region resources in a unified manner. It is used to display specific information (such as the channel ID and PTS) on the video or fill color blocks in the video for covering. Currently, this function must be used together with VPSS.

Image/Video Data Processing

Video Process Sub-System (VPSS)

The VPSS module preprocesses input images in a unified manner, such as denoising, deinterlacing, and cropping, and then processes each channel separately, such as scaling and bordering.

Image data processing

Artificial Intelligence Pre-Processing (AIPP)

AIPP implements functions on the AI Core, including image resizing (such as cropping and padding), CSC, mean subtraction, and factor multiplication (for pixel changing).

AIPP supports static and dynamic modes. However, the two modes are mutually exclusive.
  • Static AIPP: If you use this mode and specify the AIPP parameters when converting a model, the AIPP attribute values are saved in the offline model (.om file) after the model is generated. Fixed AIPP configurations are used in each model inference.

    In static AIPP mode, batches share the same set of AIPP parameters. The AIPP parameters are set when the ATC tool is used for model conversion. For details about the ATC tool, see ATC.

  • Dynamic AIPP: When converting a model, set the AIPP mode to dynamic. Whenever you need to run the model for inference, first set the AIPP configurations to implement application-specific AIPP preprocessing.

Image/Video Data Processing

Digital Vision Pre-Processing (DVPP)

DVPP is an embedded image processing unit of the AI processor. It provides powerful hardware acceleration capabilities for media processing through media data processing APIs. It provides the following functions:

  • Vision Preprocessing Core (VPC): Processes YUV and RGB images, including resizing, cropping, pyramid, and CSC.
  • JPEG Decoder (JPEGD): decodes images from JPEG to YUV.
  • JPEG Encoder (JPEGE): Encodes images from YUV to JPEG.
  • Video Decoder (VDEC): Decodes video streams from H.264/H.265 to YUV/RGB.
  • Video Encoder (VENC): Encodes video streams from YUV420SP to H.264/H.265.
  • PNG Decoder (PNGD): Decodes images from PNG to RGB.

AIPP and DVPP can be used separately or together. In combined applications, DVPP is used first to decode, crop, and resize images or videos. However, due to DVPP hardware restrictions, the image format and resolution after DVPP may not meet the model requirements. Therefore, AIPP is required to further perform CSC, image cropping, and border making.

For example, for Atlas 200/300/500 inference product and Atlas training product, because DVPP video decoding supports only YUV images, if the model requires RGB images, AIPP color space conversion is required.

Obtain and output audio data.

Audio Input (AI)

The AI module captures audio data.

Audio Output (AO)

The AO module can play the audio data decoded by the ADEC module.

Encode and decode audio data.

Audio Encoder (AENC)

The AENC module encodes the audio data obtained by using the AI module and outputs audio streams.

Encode and decode audio data.

Audio Decoder (ADEC)

The ADEC module decodes G.711a, G.711u, and other audio streams and plays audios through the AO module.

Typical application scenarios of DVPP image/video data processing

The resolution and format of the source image or video can be processed to meet the model requirements. The following is an example of a typical scenario.

  • Video decoding and resizing

    The input video is in H.264 encoding format and the resolution is 1920 × 1080. However, the YOLOv3 model for object detection requires an RGB or YUV input image with the resolution of 416 × 416. In this case, you can process the video as follows.

    Figure 2 Video decoding and resizing
  • Image decoding, resizing, and format conversion

    The input image is in JPEG encoding format and the resolution is 1280 x 720. However, the ResNet-50 model for image classification requires an RGB input image with the resolution of 224 x 224. In this case, you can process the image as follows.

    Figure 3 Image decoding, resizing, and format conversion
  • Image cropping, resizing, and format conversion

    The input image is in YUV420SP format and the resolution is 1280 x 720. However, the ResNet-50 model for image classification requires an RGB input image with the resolution of 224 x 224. In this case, you can process the image as follows.

    Figure 4 Image cropping, resizing, and format conversion