Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
Xiph.Org
aom-rav1e
Commits
1a2df5e2
Commit
1a2df5e2
authored
Jan 09, 2017
by
Yushin Cho
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix wrong stride of dst buffer in intra4x4
Change-Id: Icbd238c73323d11d60ca4da755b52c83cb11b8b5
parent
f25bae44
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
av1/encoder/rdopt.c
av1/encoder/rdopt.c
+1
-1
No files found.
av1/encoder/rdopt.c
View file @
1a2df5e2
...
...
@@ -2006,7 +2006,7 @@ static int64_t rd_pick_intra4x4block(
const int src_stride = p->src.stride;
const int dst_stride = pd->dst.stride;
const uint8_t *src_init = &p->src.buf[row * 4 * src_stride + col * 4];
uint8_t *dst_init = &pd->dst.buf[row * 4 *
src
_stride + col * 4];
uint8_t *dst_init = &pd->dst.buf[row * 4 *
dst
_stride + col * 4];
#if CONFIG_CB4X4
// TODO(jingning): This is a temporal change. The whole function should be
// out when cb4x4 is enabled.
...
...
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