
PVQ replaces the scalar quantizer and coefficient coding with a new
design originally developed in Daala. It currently depends on the
Daala entropy coder although it could be adapted to work with another
entropy coder if needed:
./configure --enable-experimental --enable-daala_ec --enable-pvq
The version of PVQ in this commit is adapted from the following
revision of Daala:
fb51c1ade6
More information about PVQ:
- https://people.xiph.org/~jm/daala/pvq_demo/
- https://jmvalin.ca/papers/spie_pvq.pdf
The following files are copied as-is from Daala with minimal
adaptations, therefore we disable clang-format on those files
to make it easier to synchronize the AV1 and Daala codebases in the future:
av1/common/generic_code.c
av1/common/generic_code.h
av1/common/laplace_tables.c
av1/common/partition.c
av1/common/partition.h
av1/common/pvq.c
av1/common/pvq.h
av1/common/state.c
av1/common/state.h
av1/common/zigzag.h
av1/common/zigzag16.c
av1/common/zigzag32.c
av1/common/zigzag4.c
av1/common/zigzag64.c
av1/common/zigzag8.c
av1/decoder/decint.h
av1/decoder/generic_decoder.c
av1/decoder/laplace_decoder.c
av1/decoder/pvq_decoder.c
av1/decoder/pvq_decoder.h
av1/encoder/daala_compat_enc.c
av1/encoder/encint.h
av1/encoder/generic_encoder.c
av1/encoder/laplace_encoder.c
av1/encoder/pvq_encoder.c
av1/encoder/pvq_encoder.h
Known issues:
- Lossless mode is not supported, '--lossless=1' will give the same result as
'--end-usage=q --cq-level=1'.
- High bit depth is not supported by PVQ.
Change-Id: I1ae0d6517b87f4c1ccea944b2e12dc906979f25e
66 lines
1.9 KiB
C
66 lines
1.9 KiB
C
/* This file is generated by gen_zigzag8.m */
|
|
|
|
/* clang-format off */
|
|
|
|
#include "odintrin.h"
|
|
|
|
OD_EXTERN const unsigned char OD_ZIGZAG8_DCT_DCT[48][2] = {
|
|
{4, 0}, {4, 1}, {5, 0}, {5, 1},
|
|
{6, 0}, {7, 0}, {6, 1}, {7, 1},
|
|
{0, 4}, {1, 4}, {0, 5}, {1, 5},
|
|
{0, 6}, {1, 6}, {0, 7}, {1, 7},
|
|
{2, 4}, {4, 2}, {3, 4}, {2, 5},
|
|
{4, 3}, {5, 2}, {4, 4}, {3, 5},
|
|
{5, 3}, {2, 6}, {4, 5}, {6, 2},
|
|
{5, 4}, {3, 6}, {2, 7}, {6, 3},
|
|
{5, 5}, {7, 2}, {4, 6}, {3, 7},
|
|
{6, 4}, {7, 3}, {4, 7}, {5, 6},
|
|
{6, 5}, {7, 4}, {5, 7}, {6, 6},
|
|
{7, 5}, {6, 7}, {7, 6}, {7, 7}
|
|
};
|
|
|
|
OD_EXTERN const unsigned char OD_ZIGZAG8_ADST_DCT[48][2] = {
|
|
{4, 0}, {5, 0}, {4, 1}, {6, 0},
|
|
{5, 1}, {7, 0}, {6, 1}, {7, 1},
|
|
{0, 4}, {1, 4}, {0, 5}, {1, 5},
|
|
{0, 6}, {1, 6}, {0, 7}, {1, 7},
|
|
{4, 2}, {2, 4}, {5, 2}, {4, 3},
|
|
{3, 4}, {2, 5}, {5, 3}, {4, 4},
|
|
{6, 2}, {3, 5}, {5, 4}, {2, 6},
|
|
{4, 5}, {6, 3}, {7, 2}, {3, 6},
|
|
{2, 7}, {5, 5}, {6, 4}, {4, 6},
|
|
{7, 3}, {3, 7}, {5, 6}, {6, 5},
|
|
{4, 7}, {7, 4}, {5, 7}, {7, 5},
|
|
{6, 6}, {7, 6}, {6, 7}, {7, 7}
|
|
};
|
|
|
|
OD_EXTERN const unsigned char OD_ZIGZAG8_DCT_ADST[48][2] = {
|
|
{4, 0}, {4, 1}, {5, 0}, {5, 1},
|
|
{6, 0}, {6, 1}, {7, 0}, {7, 1},
|
|
{0, 4}, {0, 5}, {1, 4}, {0, 6},
|
|
{1, 5}, {0, 7}, {1, 6}, {1, 7},
|
|
{2, 4}, {2, 5}, {3, 4}, {4, 2},
|
|
{2, 6}, {4, 3}, {3, 5}, {4, 4},
|
|
{2, 7}, {3, 6}, {5, 2}, {4, 5},
|
|
{5, 3}, {3, 7}, {5, 4}, {4, 6},
|
|
{6, 2}, {5, 5}, {4, 7}, {6, 3},
|
|
{6, 4}, {5, 6}, {7, 2}, {6, 5},
|
|
{7, 3}, {5, 7}, {7, 4}, {6, 6},
|
|
{7, 5}, {6, 7}, {7, 6}, {7, 7}
|
|
};
|
|
|
|
OD_EXTERN const unsigned char OD_ZIGZAG8_ADST_ADST[48][2] = {
|
|
{4, 0}, {4, 1}, {5, 0}, {5, 1},
|
|
{6, 0}, {7, 0}, {6, 1}, {7, 1},
|
|
{0, 4}, {1, 4}, {0, 5}, {1, 5},
|
|
{0, 6}, {1, 6}, {0, 7}, {1, 7},
|
|
{2, 4}, {4, 2}, {3, 4}, {2, 5},
|
|
{4, 3}, {5, 2}, {4, 4}, {3, 5},
|
|
{5, 3}, {2, 6}, {4, 5}, {6, 2},
|
|
{5, 4}, {3, 6}, {2, 7}, {6, 3},
|
|
{5, 5}, {7, 2}, {4, 6}, {3, 7},
|
|
{6, 4}, {7, 3}, {4, 7}, {5, 6},
|
|
{6, 5}, {7, 4}, {5, 7}, {6, 6},
|
|
{7, 5}, {6, 7}, {7, 6}, {7, 7}
|
|
};
|