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
3a5ed6b8
authored
Feb 12, 2019
by
andrewlewis
Committed by
Andrew Lewis
Feb 18, 2019
Browse files
Options
_('Browse Files')
Download
Email Patches
Plain Diff
Skip ad group on unknown load error
PiperOrigin-RevId: 233576600
parent
c66d26b6
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletions
extensions/ima/src/main/java/com/google/android/exoplayer2/ext/ima/ImaAdsLoader.java
extensions/ima/src/main/java/com/google/android/exoplayer2/ext/ima/ImaAdsLoader.java
View file @
3a5ed6b8
...
...
@@ -1374,7 +1374,8 @@ public final class ImaAdsLoader
private
static
boolean
isAdGroupLoadError
(
AdError
adError
)
{
// TODO: Find out what other errors need to be handled (if any), and whether each one relates to
// a single ad, ad group or the whole timeline.
return
adError
.
getErrorCode
()
==
AdErrorCode
.
VAST_LINEAR_ASSET_MISMATCH
;
return
adError
.
getErrorCode
()
==
AdErrorCode
.
VAST_LINEAR_ASSET_MISMATCH
||
adError
.
getErrorCode
()
==
AdErrorCode
.
UNKNOWN_ERROR
;
}
private
static
boolean
hasMidrollAdGroups
(
long
[]
adGroupTimesUs
)
{
...
...
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