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
Xiph.Org
aom-rav1e
Commits
1da0402e
Commit
1da0402e
authored
Jan 05, 2015
by
Jingning Han
Committed by
Gerrit Code Review
Jan 05, 2015
Browse files
Merge "Fix denoised video output function"
parents
fe23539d
21c03061
Changes
1
Hide whitespace changes
Inline
Side-by-side
vp9/encoder/vp9_encoder.c
View file @
1da0402e
...
@@ -2139,19 +2139,19 @@ void vp9_write_yuv_frame_420(YV12_BUFFER_CONFIG *s, FILE *f) {
...
@@ -2139,19 +2139,19 @@ void vp9_write_yuv_frame_420(YV12_BUFFER_CONFIG *s, FILE *f) {
}
while
(
--
h
);
}
while
(
--
h
);
src
=
s
->
u_buffer
;
src
=
s
->
u_buffer
;
h
=
s
->
uv_height
/
2
;
h
=
s
->
uv_height
;
do
{
do
{
fwrite
(
src
,
s
->
uv_width
/
2
,
1
,
f
);
fwrite
(
src
,
s
->
uv_width
,
1
,
f
);
src
+=
s
->
uv_stride
+
s
->
uv_width
/
2
;
src
+=
s
->
uv_stride
;
}
while
(
--
h
);
}
while
(
--
h
);
src
=
s
->
v_buffer
;
src
=
s
->
v_buffer
;
h
=
s
->
uv_height
/
2
;
h
=
s
->
uv_height
;
do
{
do
{
fwrite
(
src
,
s
->
uv_width
/
2
,
1
,
f
);
fwrite
(
src
,
s
->
uv_width
,
1
,
f
);
src
+=
s
->
uv_stride
+
s
->
uv_width
/
2
;
src
+=
s
->
uv_stride
;
}
while
(
--
h
);
}
while
(
--
h
);
}
}
#endif
#endif
...
...
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