Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
A
aom-rav1e
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Xiph.Org
aom-rav1e
Commits
02d4c3b7
Commit
02d4c3b7
authored
Nov 07, 2016
by
Yaowu Xu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix compiler warning of un-used variables
Change-Id: I17d05bbf75a201fd010fc17e2d9bd0db8ef36d41
parent
3442b4b1
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
2 deletions
+4
-2
av1/encoder/encodemb.c
av1/encoder/encodemb.c
+2
-1
av1/encoder/rdopt.c
av1/encoder/rdopt.c
+2
-1
No files found.
av1/encoder/encodemb.c
View file @
02d4c3b7
...
...
@@ -417,7 +417,8 @@ static AV1_QUANT_FACADE quant_func_list[AV1_XFORM_QUANT_LAST][QUANT_FUNC_LAST] =
{
av1_quantize_dc_facade
,
av1_highbd_quantize_dc_facade
},
{
NULL
,
NULL
}
};
#else
#elif !CONFIG_PVQ
typedef
enum
QUANT_FUNC
{
QUANT_FUNC_LOWBD
=
0
,
QUANT_FUNC_LAST
=
1
...
...
av1/encoder/rdopt.c
View file @
02d4c3b7
...
...
@@ -4565,8 +4565,9 @@ static int64_t encode_inter_mb_segment(const AV1_COMP *const cpi, MACROBLOCK *x,
for (idx = 0; idx < width / 4; idx += num_4x4_w) {
int64_t dist, ssz, rd, rd1, rd2;
int block;
#if !CONFIG_PVQ
int coeff_ctx;
#
if CONFIG_PVQ
#
else
const int src_stride = p->src.stride;
const int dst_stride = pd->dst.stride;
const int diff_stride = 8;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment