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
58a2ca60
authored
Jan 18, 2022
by
Dustin
Browse files
Options
_('Browse Files')
Download
Email Patches
Plain Diff
Fix for movi with LIST('rec ')
parent
1a1dc44b
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
2 deletions
library/extractor/src/main/java/com/google/android/exoplayer2/extractor/avi/AviExtractor.java
library/extractor/src/main/java/com/google/android/exoplayer2/extractor/avi/AviExtractor.java
View file @
58a2ca60
...
@@ -404,10 +404,15 @@ public class AviExtractor implements Extractor {
...
@@ -404,10 +404,15 @@ public class AviExtractor implements Extractor {
sampleSize
=
byteBuffer
.
getInt
();
sampleSize
=
byteBuffer
.
getInt
();
sampleTrack
=
idTrackMap
.
get
(
id
);
sampleTrack
=
idTrackMap
.
get
(
id
);
if
(
sampleTrack
==
null
)
{
if
(
sampleTrack
==
null
)
{
if
(
id
==
ListBox
.
LIST
)
{
seekPosition
.
position
=
input
.
getPosition
()
+
4
;
}
else
{
seekPosition
.
position
=
input
.
getPosition
()
+
sampleSize
;
if
(
id
!=
JUNK
)
{
if
(
id
!=
JUNK
)
{
Log
.
w
(
TAG
,
"Unknown tag="
+
AviUtil
.
toString
(
id
)
+
" pos="
+
(
input
.
getPosition
()
-
8
)
+
" size="
+
sampleSize
+
" moviEnd="
+
moviEnd
);
Log
.
w
(
TAG
,
"Unknown tag="
+
AviUtil
.
toString
(
id
)
+
" pos="
+
(
input
.
getPosition
()
-
8
)
+
" size="
+
sampleSize
+
" moviEnd="
+
moviEnd
);
}
}
}
seekPosition
.
position
=
input
.
getPosition
()
+
sampleSize
;
return
RESULT_SEEK
;
return
RESULT_SEEK
;
}
else
{
}
else
{
//Log.d(TAG, "Sample pos=" + (input.getPosition() - 8) + " size=" + sampleSize + " video=" + sampleTrack.isVideo());
//Log.d(TAG, "Sample pos=" + (input.getPosition() - 8) + " size=" + sampleSize + " video=" + sampleTrack.isVideo());
...
...
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