Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Yushin Cho
aom-rav1e
Commits
7e157467
Commit
7e157467
authored
Jan 17, 2014
by
Alex Converse
Committed by
Gerrit Code Review
Jan 17, 2014
Browse files
Merge "Fix output cropping in vp9_get_preview_raw_frame."
parents
c5b63397
9c199537
Changes
1
Hide whitespace changes
Inline
Side-by-side
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
Supports
Markdown
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