The function is_rect_tx previously was only defined when
both ext-tx and rect-tx are enabled together. This function
needs to be defined when rect-tx is enabled alone to fix
failing asserts.
Change-Id: Ic8153a55b768cb49caac07d6aeaee109d63410a9
Frame Super-Resolution is an experiment currently under development.
This commit just adds an experimental flag for it.
The goal of the experiment is to compress a downsampled version of a
frame instead of the full resolution one when bandwidth is limited. The
decoder will need to upsample and filter the frame it recieves after
decoding. It is thought that this will result in a visually superior
result in low bandwidth scenarios.
Change-Id: Ia8af8692cffd133db3838693fd85ded2442b078c
In the last position, No-EOB values and zero are all not
possible.
AWCY, objective-1-fast: -0.08% all metrics
AWCY, screen content:
PSNR YCbCr: -0.42% -0.42% -0.43%
PSNRHVS: -0.40%
SSIM: -0.41%
MSSSIM: -0.41%
CIEDE2000: -0.42%
Change-Id: Iad012abfd2a48a2c9ff27512f92b27235a5a8a4a
The initial CDF for each frame is stored in
the frame context. CDFs for actual coding are
stored in the tile structures, and these are
what get adapted. The initial CDF is replaced
by an average CDF derived from these tile CDFs.
This is carried forward to future frames when
backward adaptation is on.
CDFs are no longer set from the 8 bit probabilities
in backwards adaptation.
For now, 8 bit probabilities are maintained for
use in the encoder and for symbols which do not
have a CDF.
Change-Id: I106b30510bfad1fa57d077f7702acc1864378a09
One codepath originally skipped a function which forks between
gm prediction and regular inter prediction. This change fixes this
for both high bit depth and regular bit depth.
Change-Id: I741d67a7c89eb6eb0cd35c02219739dc3ddb3841
Generated using av1_tree_to_cdf().
Note: These are currently overwritten by CDFs generated from default
probability tables. But they will be used eventually when we remove the
default probability tables.
Change-Id: I41a6047fd13e05156a50b2d54349ffdd7e1e4c4a
Function apply_selfguided_restoration_highbd_sse4_1() is producing
mismatch to c version, it is removed for now, allowing investigation
and fix.
BUG=aomedia:392
Change-Id: Ic55e7a6958112c02930b1d5f3af2e2ea089fe500
This reverts commit 48c10c7d91.
Reason for revert: this incorrectly detects feenableexcept for
i686-w64-mingw32 (at least), causing the link to fail
BUG=aomedia:388
Change-Id: I141fec2285bd67d1312f1eb6be528cc69108cd27
avoids a floating point error being generated. this doesn't change
behavior, the -HUGE_VAL return was being ignored due to the min()
BUG=aomedia:388
Change-Id: I698aab248c777b02b60081bb7619e0aa6f3a0ba2
The addition of a 2D array to the HandleInterModeArgs struct means there
is now a non-optional member in the opt_args struct passed to
handle_inter_mode and its child functions. Since opt_args no longer
consists solely of optional members I've renamed it args.
Change-Id: I7f3b22188777d8fdac2c244746638c34b5d8636c
The bitstream has now changed as we enabled ALT_INTRA by default now, so
need to update the golden MD5.
BUG=aomedia:389
Change-Id: Ic62d1628e572e5ea252d6f6eef8d8312db62dbb8
Two 2D arrays were passed to HandleInterMode and not used elsewhere.
One has been added to the HandleInterModeArgs struct to
simplify handle_inter_mode's signature and the the calling function.
The other has been unread since commit
beacb3ff79. That patch removed the
"skip_txfm optimization" but left the single_skippable array in place,
even though it was no longer read. Since the array's only usage has been
removed, this patch removes the variable outright.
Change-Id: I6e680a9ddc6f67961153819a62009751252757a8
This keeps track of how many calls have been made
to read symbols or bits. A given syntax element
may make multiple calls to symbol decoding functions,
and these variables keep track of the entropy
decoding engine throughput.
Change-Id: Iab3a720cbfe68f8d5ca3e4c415f7baa683b24268
Adds an option controlled by a macro to replace one of
the guided filters in the self-guided tool with a simple
bandpass filtered version generated with a 3x3 kernel.
By default the macro USE_HIGHPASS_IN_SGRPROJ is 0 (turned
off), that defaults us to the dual self-guided filter.
When the macro is turned on, the larger radius guided
filter is replaced by a simpler filter that is much faster.
Results (if USE_HIGHPASS_IN_SGRPROJ is on vs. off):
lowres: performance drop by +0.14% (BDRATE)
midres: performance drop by +0.27% (BDRATE)
Further experiments on this variation of guided filters is
pending.
Change-Id: I7bbcfcad7ee266cd49a8dc6d96795a454feb1a94
this change added back the original 15 tap filter from VP9 back into
the parallel_deblocking experiment. when transform size of both blocks
along the edge is greater than 16x16, 15 tap filter is used.
Change-Id: Ieae0393b66b1168572292bcebabd2707058b7f1d
Move the analyzer setup to process_toolchain() in configure to
ensure the {CXX,LD}FLAGS are picked up for all targets.
Change-Id: I037f52406c19a42ddd848adad2f43d3a49b00ded
- Use the FindwxWidgets (the cmake module) to detect library
flags and handle include paths.
- Update target to link in the libs located by FindwxWidgets.
- Enable CONFIG_INSPECTION and warn at generation time when it's
not present and CONFIG_ANALYZER is enabled.
BUG=https://bugs.chromium.org/p/aomedia/issues/detail?id=76
Change-Id: Ica949107d199af9d8241ca639cc27753d4a30dfc
This tool was adopted in the AOM codec WG call on 03/03/2017.
Resubmitting, now that the log2() use has been removed:
https://aomedia-review.googlesource.com/#/c/8463/
Change-Id: Iec4cff00ea901ab3ed6ed703599ef41c3f860ca1
Cosmetic change that moves the declaration of mbmi at the beginning of
the function. This simplifies access and removes the need for
(void)mbmi.
Change-Id: Id0f7e1113696200ae6fb98bcc639d1cbdba05a9e
Apart from being inefficient, the floating point operation log2()
was resulting in an assertion failure due to an unrelated floating
point exception that happens earlier.
Related: update the MD5s in test_intra_pred_speed to fix that failure
too.
BUG=aomedia:384
Change-Id: I18dc0733e880bac21b3d07ad874f8ae341f59f06