Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
SDK
/
exoplayer
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Settings
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
9c2528a7
authored
Jul 31, 2017
by
Oliver Woodman
Browse files
Options
_('Browse Files')
Download
Email Patches
Plain Diff
Correctly handle reading 0 bits
parent
85445536
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
0 deletions
library/core/src/main/java/com/google/android/exoplayer2/util/ParsableBitArray.java
library/core/src/main/java/com/google/android/exoplayer2/util/ParsableBitArray.java
View file @
9c2528a7
...
@@ -155,6 +155,9 @@ public final class ParsableBitArray {
...
@@ -155,6 +155,9 @@ public final class ParsableBitArray {
* @return An integer whose bottom n bits hold the read data.
* @return An integer whose bottom n bits hold the read data.
*/
*/
public
int
readBits
(
int
numBits
)
{
public
int
readBits
(
int
numBits
)
{
if
(
numBits
==
0
)
{
return
0
;
}
int
returnValue
=
0
;
int
returnValue
=
0
;
bitOffset
+=
numBits
;
bitOffset
+=
numBits
;
while
(
bitOffset
>
8
)
{
while
(
bitOffset
>
8
)
{
...
...
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