Advertisement
The entropy coding options in the AV1 codec control how probabilities for different data types (such as coefficients, modes, motion vectors) are adjusted during encoding. Frequent updates (e.g., "Every superblock") make compression more efficient, but also more computationally intensive. The choice of CDF update mode (e.g., "On every frame") also influences how dynamically the probability model adapts.
Advertisement
"CDF update mode for entropy coding" controls how frequently the CDFs are updated. This affects compression efficiency and decodability.
CDFs are not updated. This saves computing power but can reduce efficiency
CDFs are updated every frame. Best compression, but higher CPU load
Only selected frames update the CDFs. A trade-off between efficiency and performance
"Update freq for coeff costs" determines how often the probability models for transformation coefficients (e.g., DCT values) are updated. These coefficients represent the fine image details after transformation and are crucial for efficient compression.
Highest accuracy, as it is updated after every 64×64 block (superblock) – best compression, high CPU load
Lower frequency – once per superblock row within a tile, slightly reduces computational load
Only once per tile (image area) – faster, but less precise
No update – lowest computational load, but potentially worse compression
"Update freq for mode costs" specifies how often the probabilities for choosing prediction modes are updated. Frequent updates (such as "Every superblock") improve compression by better adapting to image content, while infrequent or no updates save computing power but are less efficient.
Highest accuracy, as it is updated after every 64×64 block (superblock) – best compression, high CPU load
Lower frequency – once per superblock row within a tile, slightly reduces computational load
Only once per tile (image area) – faster, but less precise
No update – lowest computational load, but potentially worse compression
"Update freq for mv costs controls how often the probabilities for motion vectors (MV) are updated. These vectors describe how image content moves between frames.
Highest accuracy, as it is updated after every 64×64 block (superblock) – best compression, high CPU load
Lower frequency – once per superblock row within a tile, slightly reduces computational load
Only once per tile (image area) – faster, but less precise
No update – lowest computational load, but potentially worse compression
"Update freq for dv costs" controls how often probabilities for decoder motion vectors (dv) are updated.
Highest accuracy, as it is updated after every 64×64 block (superblock) – best compression, high CPU load
Lower frequency – once per superblock row within a tile, slightly reduces computational load
Only once per tile (image area) – faster, but less precise
No update – lowest computational load, but potentially worse compression