Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
halo
external_tremolo
Commits
3bd510a4
Commit
3bd510a4
authored
11 years ago
by
Nick Kralevich
Committed by
Android Git Automerger
11 years ago
Browse files
Options
Download
Plain Diff
am
9c7ba30e
: am
0fec2aef
: Merge "Fix vorbis decoding error."
* commit '
9c7ba30e
': Fix vorbis decoding error.
parents
6c406ff4
9c7ba30e
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
Tremolo/bitwise.c
Tremolo/bitwise.c
+2
-2
No files found.
Tremolo/bitwise.c
View file @
3bd510a4
...
...
@@ -226,8 +226,8 @@ long oggpack_look(oggpack_buffer *b,int bits){
unsigned
char
*
ptr
=
b
->
headptr
;
ogg_reference
*
head
=
b
->
head
;
if
(
end
<
0
)
return
-
1
;
if
(
!
head
||
!
end
)
return
-
1
;
if
(
end
<
0
)
return
0
;
if
(
!
head
||
!
end
)
return
0
;
if
(
bits
){
_lookspan
();
...
...
This diff is collapsed.
Click to expand it.
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