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
Mark Harris
Opus
Commits
8e02afcf
Commit
8e02afcf
authored
Dec 17, 2013
by
Jean-Marc Valin
Browse files
Fixes a warning about "conversion from '__int64' to 'int'" on MSVC
parent
253e15f7
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/repacketizer.c
View file @
8e02afcf
...
...
@@ -219,8 +219,9 @@ opus_int32 opus_repacketizer_out_range_impl(OpusRepacketizer *rp, int begin, int
}
if
(
pad
)
{
for
(
i
=
ptr
-
data
;
i
<
maxlen
;
i
++
)
data
[
i
]
=
0
;
/* Fill padding with zeros. */
while
(
ptr
<
data
+
maxlen
)
*
ptr
++=
0
;
}
return
tot_size
;
}
...
...
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