Theora Superblock Traversal

Hands down, one of the hardest parts about the VP3/Theora coding method is the bizarre fragment traversal pattern. Most everything else that VP3 does is seen in other codecs. But the Hilbert pattern used for encoding and decoding coefficients creates a monster. Vector drawing program to the rescue!

Imagine a video frame with a resolution of 96×48, highly contrived for this example. The Y plane would consist of 12×6 fragments (8×8 block of samples). Meanwhile, the U and V planes would each consist of 6×3 fragments. Recall that VP3 employs a notion of a superblock, which encompasses a group of 4×4 fragments. If the fragment resolution of a plane is not divisible by 4, the plane must be conceptually padded out to the nearest superblock boundary for the traversal pattern.


click on the image for the full sized image
Theora superblock decoding pattern

The above drawing illustrates the order that the fragments are traversed in our hypothetical 96×48 frame when decoding coefficients. Note, in particular, the strange order in which fragments 50..53 are traversed.

I hope that’s clear enough. The challenge at hand is to establish data structures at the start of the encode or decode process. Generally, you will allocate an array of fragment data structures: Fragment indices 0, 1, 2, 3, etc. will proceed left -> right, then top to bottom. The second row of the Y plane begins at index 12, third row at index 24, and so on. But when it comes to decoding the DCT coefficients, it is necessary to traverse through the fragment data structure array at indices 0, 1, 13, 12, 24, 36, 37, 25, and so on. Thus, it is customary to build an array that maps one set of indices to the other. I’m having flashbacks just thinking about it. I remember developing a completely different algorithm than the official VP3 decoder when I reimplemented the decoder for FFmpeg.

Oh yeah, and remember that all VP3/Theora decoding is performed upside-down. I choose not to illustrate that fact in these drawings since this stuff is complicated enough.

3 thoughts on “Theora Superblock Traversal

  1. Adam Ehlers Nyholm Thomsen

    Having only very little knowledge in the video coding area I can’t quite figure out the advantages of traversing the data in this pattern. Would it be possible to enlighten me?

  2. pengvado

    Hilbert isn’t complicated, it’s no worse than h264’s recursive zigzag. The complicated part is that blocks outside the image are skipped (all other codecs I know of code them and just crop after decoding), and the subband ordering of DCT coefficients.

    > VP3/Theora decoding is performed upside-down.

    One line fix: negate stride. Then the rest of the codec can treat it as right-side-up.

    > advantages of traversing the data in this pattern

    Potential advantage: improved clustering of zero and nonzero DCT coefficients. But Theora doesn’t use that; zero runs are within a block, not within a subband.
    DC prediction doesn’t benefit from Hilbert either, because it uses raster instead.
    So I have no idea what Hilbert was chosen for.

  3. Multimedia Mike Post author

    Recursive zigzag? Wow, that sounds nasty. I’ll have to look that up (and maybe draw a picture of it). This Hilbert stuff isn’t too difficult (at least it wasn’t after I reverse engineered the pattern from the C source and drew a picture). But it’s still tedious to get the corner cases correct.

    The reasoning behind the Hilbert pattern is explained in this comment: http://multimedia.cx/eggs/the-legend-of-hilbert/#comment-54870

Comments are closed.