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
8ce8e351
authored
Oct 03, 2019
by
wingyippp
Browse files
Options
_('Browse Files')
Download
Email Patches
Plain Diff
new int64_t[4] after check mSeekTable supported
parent
03ba1c9a
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
1 deletions
extensions/flac/src/main/jni/flac_parser.cc
extensions/flac/src/main/jni/flac_parser.cc
View file @
8ce8e351
...
@@ -439,10 +439,10 @@ size_t FLACParser::readBuffer(void *output, size_t output_size) {
...
@@ -439,10 +439,10 @@ size_t FLACParser::readBuffer(void *output, size_t output_size) {
}
}
int64_t
*
FLACParser
::
getSeekPositions
(
int64_t
timeUs
)
{
int64_t
*
FLACParser
::
getSeekPositions
(
int64_t
timeUs
)
{
int64_t
*
result
=
new
int64_t
[
4
];
if
(
!
mSeekTable
)
{
if
(
!
mSeekTable
)
{
return
NULL
;
return
NULL
;
}
}
int64_t
*
result
=
new
int64_t
[
4
];
int64_t
sample
=
(
timeUs
*
getSampleRate
())
/
1000000LL
;
int64_t
sample
=
(
timeUs
*
getSampleRate
())
/
1000000LL
;
if
(
sample
>=
getTotalSamples
())
{
if
(
sample
>=
getTotalSamples
())
{
...
...
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