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
7e157467
Commit
7e157467
authored
Jan 17, 2014
by
Alex Converse
Committed by
Gerrit Code Review
Jan 17, 2014
Browse files
Options
Browse Files
Download
Plain Diff
Merge "Fix output cropping in vp9_get_preview_raw_frame."
parents
c5b63397
9c199537
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
vp9/encoder/vp9_onyx_if.c
vp9/encoder/vp9_onyx_if.c
+2
-1
No files found.
vp9/encoder/vp9_onyx_if.c
View file @
7e157467
...
...
@@ -3689,7 +3689,8 @@ int vp9_get_preview_raw_frame(VP9_PTR comp, YV12_BUFFER_CONFIG *dest,
*
dest
=
*
cpi
->
common
.
frame_to_show
;
dest
->
y_width
=
cpi
->
common
.
width
;
dest
->
y_height
=
cpi
->
common
.
height
;
dest
->
uv_height
=
cpi
->
common
.
height
/
2
;
dest
->
uv_width
=
cpi
->
common
.
width
>>
cpi
->
common
.
subsampling_x
;
dest
->
uv_height
=
cpi
->
common
.
height
>>
cpi
->
common
.
subsampling_y
;
ret
=
0
;
}
else
{
ret
=
-
1
;
...
...
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