iApplianceWeb.com

EE Times Network
News Flash Appliance Insights Appliance Directory Standards in IA Webcasts


 

MPEG-4 is accelerated and footprint reduced by use of a configurable processor core

By Dennis Moolenaar, Application Engineer, Tensilica, Inc., Santa Clara, Ca.
iApplianceWeb
(05/14/03, 12:03:02 AM EDT)

Digital video compression has become an important feature for a wide variety of products and designing those products to support multiple video standards can be challenging. Today, the main video compression standards are MPEG-1, MPEG -2, H.263, and MPEG-4. System designers face a major challenge when trying to create high-performance, flexible architectures for video coding standards. The problem is not just designing a solution, but creating a full-featured product in a reasonable amount of time.

One design approach is to use hardware blocks, if they are available, but this is often not an option for complex, multi-featured products because of the large number of hardware blocks required to support numerous product features and ever-changing market requirements. Another design approach employs programmable processors to provide the flexibility and fast time to market that is required by modern-day products. Unfortunately, standard programmable processors and cores are often incapable of handling real-time video decoding unless run at multi-GHz clock rates, which is quite impractical for portable devices.

Designers usually must seek other solutions to reduce processor loads to levels that can be achieved by the typical processor-clock speeds used in consumer electronics. One possible alternative is the use of configurable, extensible processor cores are now available from multiple vendors. The advantage of using processor extensibility to accelerate video decoding is that the SIMD instructions necessary for MPEG4 and other standards that can be included in the core can also accelerate many other tasks that the processor might handle.

The MuMoSys MPEG4 Video Decoder

The advantages of a configurable approach are apparent in the implementation of the MoMuSys MPEG4 decoder, a publically available reference specification from OSI. It is not often used as a base for many commercial products, particularly small footprint multimedia-enhanced computing and communications appliances such as PDAs, cell phones and converged devices or in many embedded consumer entertainment products. This is because it has one big disadvantage: reference code is generally written for understandability, not for efficiency. The MoMuSys reference code can handle any MPEG-4 Natural Video stream and even multiple video streams; whereas the simple profile is a smaller subset of MPEG-4 Natural Video coding. Support for all MPEG-4 video features incurs substantial overhead when traditional processor approaches are used.

The MPEG committee employed two software implementations of the standard to minimize ambiguities and to validate proposals made during the standardization process. To test the efficacy of the configurable approach using instruction extensions using the Xtensa microprocessor core and the Tensilica instruction extension language, we chose the Mobile Multimedia Systems (MoMuSys) verification model for this MPEG-4 demonstration project. The MoMuSys MPEG-4 encoder and decoder are written in ANSI C and can be compiled with standard GNU compilers. The MoMuSys MPEG-4 encoder, set for no rate control and no skipped frames, generates the five QCIF (Quarter Common Intermediate Format) video streams ( shown in the table below) and were were used to validate the correctness of all MPEG-4 decoder optimizations.




Video Clip # of
frames
Stream Size
(kbytes)
Av. Bit Rate
(@15 fps)
Miss America
149
66
52 Kbps
Susie
149
129
104 Kbps
Foreman
400
724
217 Kbps
Car Phone
381
606
191 Kbps
Monsters Inc.
1438
1456
146 Kbps@18fps
Profiling the baseline MoMuSys decoder showed that integer multiplication consumed a large number of decoding cycles. Just including the Xtensa microprocessor's 16x16-bit hardware multiplier configuration option reduced the number of decoder execution cycles by 25%. Code simulation further established that the MoMuSys decoder uses floating-point arithmetic for the MPEG-4 inverse discrete cosine transform (iDCT) but a floating-point implementation is not actually required. An integer implementation of the iDCT runs much faster and still satisfies the minimum precision requirements defined by the IEEE  DCT standard.

Developing an MPEG-4 SIMD Engine

Creating processor extensions with the TIE language allows designers to use two basic code-optimization methods: reduce execution cycles by combining multiple operations into one TIE instruction or reduce execution cycles by operating on multiple data elements simultaneously (these are single-instruction, multiple-data or SIMD operations). These two methods can be combined. For an MPEG-4 decoder, the second approach offers the most promise because video decoding repetitively performs the same operations on large data blocks.

For example, consider motion compensation, which loads eight elements from the reference video frame and writes them into the current frame. SIMD TIE instructions can perform this task with just two instructions by using an 8-element wide load/store path, which boosts performance by 8x. All other portions of the decoding algorithm except bit-stream processing can be optimized in a similarly parallel way, suggesting that a tailored SIMD engine is suitable for most of the MPEG-4 decoder optimizations.

The resulting MPEG-4 SIMD engine operates on eight 16-bit or four 32-bit data elements at one time and executes the following instructions: arithmetic/logic instructions (addition, subtraction, arithmetic/logical shift, and logic operations), 128-bit load/store instructions, multiply/accumulate instructions, compare and conditional-move instructions, and a select instruction. The select instruction (Figure 1 below), generates an output vector from two 64-bit source vectors and is used to rearrange related pixel information for faster SIMD processing. Code profiling indicated the main functions in the code that consumed the largest portions of the decoding cycles. Of these, the most highly parallel in nature were the MPEG-4 decoder routines that the SIMD engine could best optimize including the motion compensation, iDCT, variable-length decoding, and color-space conversion algorithms.







Optimizing Motion Compensation

Motion compensation exploits frame-to-frame image redundancy to achieve high video-compression ratios. The MPEG-4 encoder generates motion-estimation vectors on pixel blocks using a pixel-search algorithm. The MPEG-4 decoder refines the resulting estimation vector to improve the appearance of the decoded picture using half-pel interpolation (Figure 2 below). However, half-pel interpolation creates a performance challenge because every pixel value must be calculated from two pel values and a rounding factor (fac), resulting in many operations.





Vertical half-pel computation is the simplest. First, the SIMD engine loads the data to interpolate an 8x8-pel block; a task that requires 9 SIMD loads. It then interpolates the data by adding the pel values from two adjacent rows, rounding, and dividing by using SIMD add and shift instructions. Horizontal half-pel motion compensation is slightly more complex because the pel data isn't organized by columns initially. However, two SIMD-engine select instructions can reorganize the pel data and then compute the column interpolations. The original MoMuSys motion-compensation code required about 272 instructions executed in two loops. The SIMD-optimized code requires only 40 instructions executed in one loop-a 7x improvement. Although the MPEG-4 simple profile does not use quarter-pel motion compensation, the same programmable approach used for half-pel motion compensation can be used for quarter-pel interpolations in other MPEG-4 profiles.

Unrestricted Motion Compensation

Video decoders can use two methods to handle unrestricted (outside-the-frame) motion compensation: they can create a border image of pels around the reference frame or they can test the pel addresses during motion compensation to see if they fall outside the frame and then adjust the address if necessary. The advantage of the border-image approach is that no extra instructions are executed inside the critical loop of the decoder's motion-compensation algorithm. The disadvantage of this approach is that extra memory transfers are needed to generate the border image. The address-adjusting approach does not add memory transfers but does add instructions and branches inside the motion-compensation loop.
 
The MoMuSys decoder implements both methods for handling unrestricted motion compensation. The first method involves copying the reference frame to a larger buffer and then creating the border around the frame. In principle, this work is sufficient for unrestricted motion compensation but the MoMuSys code also implements the second method. The advantage of using extensible processors and a programmable approach to building an MPEG-4 decoder is that they easily accommodate unrestricted motion-compensation methods and can incorporate the second motion-compensation method with no additional overhead.

Performance of Optimized Motion Compensation

Before summarizing the performance gains from these motion-compensation optimizations, we include one more optimization. In the original MoMuSys decoder, the AddImageI function consumes 3.24% of the cycles. This function adds the frame containing all iDCT results to the frame containing all motion-compensation results. Performing motion compensation at the block level and then adding the iDCT result-frame as a part of the motion-compensation function removes the need to add in the iDCT results separately. This optimization eliminates many memory transfers and reduces the required memory to handle the current frame to the size of six iDCT blocks and one video frame instead of requiring two frame memories (see Table beow).





Video Clip
Orig.l MPEG4
Motion Comp.
Cycle Count
Opt. MPEG4
Motion Comp.
Cycle Count
Speedup
Miss America
1.620 Gcycles
21.43 Mcycles
75.6X
Susie
1.660 Gcycles
27.18 Mcycles
61.6X
Foreman
4.571 Gcycles
90.14 Mcycles
50.8X
Carphone
4.296 Gcycles
79.35 Mcycles
54.1X
Monsters Inc.
15.578 Gcycles
194.96 Mcycles
79.9X
Implementing the Inverse DCT algorithm

There are two groups of algorithmic implementations available for computing a two-dimensional (2-D) 8x8 iDCT: full 2-D iDCTs and algorithms based on the sequential application of a 1-D iDCT to the columns and then the rows of the 8x8 block. The MoMuSys MPEG-4 uses the latter approach, which is well suited to the SIMD engine. Executing eight 1-D iDCTs in parallel using the SIMD engine accelerates the 8x8 iDCT. The parallelized routine performs 1-D iDCTs on the columns directly. However, the image data isn't organized in memory properly to allow the SIMD engine to directly transform the rows so the data must be transposed after performing the column-oriented 1-D iDCT. Once the data has been transposed, the SIMD engine performs 1-D iDCTs on the row data, which is then transposed back to the original data layout to complete the full 2-D iDCT.

A full transposition of an 8x8 block using the SIMD select instruction requires 24 cycles so the overhead of the two transposition operations consumes 48 cycles. However, this overhead can be greatly reduced by transposing the data in a special transposition memory added to the processor using hardware based instruction extensions (see Table below).




Video Clip
Orig. Av. iDCT
Cycle Count
Opt. Av. iDCT
Cycle Count
 Speedup
Miss America
3220.86
345.24
9.4X
Susie
3283
343.77
9.5X
Foreman
3414.7
342.22
10X
Carphone
3356.83
342.62
9.8X
Monsters, Inc.
3349.21
343.26
9.8X
Bit-Stream Processing

Video decoders use a set of bit-stream functions to process video. All data is extracted from the video stream using one of these functions. Processor extensions can accelerate bit-stream processing functions by moving the video bit stream through a special shift register, added to the processor using instruction extensions, that aids in bit-field manipulation and extraction. Note that this is not a SIMD operation.

Performing bit-stream processing functions with processor extensions also helps optimize variable-length decoding. The variable-length coding algorithm reduces the average number of bits needed to encode a code word by assigning a short bit string to the most frequently occurring code word and longer bit strings to code words that hardly ever occur. Variable-length coding allows the MPEG-4 encoder to reduce the number of bits needed to encode an 8x8 iDCT block. The code word represents the run, level, and sign of the iDCT coefficient (also called run-length coding). The run values indicate the number of zero's that occur between two values. The decoder fills the iDCT block by extracting variable-length code words from the incoming bit stream and decoding them. The bit-stream processing hardware discussed above also extracts the variable-length codes from the video stream.

Additional MPEG-4 Decoder Optimizations

One portion of the MPEG-4 compression algorithm transforms the values of an 8x8 block into the frequency domain and then divides the resulting numbers by a quantization value. The video bit stream carries the quantization value and the decoder must perform the reverse transformation, called dequantization. The dequantization algorithm multiplies the decoded iDCT value by the quantization value to approximate the original DCT value. It's possible to quantize multiple iDCT values simultaneously and the MPEG-4 SIMD engine easily performs this task. Using the SIMD approach reduces the dequantization cycle count from 1647 cycles to 259 cycles per iDCT block for the Suzie test stream, a 6.4x improvement.

AC/DC prediction is only used for MPEG-4 Intra frames, which occur much less frequently than Inter frames. However, Intra frames require significantly more decoding cycles than Inter frames so it's very important to optimize this function because the clock rate required to decode an Intra frame sets a lower bound on the decoder's clock frequency. The decoder must be fast enough to decode any Intra frame in real time. AC/DC prediction reduces the number of bits required for encoding an Intra frame by estimating DC and/or AC values from the iDCT blocks. AC prediction, in particular, requires a large number of cycles to perform divisions and logarithmic functions inside a loop. These calculations can be moved outside the loop by rewriting the MoMuSys code. This optimization reduces the cycle count for AC/DC prediction from 2080 to 520 cycles.

The MoMuSys MPEG-4 decoder uses YCbCr color-space coding. The YCbCr representation usually must be transformed into a different color space such as RGB during the decoding operation. Transforming data from the YCbCr color space to RGB requires matrix multiplication. The transformed values for R, G, and B must also be shifted right by 16 bits to obtain the real RGB value. Color conversion is yet another critical decoding operation because every pixel undergoes matrix multiplication.

To accommodate the YCbCr-to-RGB color-space conversion requirements, the MPEG-4 SIMD engine multipliers are designed to handle 16x18-bit multiplications. The higher precision multipliers eliminate extra instructions that would otherwise be needed to deal with constants that are too big for traditional 16-bit, two's-complement multipliers. The SIMD engine performs a matrix multiplication for 8 pixels in parallel, producing an 8x performance improvement in the color-space conversion algorithm.

MoMuSys Can Be Faster, Smaller

Overall, MoMuSys MPEG-4 decoder optimization factors ranged from 28x to 40x for different video test streams (see Table below). Consequently, this MPEG-4 decoder based on an extended processor core runs at a very low clock rate-much lower than for an unaugmented processor. The reason for the range of optimization factors is due to differences in the video streams. For example, this MPEG-4 decoder optimizes motion compensation more than dequantization or computing the iDCT so encoded streams with more iDCT blocks require more decoding cycles. Different test streams simply have different requirements. This characteristic of all video makes defining the worst-case bit stream problematic and it also demonstrates how important it is to use exactly the same test streams when comparing performance numbers for various video decoders.




Video Clip
Orig. MPEG4
Decoder
Cycle Count
Opt. MPEG4
Decoder
Cycle Count
Opt. Clock
Frequency
(15 fps)
Speedup
Miss America
3.126 Gcycles
76.81 Mcycles
7.7 MHz
40.1X
Susie
3.389 Gcycles
102.19 Mcycles 10.3 MHz
33.2X
Foreman
10.045 Gcycles
359.5 Mcycles
13.5 MHz
27.9X
Carphone
9.222 Gcyclces
308.7. Mcycles
12.2 MHz
29.9X
Monsters, Inc.
29.327 Gcycles
833.8 Mcycles
8.6 MHz
35.6X

Even at these performance levels, this software-based MPEG-4 decoder is not fully optimized. However, because this is a software-based decoder, it would be easy to refine the optimizations further should even better performance be required (for higher-resolution MPEG-4 implementations as an example).

The processor configuration used for this MPEG-4 decoder requires around 53K gates and the gate count for the programmable SIMD-engine and bit-stream-processing extensions is 67K gates. The resulting decoder is capable of decoding MPEG-4 video streams and other compressed-video streams with performance on par with hardware video decoders and a relatively low gate count. Even more important, the entire project (developing and tailoring a SIMD-enhanced processor using the MoMuSys reference code) consumed only seven man months.


For instant access to more information about the issues, products and technologies mentioned in this story, click on the flashing icon in the upper right hand column on any page on this site. It will take you to an alternate view of iApplianceWeb based on an associatively-linked XML/Java Web map that can be used to search for any topic published here over the last 12 months.

This map allows you to
instantly display to any story any story on the site whether accessed by by date, by category, by title, or by keyword. When searched by keywork results are displayed within seconds either as a list of possible hits or with specific Web pages displayed below the map, which is adjustable depending on the number of hits and the number of links.

For technical article coverage, go to the  iAppliance Web Views  page and access the EETimes In Focus maps there to browse or quickly search for all articles on a particular topic since the beginning of 1999.






Copyright © 2004 Appliance-Lab
Terms and Conditions
Privacy Statement