Indeo 5
- FOURCCs: IV50
- Company: Intel, then Ligos
- Samples: http://samples.mplayerhq.hu/V-codecs/IV50/
- Samples: http://ligos.com/videoclips/lions/lion_sif_ind5.zip
- Docs: http://www.ligos.com/pdf_docs/Indeo_doc.pdf
- Docs: http://www.ligos.com/pdf_docs/Indeo_FAQ.pdf
- Patent links: http://www.freepatentsonline.com/5532940.pdf
- Patent links: http://www.patentstorm.us/patents/5532940-description.html
Introduction
Indeo5 is the latest version of Indeo Video Interactive(IVI). For an introduction to this compression algorithm see Indeo Video Interactive.
Indeo Video Interactive Version 5 (Indeo5)
For a description of the coding techniques see Brief description of the coding techniques.
For a description of the interactive features see Brief description of the interactive features.
Indeo5 algorithm is mostly the same as indeo4 with the following differences:
- indeo5 uses a different bitstream format for picture and band headers that allows storing of compressed frames more compactly.
- indeo5 utilizes only the Slant transform. The Haar transform used in indeo4 was dropped due to its low quality.
- indeo5 uses the Daubechies (LeGall) 5/3 wavelet for the subband decomposition/recomposition instead of the Haar wavelet used in indeo4 in order to provide a better quality for the scalability mode.
- bidirectional frames mode seems to be dropped. Actually there is no indeo5 encoder supports its creating. Mac and Xanim decoders contain no code for handling of this kind of frames.
- indeo5 performs a partially encryption of the bitstream if a numeric password ("access key") was specified during encoding.
Decoder specification
Indeo5 has the same picture layout and bitstream organization as indeo4. For a detailed description see Indeo4 picture layout and Bitstream organization.
Conventions
Headers are described in some tables. Each row of those tables describes a value which may be read from the frame. Those tables and rows are presented in the order of appearance in the frame.
Here are the meaning of each columns:
- size: The size of this value in bits. Bits are counted in LSB to MSB order. As an example, with the byte 01110000b, reading 3 bits then 5 bits will return 000b then 01110b. Reading more than 8 bits thus reads as a little-endian value. Think of the get_bits function as filling up the return value from its LSB, using the bits from each byte starting from their LSB.
- name: Kind of variable name, used to reference the value. When a value is named valueX, it generally means we don't know it's purpose. Lines named alignmentX means that bits reader need to skip bits until next byte boundary.
- condition: The value is present in the frame only if this condition is matched. No condition means that the value is always present.
- value(s): Description of constant values and their meaning.
- comments: Some details about the content of the value.
Picture header
Picture header of indeo5 consists of three parts:
Picture_start_code, frame_type, frame_number [GOP header] Frame header
The first two bytes of a frame tell the decoder how the following data should be interpreted. These include three fields:
size in bits | name | value(s) | comments |
---|---|---|---|
5 | PSC | always = 0x1F | indeo5 picture start code |
3 | frame_type |
|
frame type |
8 | frame_number | 0...0xFF | frame number in GOP (0 for I frame) |
Null frames don't contain anything else than this header.
GOP header
This header is present in INTRA (key) frames only. It's used for transfering of some general information (i.e. picture layout) that will be either rarely or never changed during a video sequence. The values in this header are valid for all frames in the GOP.
size in bits | name | condition | value(s) | comments |
---|---|---|---|---|
8 | gop_flags |
|
GOP header flags (bit 0 is the LSB). | |
16 | gop_hdr_size | gop_flags & 0x01 | Size of this header in bytes. Only present in the bitstream if indicated by the gop_flags bit 0. | |
32 | lock_word | gop_flags & 0x20 |
Only present in the bitstream if "access key protection" is active (as indicated by the bit 5 of the gop_flags). For a description of how to use this field see Access key protection. | |
2 | slice_size_id | gop_flags & 0x40 |
|
ID of slice size. Only present if "local decoding mode" is enabled (indicated by the bit 6 of the gop_flags). |
2 | luma_levels |
|
Number of wavelet decomposition levels for the luma plane. Number of resulting wavelet subbands can be calculated using the following equation: num_bands = luma_levels * 3 + 1. | |
1 | chroma_levels |
|
Number of wavelet decomposition levels for the chrominance planes. The value of "1" is forbidden because no knowing indeo5 software performs any decomposition of the chrominance planes. | |
4 | pic_size_id | Index into the table of the standard picture sizes. If the picture has dimensions not listed in the table then this field contains the value of "15" and the actual picture size will be coded using pic_height and pic_width fields. | ||
13 | pic_height | pic_size_id == 15 | Non-standard picture height. | |
13 | pic_width | Non-standard picture width. | ||
variable | band_info_luma | Array of the Band_info structures describing each luminance band. For a description how to calculate the number of the luminance bands see here: luma_levels. | ||
6-8 | band_info_chroma | Array of the Band_info structures describing each chrominance band. Because the chrominance planes are being NEVER decomposed by the existing indeo5 software there is only one band per chrominance plane and therefore only one descriptor of this type. | ||
3 | alignment1 | gop_flags & 0x08 | always == 0 | Alignment bits. Must be zero. |
1 | color_flg | This flag indicates if the transp_color field is present. | ||
24 | transp_color | Transparency fill color. | ||
?? | alignment2 | Align the biteader on the next byte. | ||
8 | value1 | Unused. | ||
8 | value2 | Unused. | ||
3 | value3 | Unused. | ||
4 | value4 | |||
1 | gop_ext_flg | This flag indicates if the gop_ext field is present. | ||
variable | gop_ext | gop_ext_flg == 1 |
do { val = getbits(16); } while(val &0x80); |
GOP header extension. |
?? | alignment3 | Align the biteader on the next byte. |
Frame header
This header is present in all kinds of frame except NULL. It's used mainly to transfer a huffman codebook for the macroblock signals and provide checksum information for debugging purposes.
size in bits | name | condition | value(s) | comments |
---|---|---|---|---|
8 | frame_flags |
|
Frame flags (bit 0 is the LSB). | |
24 | pic_hdr_size | frame_flags & 0x01 | Size of the entire picture header in bytes. Only present in the bitstream if indicated by the frame_flags bit 0. | |
16 | frm_checksum | frame_flags & 0x10 | Frame checksum for debugging purposes. Only present in the bitstream if indicated by the frame_flags bit 4. | |
variable | frm_hdr_ext | frame_flags & 0x20 |
To skip it, do the following: do { len = getbits(8); for (i=0; i < len; i++) skipbits(8); } while(len); |
Unknown frame header extension. Its content will be ignored by the known indeo5 decoders. Only present in the bitstream if indicated by the frame_flags bit 5. |
variable | mb_huff_desc | frame_flags & 0x40 | Macroblock huffman codebook descriptor. Only present in the bitstream if indicated by the frame_flags bit 6. For a description of the format of the huffman codebook descriptors see Codebook descriptors in the bitstream. | |
3 | value5 | Unused. | ||
?? | alignment4 | Align the biteader on the next byte. |
Band header
This header describes a wavelet band.
size in bits | name | condition | value(s) | comments |
---|---|---|---|---|
8 | band_flags |
|
Band flags (bit 0 is the LSB). | |
24 | band_data_size | frame_flags & 0x80 | Size of the band data in bytes. Only present in the bitstream if indicated by the frame_flags bit 7. |
Scalability mode
This special feature of Indeo5 allows the decoder to adapt playback to the processor power of the particular machine being used for playback. Indeo5 offers both spatial and temporal scalability. Read more about that technique here: Scalable Video Coding.
Spatial scalability
Spatial scalability works by dividing the image into a number of frequency bands using wavelet decomposition. These bands represent the image at a different level of sharpness. All bands are necessary to perfectly recreate the original image. But if there is not enough processor power available, the decoder can decompress fewer bands of each frame, rather than simply dropping frames. This produces blurry images, but preserves the motion.
The scalability mode is controlled by the user during encoding. If this mode is disabled the encoder acts like an usual block-based transform compression algorithm: each of the three color planes will be processed using the Slant transform, quantization and Huffman coding. If the scalability mode is enabled the encoder first performs subband decomposition using the Discrete Wavelet Transform (DWT). Although each color plane could be theoretically decomposed Indeo5 performs that only on the luminance plane data. This decomposition results in four wavelet bands, each of them is one-fourth of the original picture size. Further those band will be compressed using the Slant transform, quantization and Huffman coding.
Wavelet transform
The wavelet used in Indeo5 for decomposition/recomposition purposes is referred as CDF 5/3 or LeGall wavelet. It uses in a slightly different form in many other compression algorithms like JPEG 2000 or Snow. The coefficients for the analysis filters (encoder) are:
h0 = {-1, 2, 6, 2, -1} * 1/8 h1 = {1, -2, 1} * 1/4
where "h0" is the low-pass filter and "h1" is the high-pass filter.
The coefficients for the synthesis filters (decoder) are:
h0 = {1, 2, 1} * 1/2 h1 = {1, 2, -6, 2, 1} * 1/4
where "h0" is the low-pass filter and "h1" is the high-pass filter.
This wavelet transform has the following advantages:
- it allows an integer implementation
- a fast algorithm (lifting) exists
- it produces better quality images than the Haar wavelet used in Indeo 4 for the same purpose
- it allows the perfect reconstruction of the input signal
Wavelet bands
The Wavelet transform produces four wavelet bands whose properties are summarized in the table below:
band | name | dimensions | frequency components | transform |
---|---|---|---|---|
0 | LL |
|
Low freqs in both horizontal and vertical directions | 2D Slant 8x8 |
1 | HL |
|
|
1D Row Slant |
2 | LH |
|
|
1D Column Slant |
3 | HH |
|
High freqs in both horizontal and vertical directions | No transform |
The type of the transform used to process a particular band is chosen according to its frequency content. The low frequency image components are the most important components for visual sensitivity. Therefore the transform is selected so that it can process the low frequency components more efficiently than the high frequency ones. For example, the two-dimensional slant transform is used to process the band 0 because it contains the low frequency components in both horizontal and vertical directions. But the band 1 contains low frequency components only in the horizontal direction that's why the one-dimensional slant transform applied to each of the 8 rows in a 8x8 block is used. Similar to it, the band 2 uses the one-dimensional slant transform applied to each of the 8 columns in a 8x8 block. The band 3 contains only high frequency components in both directions therefore no transform is applied to its data. This band will be coded using quantization and entropy coding only.
Temporal scalability
In order to achieve the temporal scalability Indeo5 introduces special droppable frames. The main advantage of such frames is that those can be skipped without damaging the whole video sequence. If there is not enough processor power available, the decoder can decompress fewer frames and thus display the video at reduced frame rate.
Headers
Plane header
This header is present at the beginning of every plane.
size | name | condition | nb times | comments |
---|---|---|---|---|
8 | ph_flags | |||
24 | plan_size | mh_flags & 0x80 | tolal size of plan data | |
8 | counter3 | ph_flags & 0x10 | must be < 0x3E | |
8 | value16 | counter3 | ||
8 | value17 | |||
3 | value18 | ph_flags & 0x40 | ||
3 | table1_id | ph_flags & 0x80 | see Table 1 | |
4 | counter4 | table1_id == 7 | used instead of Table1 | |
4 | value19 | counter4 | ||
1 | value20 | |||
16 | value21 | value20 | ||
5 | value22 | |||
?? | alignment3 | align bits reader on next byte | ||
8 | counter5 | ph_flags & 0x20 | all of this is repeated as long as value23 is true | |
8 | skip1 | counter5 | ||
1 | value23 | |||
?? | alignment4 | align bits reader on next byte |
Planes
Plane data
Needs more analysis. Follows plane header.
size | name | condition | nb times | comments |
---|---|---|---|---|
1 | value24 | |||
1 | value25 | ! value24 | plan_data_size = value25 | |
8 | value26 | value25 == 1 | plan_data_size = value26 | |
24 | value27 | value26 == 0xFF | plan_data_size = value27 |
Block header
Each plane is split into a number of blocks in the x and y directions. There is one of these headers one after another for each block in the plane.
size | name | condition | nb times | comments |
---|---|---|---|---|
1 | value28 | |||
vlc | value29 | value28 && plane_state17 | ||
1 | value30 | !value28 && plane_state12 && plane_state1 | ||
4 | value31 | !value28 && four_blocks | ||
1 | value32 | !value28 && !four_blocks | ||
vlc | value33 | !value28 && plane_state14 && !plane_state13 && (plane_state17 || value31/2) | ||
vlc | value34 | !value28 && !(block_state4 & 2) && !plane_state12 | ||
vlc | value35 |
The 'plane_state' states come from plane parsing; they are yet to be connected to the previous data.
block_state4 is too complicated to explain here, sorry!
Block data
Follows block header. One of these for each plane that has 'plane_flags&1'. The variable 'run' starts at -1 and carries over from one coded plane to the next. I don't really know what I'm doing with vlc's so the names might not be correct... but their functional description is.
size | name | condition | nb times | comments |
---|---|---|---|---|
vlc | vlc | while (vlc != vlcEnd) | ||
vlc | run_add | vlc == vlcEsc | run += run_add + 1 | |
vlc | lindex_lo | lindex = lindex_lo | (lindex_hi<<6) | ||
vlc | lindex_hi |
If vlc != vlcEsc then run_add is run_table[vlc], lindex is lindex_table[vlc].
After each loop, stored coefficient is: block[ scan_table[run] ] = level_tables[run][lindex-1].
The values of vlcEnd and vlcEsc are variable, as is the vlc table itself. However, they are all fixed for all the planes in the same block. run_table, lindex_table, scan_table are also fixed-per-block. level_tables is per-plane.
Annexes
Standard picture sizes
pic_size_id | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
width | 640 | 320 | 160 | 704 | 352 | 352 | 176 | 240 | 640 | 704 | 80 | 88 | 0 | 0 | 0 | custom |
height | 480 | 240 | 120 | 224 | 240 | 288 | 144 | 180 | 240 | 240 | 60 | 72 | 0 | 0 | 0 | custom |
Band_info structure
This structure is a part of the GOP header and describes a wavelet band. Its size is usually 6 bits but can be extended up to 8 bits if the ext_trans field is present. The same structure is used to describe both luminance and chrominance bands.
size | name | condition | value(s) | comments |
---|---|---|---|---|
1 | mv_res |
|
Motion vector resolution. | |
1 | mb_size_id |
|
Macroblock size factor. The real size of the macroblock should be calculated as follows: mb_size = blk_size_id << !mb_size_id. | |
1 | blk_size_id |
|
Block size id. | |
1 | trans_flg |
|
If this flag is set the field ext_trans specifies a transform used to code this band explicitely. Otherwise the default transform is used. | |
2 | ext_trans | trans_flg != 0 |
|
Specifies a transform that should be used instead of the default transform for this band. |
2 | end_marker | always == 0 | End marker terminating this structure. |
Table 1
table1_id | 0 | 1 | 2 | 3 | 4 | 5 | 6 | default | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
counter4 | 10 | 11 | 12 | 13 | 11 | 13 | 13 | 9 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
value19 |
|
|
|
|
|
|
|
|
default is used when !(ph_flags & 0x80)