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
e63b78a4
Commit
e63b78a4
authored
Feb 14, 2014
by
Jim Bankoski
Committed by
Gerrit Code Review
Feb 14, 2014
Browse files
Options
Browse Files
Download
Plain Diff
Merge "vp9_write_bit_buffer.h add consts to suppress warnings in vs"
parents
0000e3a8
0abb0657
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
vp9/encoder/vp9_write_bit_buffer.h
vp9/encoder/vp9_write_bit_buffer.h
+1
-1
No files found.
vp9/encoder/vp9_write_bit_buffer.h
View file @
e63b78a4
...
...
@@ -29,7 +29,7 @@ static size_t vp9_rb_bytes_written(struct vp9_write_bit_buffer *wb) {
}
static
void
vp9_wb_write_bit
(
struct
vp9_write_bit_buffer
*
wb
,
int
bit
)
{
const
int
off
=
wb
->
bit_offset
;
const
int
off
=
(
int
)
wb
->
bit_offset
;
const
int
p
=
off
/
CHAR_BIT
;
const
int
q
=
CHAR_BIT
-
1
-
off
%
CHAR_BIT
;
if
(
q
==
CHAR_BIT
-
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