Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
VideoLAN
dav1d
Commits
18d2d750
Verified
Commit
18d2d750
authored
Jan 12, 2019
by
James Almer
Browse files
obu: fix separate_uv_delta_q for RGB
parent
e19c7699
Pipeline
#3928
passed with stages
in 5 minutes and 21 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
src/obu.c
View file @
18d2d750
...
...
@@ -258,8 +258,8 @@ static int parse_seq_hdr(Dav1dContext *const c, GetBits *const gb,
}
hdr
->
chr
=
hdr
->
ss_hor
==
1
&&
hdr
->
ss_ver
==
1
?
dav1d_get_bits
(
gb
,
2
)
:
DAV1D_CHR_UNKNOWN
;
hdr
->
separate_uv_delta_q
=
dav1d_get_bits
(
gb
,
1
);
}
hdr
->
separate_uv_delta_q
=
!
hdr
->
monochrome
&&
dav1d_get_bits
(
gb
,
1
);
#if DEBUG_SEQ_HDR
printf
(
"SEQHDR: post-colorinfo: off=%ld
\n
"
,
dav1d_get_bits_pos
(
gb
)
-
init_bit_pos
);
...
...
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