diff --git a/theoplayer/changelog.md b/theoplayer/changelog.md index 4db8c473d64..a1790c9e148 100644 --- a/theoplayer/changelog.md +++ b/theoplayer/changelog.md @@ -5,6 +5,59 @@ sidebar_custom_props: { 'icon': '📰' } toc_max_heading_level: 2 --- +## 🚀 8.2.0 (2024/10/10) + +### General + +#### ✨ Features + +- Added THEOads API to allow to changing the ad tag parameters via `player.ads.theoads.replaceAdTagParameters`. + +#### ⚡ Improvements + +- Prevent unnecessary first seek when starting playback at the beginning of a VoD source for DASH, to improve startup times on lower-end smart TVs. + +#### 🐛 Issues + +- Fixed an issue where the latency manager would not be automatically enabled when overriding the source with another source containing a `SourceLatencyConfiguration`. +- Fixed an issue where the player would sometimes skip some segments when playing certain MPEG-DASH live streams with slightly misaligned segments, which could result in excessive gap jumping and stalling. +- Fixed an issue where the player could stall indefinitely when playing an HLS stream with misaligned discontinuities on macOS Safari and other WebKit-based browsers. + +### Web + +#### 💥 Breaking Changes + +- In order to use THEOads, you now need to set [`PlayerConfiguration.ads.theoads`](https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/AdsConfiguration.html#theoads) to `true`. Users of the [@theoplayer/theoads](https://www.npmjs.com/package/@theoplayer/theoads) package can temporarily keep using THEOads without updating their player configuration. + +#### ✨ Features + +- Added support for CEA-608 and CEA-708 subtitles for HESP streams. +- Added support for THEOlive sources. +- Fixed an issue where the player could remain stuck retrying offline HLS media playlists even after a new source is set. + +#### 🐛 Issues + +- Fixed an issue where some HESP streams would not play on iOS <17.1 devices. + +### Android + +#### ✨ Features + +- Added [Millicast](https://dolby.io/products/real-time-streaming/) integration for real-time streaming. The integration is available on [our Maven repository](https://maven.theoplayer.com/) as `com.theoplayer.theoplayer-sdk-android:integration-millicast`. +- Added `TheoAdsIntegration.replaceAdTagParameters()` to allow changing ad tag parameters for THEOads dynamically. + +#### 🐛 Issues + +- Fixed an issue where an HTTP 3xx redirect from `http://` to `https://` was not followed. +- Fixed an issue where multiple CANPLAYTHROUGH events were triggered +- Fixed an issue where THEOplayer licenses containing `ip-range()` source domains were not handled correctly. + +### iOS + +#### 🐛 Issues + +- Fixed an issue where the player automatically resumed playing after coming back from tapping the Learn more button during a Google IMA ad. + ## 🚀 8.1.2 (2024/10/02) ### Android diff --git a/theoplayer/static/theoplayer/v8/api-reference/android/allclasses.html b/theoplayer/static/theoplayer/v8/api-reference/android/allclasses.html index f2a216bd36e..0836efada9d 100644 --- a/theoplayer/static/theoplayer/v8/api-reference/android/allclasses.html +++ b/theoplayer/static/theoplayer/v8/api-reference/android/allclasses.html @@ -33,6 +33,10 @@

All Classes

  • CastStrategy
  • +
  • Media3PlayerIntegration
  • + +
  • Media3PlayerIntegrationFactory
  • +
  • IntentCreationListener
  • FullScreenActivity
  • diff --git a/theoplayer/static/theoplayer/v8/api-reference/android/com/theoplayer/android/api/IntegrationType.html b/theoplayer/static/theoplayer/v8/api-reference/android/com/theoplayer/android/api/IntegrationType.html index 9999aa7d0f4..2cb3a933436 100644 --- a/theoplayer/static/theoplayer/v8/api-reference/android/com/theoplayer/android/api/IntegrationType.html +++ b/theoplayer/static/theoplayer/v8/api-reference/android/com/theoplayer/android/api/IntegrationType.html @@ -255,6 +255,18 @@

    Enum Constant Summary

    + + MEDIA3 + + + + + MILLICAST + + + diff --git a/theoplayer/static/theoplayer/v8/api-reference/android/com/theoplayer/android/api/ads/theoads/TheoAdDescription.html b/theoplayer/static/theoplayer/v8/api-reference/android/com/theoplayer/android/api/ads/theoads/TheoAdDescription.html index 04f1f70a8f6..98bae3eb834 100644 --- a/theoplayer/static/theoplayer/v8/api-reference/android/com/theoplayer/android/api/ads/theoads/TheoAdDescription.html +++ b/theoplayer/static/theoplayer/v8/api-reference/android/com/theoplayer/android/api/ads/theoads/TheoAdDescription.html @@ -114,7 +114,7 @@

    Class TheoAdDescription


     
    -public final class TheoAdDescription
    +public class TheoAdDescription
     extends AdDescription
                         

    Describes a THEOads SGAI ad break request.

    @@ -203,6 +203,12 @@

    Field Summary

    + private final Map<String, String> + adTagParameters + + + + private final Boolean useId3 @@ -234,7 +240,7 @@

    Constructor Summary

    TheoAdDescription(String networkCode, String customAssetKey, String backdropDoubleBox, String backdropLShape, TheoAdsLayoutOverride overrideLayout, Boolean useId3) + href="#TheoAdDescription(java.lang.String,java.lang.String,java.lang.String,java.lang.String,com.theoplayer.android.api.ads.theoads.TheoAdsLayoutOverride,java.util.Map,java.lang.Boolean)">TheoAdDescription(String networkCode, String customAssetKey, String backdropDoubleBox, String backdropLShape, TheoAdsLayoutOverride overrideLayout, Map<String, String> adTagParameters, Boolean useId3) @@ -328,6 +334,14 @@

    Method Summary

    + final Map<String, String> + + getAdTagParameters() + + The ad tag parameters added to the stream request. + + + final Boolean getUseId3() @@ -372,11 +386,11 @@

    Methods inherited from class java.lang.Object

    Constructor Detail

    - + + + + + + diff --git a/theoplayer/static/theoplayer/v8/api-reference/android/com/theoplayer/android/api/ads/theoads/TheoAdsIntegration.html b/theoplayer/static/theoplayer/v8/api-reference/android/com/theoplayer/android/api/ads/theoads/TheoAdsIntegration.html index e3084780698..e992b0f7268 100644 --- a/theoplayer/static/theoplayer/v8/api-reference/android/com/theoplayer/android/api/ads/theoads/TheoAdsIntegration.html +++ b/theoplayer/static/theoplayer/v8/api-reference/android/com/theoplayer/android/api/ads/theoads/TheoAdsIntegration.html @@ -248,6 +248,14 @@

    Method Summary

    Description + + abstract Unit + + replaceAdTagParameters(Map<String, String> adTagParameters) + + Replaces all of the ad tag parameters used for upcoming ad requests for a live stream. + + @@ -298,6 +306,29 @@

    Constructor Detail

    Method Detail

    + + + + + diff --git a/theoplayer/static/theoplayer/v8/api-reference/android/com/theoplayer/android/api/contentprotection/ContentProtectionIntegrationFactory.html b/theoplayer/static/theoplayer/v8/api-reference/android/com/theoplayer/android/api/contentprotection/ContentProtectionIntegrationFactory.html index e5dc4ea9183..93ef761b700 100644 --- a/theoplayer/static/theoplayer/v8/api-reference/android/com/theoplayer/android/api/contentprotection/ContentProtectionIntegrationFactory.html +++ b/theoplayer/static/theoplayer/v8/api-reference/android/com/theoplayer/android/api/contentprotection/ContentProtectionIntegrationFactory.html @@ -248,7 +248,7 @@

    Method Summary

    abstract ContentProtectionIntegration - build(DRMConfiguration configuration) + build(@NonNull() DRMConfiguration configuration) @@ -305,7 +305,7 @@

    Method Detail

    >
  • build

    -
     abstract ContentProtectionIntegration build(DRMConfiguration configuration)
    +
    @NonNull() abstract ContentProtectionIntegration build(@NonNull() DRMConfiguration configuration)
    diff --git a/theoplayer/static/theoplayer/v8/api-reference/android/com/theoplayer/android/api/media3/Media3PlayerIntegration.SourceSelectCallback.html b/theoplayer/static/theoplayer/v8/api-reference/android/com/theoplayer/android/api/media3/Media3PlayerIntegration.SourceSelectCallback.html new file mode 100644 index 00000000000..043027156a4 --- /dev/null +++ b/theoplayer/static/theoplayer/v8/api-reference/android/com/theoplayer/android/api/media3/Media3PlayerIntegration.SourceSelectCallback.html @@ -0,0 +1,400 @@ + + + + SourceSelectCallback + + + + + + + + + + + + + + + + + +
    + +
    + +
    +
    + +

    Interface Media3PlayerIntegration.SourceSelectCallback

    +
    +
    + +
    + +
    +
    +
      +
    • + + +
      +
        +
      • + + +

        Nested Class Summary

        +
        + + + + + + + + +
        Nested Classes 
        Modifier and TypeClassDescription
        +
        +
      • +
      +
      + + + +
      +
        +
      • + + +

        Field Summary

        +
        + + + + + + + + +
        Fields 
        Modifier and TypeFieldDescription
        +
        +
      • +
      +
      + + + +
      +
        +
      • + + +

        Constructor Summary

        +
        + + + + + + + + + + + +
        Constructors 
        ConstructorDescription
        +
        +
      • +
      +
      + + + +
      +
        +
      • + + +

        Enum Constant Summary

        + + + + + + + +
        Enum Constants 
        Enum ConstantDescription
        +
      • +
      +
      + + + +
      +
        +
      • + + +

        Method Summary

        +
        +
        + + +
        +
        + + + + + + + + + + + + + + +
        Modifier and TypeMethodDescription
        abstract Boolean + canPlaySource(TypedSource selectedSource, SourceDescription source) + Returns whether the given source should be played using the Media3PlayerIntegration.
        +
        +
          + +
        • + + +

          Methods inherited from class java.lang.Object

          + clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, + wait, wait, wait
        • +
        +
      • +
      +
      + +
    • +
    +
    +
    +
      +
    • + + +
      +
        +
      • + + +

        Constructor Detail

        + +
      • +
      +
      + + + +
      + +
      + +
    • +
    +
    +
    +
    + + + + diff --git a/theoplayer/static/theoplayer/v8/api-reference/android/com/theoplayer/android/api/media3/Media3PlayerIntegration.html b/theoplayer/static/theoplayer/v8/api-reference/android/com/theoplayer/android/api/media3/Media3PlayerIntegration.html new file mode 100644 index 00000000000..8a7cad547b2 --- /dev/null +++ b/theoplayer/static/theoplayer/v8/api-reference/android/com/theoplayer/android/api/media3/Media3PlayerIntegration.html @@ -0,0 +1,371 @@ + + + + Media3PlayerIntegration + + + + + + + + + + + + + + + + + +
    + +
    + +
    +
    + +

    Interface Media3PlayerIntegration

    +
    +
    + +
    +
      +
    • + +
      +
      All Implemented Interfaces:
      +
      + + com.theoplayer.android.api.Integration + + +
      +
      + +
      +
      +@ApiStatus.Experimental() 
      +public interface Media3PlayerIntegration
      + implements Integration
      +                    
      +

      An integration for using Jetpack Media3 as the THEOplayer backend.

      + +
      + + + + + +
      +
    • +
    +
    +
    +
      +
    • + + +
      + +
      + + + +
      +
        +
      • + + +

        Field Summary

        +
        + + + + + + + + +
        Fields 
        Modifier and TypeFieldDescription
        +
        +
      • +
      +
      + + + +
      +
        +
      • + + +

        Constructor Summary

        +
        + + + + + + + + + + + +
        Constructors 
        ConstructorDescription
        +
        +
      • +
      +
      + + + +
      +
        +
      • + + +

        Enum Constant Summary

        + + + + + + + +
        Enum Constants 
        Enum ConstantDescription
        +
      • +
      +
      + + + +
      +
        +
      • + + +

        Method Summary

        +
        +
        + + +
        +
        + + + + + + + + +
        Modifier and TypeMethodDescription
        +
        +
          + +
        • + + +

          Methods inherited from class com.theoplayer.android.api.Integration

          + getType
        • + +
        • + + +

          Methods inherited from class java.lang.Object

          + clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, + wait, wait, wait
        • +
        +
      • +
      +
      + +
    • +
    +
    +
    +
      +
    • + + +
      +
        +
      • + + +

        Constructor Detail

        + +
      • +
      +
      + + + +
      +
        +
      • + + +

        Method Detail

        + +
      • +
      +
      + +
    • +
    +
    +
    +
    + + + + diff --git a/theoplayer/static/theoplayer/v8/api-reference/android/com/theoplayer/android/api/media3/Media3PlayerIntegrationFactory.html b/theoplayer/static/theoplayer/v8/api-reference/android/com/theoplayer/android/api/media3/Media3PlayerIntegrationFactory.html new file mode 100644 index 00000000000..a3a8614cc84 --- /dev/null +++ b/theoplayer/static/theoplayer/v8/api-reference/android/com/theoplayer/android/api/media3/Media3PlayerIntegrationFactory.html @@ -0,0 +1,404 @@ + + + + Media3PlayerIntegrationFactory + + + + + + + + + + + + + + + + + +
    + +
    + +
    +
    + +

    Object Media3PlayerIntegrationFactory

    +
    +
    + +
    + +
    +
    +
      +
    • + + +
      +
        +
      • + + +

        Nested Class Summary

        +
        + + + + + + + + +
        Nested Classes 
        Modifier and TypeClassDescription
        +
        +
      • +
      +
      + + + +
      + +
      + + + +
      +
        +
      • + + +

        Constructor Summary

        +
        + + + + + + + + + + + +
        Constructors 
        ConstructorDescription
        +
        +
      • +
      +
      + + + +
      +
        +
      • + + +

        Enum Constant Summary

        + + + + + + + +
        Enum Constants 
        Enum ConstantDescription
        +
      • +
      +
      + + + +
      + +
      + +
    • +
    +
    +
    + +
    +
    +
    + + + + diff --git a/theoplayer/static/theoplayer/v8/api-reference/android/com/theoplayer/android/api/media3/package-summary.html b/theoplayer/static/theoplayer/v8/api-reference/android/com/theoplayer/android/api/media3/package-summary.html new file mode 100644 index 00000000000..ba63eeebdf2 --- /dev/null +++ b/theoplayer/static/theoplayer/v8/api-reference/android/com/theoplayer/android/api/media3/package-summary.html @@ -0,0 +1,210 @@ + + + + Package com.theoplayer.android.api.media3 + + + + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Package com.theoplayer.android.api.media3

    +
    +
    +
    +
    +
    +

    See: Description

    +
    +
    + + + +
    +
    +
    + +
    + + + diff --git a/theoplayer/static/theoplayer/v8/api-reference/android/com/theoplayer/android/api/source/GoogleDaiTypedSource.html b/theoplayer/static/theoplayer/v8/api-reference/android/com/theoplayer/android/api/source/GoogleDaiTypedSource.html index 2842f8a0c13..ee28eb7cfee 100644 --- a/theoplayer/static/theoplayer/v8/api-reference/android/com/theoplayer/android/api/source/GoogleDaiTypedSource.html +++ b/theoplayer/static/theoplayer/v8/api-reference/android/com/theoplayer/android/api/source/GoogleDaiTypedSource.html @@ -321,7 +321,7 @@

    Method Summary

    Methods inherited from class com.theoplayer.android.api.source.TypedSource

    - equals, getDash, getDrm, getHeaders, getHls, getLatencyConfiguration, getLiveOffset, getSrc, getSsai, getTimeServer, getType, hashCode, isHlsDateRange, isLowLatency, replaceSource
  • + equals, getDash, getDrm, getHeaders, getHls, getLatencyConfiguration, getLiveOffset, getSrc, getSsai, getTimeServer, getType, hashCode, isHlsDateRange, isLowLatency, replaceSource, replaceType
  • diff --git a/theoplayer/static/theoplayer/v8/api-reference/android/com/theoplayer/android/api/source/SourceType.html b/theoplayer/static/theoplayer/v8/api-reference/android/com/theoplayer/android/api/source/SourceType.html index ace92b4ce64..741ee479df7 100644 --- a/theoplayer/static/theoplayer/v8/api-reference/android/com/theoplayer/android/api/source/SourceType.html +++ b/theoplayer/static/theoplayer/v8/api-reference/android/com/theoplayer/android/api/source/SourceType.html @@ -273,6 +273,12 @@

    Enum Constant Summary

    The source is a HESP stream.

    + +
    MILLICAST +

    The source is a Millicast stream.

    This requires the THEOplayer Millicast integration to play.

    + +
  • diff --git a/theoplayer/static/theoplayer/v8/api-reference/android/com/theoplayer/android/api/source/TypedSource.html b/theoplayer/static/theoplayer/v8/api-reference/android/com/theoplayer/android/api/source/TypedSource.html index 7656f1fda9d..76a916bc043 100644 --- a/theoplayer/static/theoplayer/v8/api-reference/android/com/theoplayer/android/api/source/TypedSource.html +++ b/theoplayer/static/theoplayer/v8/api-reference/android/com/theoplayer/android/api/source/TypedSource.html @@ -423,6 +423,14 @@

    Method Summary

    + static TypedSource + + replaceType(TypedSource originalSource, SourceType sourceType) + + + + + boolean equals(Object o) @@ -430,7 +438,7 @@

    Method Summary

    - + int hashCode() @@ -827,6 +835,29 @@

    replaceSource

    + + + + + + + + diff --git a/theoplayer/static/theoplayer/v8/api-reference/android/com/theoplayer/android/api/source/mediatailor/MediaTailorSource.html b/theoplayer/static/theoplayer/v8/api-reference/android/com/theoplayer/android/api/source/mediatailor/MediaTailorSource.html index 4ab42cbaa90..b4abad87791 100644 --- a/theoplayer/static/theoplayer/v8/api-reference/android/com/theoplayer/android/api/source/mediatailor/MediaTailorSource.html +++ b/theoplayer/static/theoplayer/v8/api-reference/android/com/theoplayer/android/api/source/mediatailor/MediaTailorSource.html @@ -351,7 +351,7 @@

    Method Summary

    Methods inherited from class com.theoplayer.android.api.source.TypedSource

    - getDash, getDrm, getHeaders, getHls, getLatencyConfiguration, getLiveOffset, getSrc, getSsai, getTimeServer, getType, isHlsDateRange, isLowLatency, replaceSource + getDash, getDrm, getHeaders, getHls, getLatencyConfiguration, getLiveOffset, getSrc, getSsai, getTimeServer, getType, isHlsDateRange, isLowLatency, replaceSource, replaceType
  • diff --git a/theoplayer/static/theoplayer/v8/api-reference/android/element-list b/theoplayer/static/theoplayer/v8/api-reference/android/element-list index ab11f1cbbe4..e47a06e61ef 100644 --- a/theoplayer/static/theoplayer/v8/api-reference/android/element-list +++ b/theoplayer/static/theoplayer/v8/api-reference/android/element-list @@ -9,6 +9,7 @@ $dokka.location:com.theoplayer.android.api.cast/CastConfiguration.Builder///Poin $dokka.location:com.theoplayer.android.api.event.ads/AdsEventTypes.Identifiers///PointingToDeclaration/com/theoplayer/android/api/event/ads/AdsEventTypes.Identifiers.html $dokka.location:com.theoplayer.android.api.event.player/PlayerEventTypes.Identifiers///PointingToDeclaration/com/theoplayer/android/api/event/player/PlayerEventTypes.Identifiers.html $dokka.location:com.theoplayer.android.api.latency/LatencyConfiguration.Builder///PointingToDeclaration/com/theoplayer/android/api/latency/LatencyConfiguration.Builder.html +$dokka.location:com.theoplayer.android.api.media3/Media3PlayerIntegration.SourceSelectCallback///PointingToDeclaration/com/theoplayer/android/api/media3/Media3PlayerIntegration.SourceSelectCallback.html $dokka.location:com.theoplayer.android.api.pip/PipConfiguration.Builder///PointingToDeclaration/com/theoplayer/android/api/pip/PipConfiguration.Builder.html $dokka.location:com.theoplayer.android.api.player.track.texttrack.cue/DateRangeCue.CustomAttributes///PointingToDeclaration/com/theoplayer/android/api/player/track/texttrack/cue/DateRangeCue.CustomAttributes.html $dokka.location:com.theoplayer.android.api.player.track.texttrack/TextTrackStyle.EdgeType///PointingToDeclaration/com/theoplayer/android/api/player/track/texttrack/TextTrackStyle.EdgeType.html @@ -75,6 +76,7 @@ com.theoplayer.android.api.event.track.texttrack.texttrackcue com.theoplayer.android.api.event.track.tracklist com.theoplayer.android.api.fullscreen com.theoplayer.android.api.latency +com.theoplayer.android.api.media3 com.theoplayer.android.api.metrics com.theoplayer.android.api.network com.theoplayer.android.api.network.http diff --git a/theoplayer/static/theoplayer/v8/api-reference/android/index-files/index-13.html b/theoplayer/static/theoplayer/v8/api-reference/android/index-files/index-13.html index 7e046e20a06..debb1b9710b 100644 --- a/theoplayer/static/theoplayer/v8/api-reference/android/index-files/index-13.html +++ b/theoplayer/static/theoplayer/v8/api-reference/android/index-files/index-13.html @@ -328,6 +328,58 @@

    M

    This category clusters all errors related to the media.

    +
    + + + + MEDIA3 + + - enum entry in com.theoplayer.android.api.IntegrationType + + +
    +
     
    + + +
    + + + + Media3PlayerIntegration + + - class in com.theoplayer.android.api.media3 + + +
    +
    An integration for using Jetpack Media3 as the THEOplayer backend.
    + + +
    + + + + Media3PlayerIntegration.SourceSelectCallback + + - class in com.theoplayer.android.api.media3.Media3PlayerIntegration + + +
    +
    A callback that decides which sources to play using the Media3PlayerIntegration.
    + + +
    + + + + Media3PlayerIntegrationFactory + + - class in com.theoplayer.android.api.media3 + + +
    +
    Factory class for creating a Media3PlayerIntegration.
    + +
    @@ -705,6 +757,32 @@

    M

    Fired when the ad has completed playing the first half (50%).

    +
    + + + + MILLICAST + + - enum entry in com.theoplayer.android.api.IntegrationType + + +
    +
     
    + + +
    + + + + MILLICAST + + - enum entry in com.theoplayer.android.api.source.SourceType + + +
    +

    The source is a Millicast stream.

    This requires the THEOplayer Millicast integration to play.

    + +
    diff --git a/theoplayer/static/theoplayer/v8/api-reference/android/index-files/index-18.html b/theoplayer/static/theoplayer/v8/api-reference/android/index-files/index-18.html index 8fb58c7a0a7..968fe8b57d7 100644 --- a/theoplayer/static/theoplayer/v8/api-reference/android/index-files/index-18.html +++ b/theoplayer/static/theoplayer/v8/api-reference/android/index-files/index-18.html @@ -1160,6 +1160,19 @@

    R

     
    +
    + + + + replaceAdTagParameters(java.util.Map) + + - function in com.theoplayer.android.api.ads.theoads.TheoAdsIntegration + + +
    +
    Replaces all of the ad tag parameters used for upcoming ad requests for a live stream.
    + +
    @@ -1199,6 +1212,32 @@

    R

     
    +
    + + + + replaceType(com.theoplayer.android.api.source.TypedSource,com.theoplayer.android.api.source.SourceType) + + - function in com.theoplayer.android.api.source.TypedSource + + +
    +
     
    + + +
    + + + + replaceType(com.theoplayer.android.api.source.TypedSource,com.theoplayer.android.api.source.SourceType) + + - function in com.theoplayer.android.api.source.TypedSource + + +
    +
     
    + +
    diff --git a/theoplayer/static/theoplayer/v8/api-reference/android/index-files/index-3.html b/theoplayer/static/theoplayer/v8/api-reference/android/index-files/index-3.html index 796c2db034b..c7d8e7a38dd 100644 --- a/theoplayer/static/theoplayer/v8/api-reference/android/index-files/index-3.html +++ b/theoplayer/static/theoplayer/v8/api-reference/android/index-files/index-3.html @@ -575,6 +575,19 @@

    C

    Fired when CANPLAY occurs for the Player.
    +
    + + + + canPlaySource(com.theoplayer.android.api.source.TypedSource,com.theoplayer.android.api.source.SourceDescription) + + - function in com.theoplayer.android.api.media3.Media3PlayerIntegration.SourceSelectCallback + + +
    +
    Returns whether the given source should be played using the Media3PlayerIntegration.
    + +
    @@ -1824,6 +1837,17 @@

    C

     
    +
    + + com.theoplayer.android.api.media3 + + - package com.theoplayer.android.api.media3 + + +
    +
     
    + +
    com.theoplayer.android.api.metrics @@ -2870,6 +2894,19 @@

    C

    Creates a GoogleImaIntegration instance.
    +
    + + + + createMedia3PlayerIntegration(com.theoplayer.android.api.media3.Media3PlayerIntegration.SourceSelectCallback) + + - function in com.theoplayer.android.api.media3.Media3PlayerIntegrationFactory + + +
    +
    Creates a Media3PlayerIntegration instance.
    + +
    diff --git a/theoplayer/static/theoplayer/v8/api-reference/android/index-files/index-7.html b/theoplayer/static/theoplayer/v8/api-reference/android/index-files/index-7.html index e38376b477b..729416c0e0e 100644 --- a/theoplayer/static/theoplayer/v8/api-reference/android/index-files/index-7.html +++ b/theoplayer/static/theoplayer/v8/api-reference/android/index-files/index-7.html @@ -1043,6 +1043,19 @@

    G

    The source ad server information included in the ad response.
    +
    + + + + getAdTagParameters() + + - function in com.theoplayer.android.api.ads.theoads.TheoAdDescription + + +
    +
    The ad tag parameters added to the stream request.
    + +
    @@ -13042,6 +13055,19 @@

    G

     
    +
    + + + + getType() + + - function in com.theoplayer.android.api.Media3PlayerIntegration + + +
    +
     
    + +
    diff --git a/theoplayer/static/theoplayer/v8/api-reference/android/index.html b/theoplayer/static/theoplayer/v8/api-reference/android/index.html index 8f51ad19c4b..e94f0960459 100644 --- a/theoplayer/static/theoplayer/v8/api-reference/android/index.html +++ b/theoplayer/static/theoplayer/v8/api-reference/android/index.html @@ -171,51 +171,53 @@

    THEOplayer Android SDK

    com.theoplayer.android.api.latency - com.theoplayer.android.api.metrics + com.theoplayer.android.api.media3 - com.theoplayer.android.api.network + com.theoplayer.android.api.metrics - com.theoplayer.android.api.network.http + com.theoplayer.android.api.network - com.theoplayer.android.api.pip + com.theoplayer.android.api.network.http - com.theoplayer.android.api.player + com.theoplayer.android.api.pip - com.theoplayer.android.api.player.track + com.theoplayer.android.api.player - com.theoplayer.android.api.player.track.mediatrack + com.theoplayer.android.api.player.track - com.theoplayer.android.api.player.track.mediatrack.quality + com.theoplayer.android.api.player.track.mediatrack - com.theoplayer.android.api.player.track.texttrack + com.theoplayer.android.api.player.track.mediatrack.quality - com.theoplayer.android.api.player.track.texttrack.cue + com.theoplayer.android.api.player.track.texttrack - com.theoplayer.android.api.settings + com.theoplayer.android.api.player.track.texttrack.cue - com.theoplayer.android.api.source + com.theoplayer.android.api.settings - com.theoplayer.android.api.source.addescription + com.theoplayer.android.api.source - com.theoplayer.android.api.source.dash + com.theoplayer.android.api.source.addescription - com.theoplayer.android.api.source.drm + com.theoplayer.android.api.source.dash - com.theoplayer.android.api.source.drm.preintegration + com.theoplayer.android.api.source.drm - com.theoplayer.android.api.source.hls + com.theoplayer.android.api.source.drm.preintegration - com.theoplayer.android.api.source.mediatailor + com.theoplayer.android.api.source.hls - com.theoplayer.android.api.source.metadata + com.theoplayer.android.api.source.mediatailor - com.theoplayer.android.api.source.ssai + com.theoplayer.android.api.source.metadata - com.theoplayer.android.api.source.ssai.dai + com.theoplayer.android.api.source.ssai - com.theoplayer.android.api.timerange + com.theoplayer.android.api.source.ssai.dai - com.theoplayer.android.api.util + com.theoplayer.android.api.timerange + + com.theoplayer.android.api.util diff --git a/theoplayer/static/theoplayer/v8/api-reference/android/member-search-index.js b/theoplayer/static/theoplayer/v8/api-reference/android/member-search-index.js index 071908061b3..b3ff241e1de 100644 --- a/theoplayer/static/theoplayer/v8/api-reference/android/member-search-index.js +++ b/theoplayer/static/theoplayer/v8/api-reference/android/member-search-index.js @@ -1 +1 @@ -var memberSearchIndex = [{"p":"com.theoplayer.android.api.cast","c":"CastConfiguration.Builder","l":"CastConfiguration.Builder()","url":"com/theoplayer/android/api/cast/CastConfiguration.Builder.html#CastConfiguration.Builder()"}, {"p":"com.theoplayer.android.api.cast","c":"CastConfiguration.Builder","l":"castStrategy(CastStrategy)","url":"com/theoplayer/android/api/cast/CastConfiguration.Builder.html#castStrategy(com.theoplayer.android.api.cast.CastStrategy)"}, {"p":"com.theoplayer.android.api.cast","c":"CastConfiguration.Builder","l":"build()","url":"com/theoplayer/android/api/cast/CastConfiguration.Builder.html#build()"}, {"p":"com.theoplayer.android.api.cast","c":"CastConfiguration","l":"getCastStrategy()","url":"com/theoplayer/android/api/cast/CastConfiguration.html#getCastStrategy()"}, {"p":"com.theoplayer.android.api.cast","c":"CastIntegration","l":"isCasting()","url":"com/theoplayer/android/api/cast/CastIntegration.html#isCasting()"}, {"p":"com.theoplayer.android.api.cast","c":"CastIntegration","l":"getError()","url":"com/theoplayer/android/api/cast/CastIntegration.html#getError()"}, {"p":"com.theoplayer.android.api.cast","c":"CastIntegration","l":"getReceiverName()","url":"com/theoplayer/android/api/cast/CastIntegration.html#getReceiverName()"}, {"p":"com.theoplayer.android.api.cast","c":"CastIntegration","l":"getState()","url":"com/theoplayer/android/api/cast/CastIntegration.html#getState()"}, {"p":"com.theoplayer.android.api.cast","c":"CastIntegration","l":"start()","url":"com/theoplayer/android/api/cast/CastIntegration.html#start()"}, {"p":"com.theoplayer.android.api.cast","c":"CastIntegration","l":"join()","url":"com/theoplayer/android/api/cast/CastIntegration.html#join()"}, {"p":"com.theoplayer.android.api.cast","c":"CastIntegration","l":"leave()","url":"com/theoplayer/android/api/cast/CastIntegration.html#leave()"}, {"p":"com.theoplayer.android.api.cast","c":"CastIntegration","l":"stop()","url":"com/theoplayer/android/api/cast/CastIntegration.html#stop()"}, {"p":"com.theoplayer.android.api.cast","c":"CastIntegration","l":"setConnectionCallback(ChromecastConnectionCallback)","url":"com/theoplayer/android/api/cast/CastIntegration.html#setConnectionCallback(com.theoplayer.android.api.cast.chromecast.ChromecastConnectionCallback)"}, {"p":"com.theoplayer.android.api.cast","c":"CastIntegrationFactory","l":"createCastIntegration(THEOplayerView, CastConfiguration)","url":"com/theoplayer/android/api/cast/CastIntegrationFactory.html#createCastIntegration(com.theoplayer.android.api.THEOplayerView,com.theoplayer.android.api.cast.CastConfiguration)"}, {"p":"com.theoplayer.android.api.cast","c":"Cast","l":"getChromecast()","url":"com/theoplayer/android/api/cast/Cast.html#getChromecast()"}, {"p":"com.theoplayer.android.api.cast","c":"Cast","l":"isCasting()","url":"com/theoplayer/android/api/cast/Cast.html#isCasting()"}, {"p":"com.theoplayer.android.api.cast","c":"GlobalCast","l":"getChromeCast()","url":"com/theoplayer/android/api/cast/GlobalCast.html#getChromeCast()"}, {"p":"com.theoplayer.android.api.cast","c":"CastStrategy","l":"values()","url":"com/theoplayer/android/api/cast/CastStrategy.html#values()"}, {"p":"com.theoplayer.android.api.cast","c":"CastStrategy","l":"valueOf(String)","url":"com/theoplayer/android/api/cast/CastStrategy.html#valueOf(java.lang.String)"}, {"p":"com.theoplayer.android.api.fullscreen","c":"IntentCreationListener","l":"onCreateIntent(Intent)","url":"com/theoplayer/android/api/fullscreen/IntentCreationListener.html#onCreateIntent(android.content.Intent)"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"FullScreenActivity()","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#FullScreenActivity()"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"getFullScreenVisibilityFlags()","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#getFullScreenVisibilityFlags()"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"getTHEOplayerView()","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#getTHEOplayerView()"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenManager","l":"setFullScreenOrientationCoupled(boolean)","url":"com/theoplayer/android/api/fullscreen/FullScreenManager.html#setFullScreenOrientationCoupled(boolean)"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenManager","l":"isFullScreenOrientationCoupled()","url":"com/theoplayer/android/api/fullscreen/FullScreenManager.html#isFullScreenOrientationCoupled()"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenManager","l":"setFullscreenOrientation(int)","url":"com/theoplayer/android/api/fullscreen/FullScreenManager.html#setFullscreenOrientation(int)"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenManager","l":"getFullscreenOrientation()","url":"com/theoplayer/android/api/fullscreen/FullScreenManager.html#getFullscreenOrientation()"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenManager","l":"requestFullScreen()","url":"com/theoplayer/android/api/fullscreen/FullScreenManager.html#requestFullScreen()"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenManager","l":"exitFullScreen()","url":"com/theoplayer/android/api/fullscreen/FullScreenManager.html#exitFullScreen()"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenManager","l":"isFullScreen()","url":"com/theoplayer/android/api/fullscreen/FullScreenManager.html#isFullScreen()"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenManager","l":"isFullScreenToggleInProgress()","url":"com/theoplayer/android/api/fullscreen/FullScreenManager.html#isFullScreenToggleInProgress()"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenManager","l":"setFullscreenActivity(Class)","url":"com/theoplayer/android/api/fullscreen/FullScreenManager.html#setFullscreenActivity(java.lang.Class)"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenManager","l":"getFullscreenActivity()","url":"com/theoplayer/android/api/fullscreen/FullScreenManager.html#getFullscreenActivity()"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenManager","l":"addFullScreenChangeListener(FullScreenChangeListener)","url":"com/theoplayer/android/api/fullscreen/FullScreenManager.html#addFullScreenChangeListener(com.theoplayer.android.api.fullscreen.FullScreenChangeListener)"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenManager","l":"removeFullScreenChangeListener(FullScreenChangeListener)","url":"com/theoplayer/android/api/fullscreen/FullScreenManager.html#removeFullScreenChangeListener(com.theoplayer.android.api.fullscreen.FullScreenChangeListener)"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenManager","l":"addFullScreenIntentCreationListener(IntentCreationListener)","url":"com/theoplayer/android/api/fullscreen/FullScreenManager.html#addFullScreenIntentCreationListener(com.theoplayer.android.api.fullscreen.IntentCreationListener)"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenManager","l":"removeFullScreenIntentCreationListener(IntentCreationListener)","url":"com/theoplayer/android/api/fullscreen/FullScreenManager.html#removeFullScreenIntentCreationListener(com.theoplayer.android.api.fullscreen.IntentCreationListener)"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenChangeListener","l":"onEnterFullScreen()","url":"com/theoplayer/android/api/fullscreen/FullScreenChangeListener.html#onEnterFullScreen()"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenChangeListener","l":"onExitFullScreen()","url":"com/theoplayer/android/api/fullscreen/FullScreenChangeListener.html#onExitFullScreen()"}, {"p":"com.theoplayer.android.api.pip","c":"PiPManager","l":"enterPiP(PiPType)","url":"com/theoplayer/android/api/pip/PiPManager.html#enterPiP(com.theoplayer.android.api.pip.PiPType)"}, {"p":"com.theoplayer.android.api.pip","c":"PiPManager","l":"exitPiP()","url":"com/theoplayer/android/api/pip/PiPManager.html#exitPiP()"}, {"p":"com.theoplayer.android.api.pip","c":"PiPManager","l":"isInPiP()","url":"com/theoplayer/android/api/pip/PiPManager.html#isInPiP()"}, {"p":"com.theoplayer.android.api.pip","c":"PiPType","l":"values()","url":"com/theoplayer/android/api/pip/PiPType.html#values()"}, {"p":"com.theoplayer.android.api.pip","c":"PiPType","l":"valueOf(String)","url":"com/theoplayer/android/api/pip/PiPType.html#valueOf(java.lang.String)"}, {"p":"com.theoplayer.android.api.pip","c":"PipConfiguration.Builder","l":"PipConfiguration.Builder()","url":"com/theoplayer/android/api/pip/PipConfiguration.Builder.html#PipConfiguration.Builder()"}, {"p":"com.theoplayer.android.api.pip","c":"PipConfiguration.Builder","l":"build()","url":"com/theoplayer/android/api/pip/PipConfiguration.Builder.html#build()"}, {"p":"com.theoplayer.android.api.event.cache.task","c":"CachingTaskEventTypes","l":"getName()","url":"com/theoplayer/android/api/event/cache/task/CachingTaskEventTypes.html#getName()"}, {"p":"com.theoplayer.android.api.event.cache.task","c":"CachingTaskErrorEvent","l":"getError()","url":"com/theoplayer/android/api/event/cache/task/CachingTaskErrorEvent.html#getError()"}, {"p":"com.theoplayer.android.api.event.cache.task","c":"CachingTaskStateChangeEvent","l":"getStatus()","url":"com/theoplayer/android/api/event/cache/task/CachingTaskStateChangeEvent.html#getStatus()"}, {"p":"com.theoplayer.android.api.event.cache.task","c":"CachingTaskProgressEvent","l":"getProgress()","url":"com/theoplayer/android/api/event/cache/task/CachingTaskProgressEvent.html#getProgress()"}, {"p":"com.theoplayer.android.api.event.cache","c":"CacheEventTypes","l":"CacheEventTypes(String)","url":"com/theoplayer/android/api/event/cache/CacheEventTypes.html#CacheEventTypes(java.lang.String)"}, {"p":"com.theoplayer.android.api.event.cache","c":"CacheEventTypes","l":"getName()","url":"com/theoplayer/android/api/event/cache/CacheEventTypes.html#getName()"}, {"p":"com.theoplayer.android.api.event.cache","c":"CacheStateChangeEvent","l":"getStatus()","url":"com/theoplayer/android/api/event/cache/CacheStateChangeEvent.html#getStatus()"}, {"p":"com.theoplayer.android.api.event.cache.tasklist","c":"CachingTaskListEventTypes","l":"getName()","url":"com/theoplayer/android/api/event/cache/tasklist/CachingTaskListEventTypes.html#getName()"}, {"p":"com.theoplayer.android.api.event.cache.tasklist","c":"CachingTaskListEvent","l":"getTask()","url":"com/theoplayer/android/api/event/cache/tasklist/CachingTaskListEvent.html#getTask()"}, {"p":"com.theoplayer.android.api.event.chromecast","c":"CastStateChangeEvent","l":"getState()","url":"com/theoplayer/android/api/event/chromecast/CastStateChangeEvent.html#getState()"}, {"p":"com.theoplayer.android.api.event.chromecast","c":"ChromecastEventTypes","l":"ChromecastEventTypes()","url":"com/theoplayer/android/api/event/chromecast/ChromecastEventTypes.html#ChromecastEventTypes()"}, {"p":"com.theoplayer.android.api.event.chromecast","c":"CastErrorEvent","l":"getError()","url":"com/theoplayer/android/api/event/chromecast/CastErrorEvent.html#getError()"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"THEOplayerView(Context, AttributeSet, THEOplayerConfig)","url":"com/theoplayer/android/api/THEOplayerView.html#THEOplayerView(android.content.Context,android.util.AttributeSet,com.theoplayer.android.api.THEOplayerConfig)"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"THEOplayerView(Context, AttributeSet)","url":"com/theoplayer/android/api/THEOplayerView.html#THEOplayerView(android.content.Context,android.util.AttributeSet)"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"THEOplayerView(Context)","url":"com/theoplayer/android/api/THEOplayerView.html#THEOplayerView(android.content.Context)"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"THEOplayerView(Context, THEOplayerConfig)","url":"com/theoplayer/android/api/THEOplayerView.html#THEOplayerView(android.content.Context,com.theoplayer.android.api.THEOplayerConfig)"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"getGlobalCast(Activity)","url":"com/theoplayer/android/api/THEOplayerView.html#getGlobalCast(android.app.Activity)"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"getFullScreenManager()","url":"com/theoplayer/android/api/THEOplayerView.html#getFullScreenManager()"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"getPiPManager()","url":"com/theoplayer/android/api/THEOplayerView.html#getPiPManager()"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"getPresentationMode()","url":"com/theoplayer/android/api/THEOplayerView.html#getPresentationMode()"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"getPlayer()","url":"com/theoplayer/android/api/THEOplayerView.html#getPlayer()"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"getCast()","url":"com/theoplayer/android/api/THEOplayerView.html#getCast()"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"getVersion()","url":"com/theoplayer/android/api/THEOplayerView.html#getVersion()"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"getSettings()","url":"com/theoplayer/android/api/THEOplayerView.html#getSettings()"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"onPause()","url":"com/theoplayer/android/api/THEOplayerView.html#onPause()"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"onResume()","url":"com/theoplayer/android/api/THEOplayerView.html#onResume()"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"onDestroy()","url":"com/theoplayer/android/api/THEOplayerView.html#onDestroy()"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"isDestroyed()","url":"com/theoplayer/android/api/THEOplayerView.html#isDestroyed()"}, {"p":"com.theoplayer.android.api","c":"THEOplayerSettings","l":"setAllowBackgroundPlayback(boolean)","url":"com/theoplayer/android/api/THEOplayerSettings.html#setAllowBackgroundPlayback(boolean)"}, {"p":"com.theoplayer.android.api","c":"THEOplayerSettings","l":"allowBackgroundPlayback()","url":"com/theoplayer/android/api/THEOplayerSettings.html#allowBackgroundPlayback()"}, {"p":"com.theoplayer.android.api","c":"THEOplayerGlobal","l":"THEOplayerGlobal()","url":"com/theoplayer/android/api/THEOplayerGlobal.html#THEOplayerGlobal()"}, {"p":"com.theoplayer.android.api","c":"THEOplayerGlobal","l":"getSharedInstance(Context)","url":"com/theoplayer/android/api/THEOplayerGlobal.html#getSharedInstance(android.content.Context)"}, {"p":"com.theoplayer.android.api","c":"THEOplayerGlobal","l":"getCache()","url":"com/theoplayer/android/api/THEOplayerGlobal.html#getCache()"}, {"p":"com.theoplayer.android.api","c":"THEOplayerGlobal","l":"getSsl()","url":"com/theoplayer/android/api/THEOplayerGlobal.html#getSsl()"}, {"p":"com.theoplayer.android.api","c":"THEOplayerGlobal","l":"getPlaybackSettings()","url":"com/theoplayer/android/api/THEOplayerGlobal.html#getPlaybackSettings()"}, {"p":"com.theoplayer.android.api","c":"THEOplayerGlobal","l":"setApplicationInstance(Application)","url":"com/theoplayer/android/api/THEOplayerGlobal.html#setApplicationInstance(android.app.Application)"}, {"p":"com.theoplayer.android.api","c":"THEOplayerGlobal","l":"registerContentProtectionIntegration(String, KeySystemId, ContentProtectionIntegrationFactory)","url":"com/theoplayer/android/api/THEOplayerGlobal.html#registerContentProtectionIntegration(java.lang.String,com.theoplayer.android.api.contentprotection.KeySystemId,com.theoplayer.android.api.contentprotection.ContentProtectionIntegrationFactory)"}, {"p":"com.theoplayer.android.api","c":"THEOplayerGlobal","l":"getVersion()","url":"com/theoplayer/android/api/THEOplayerGlobal.html#getVersion()"}, {"p":"com.theoplayer.android.api","c":"THEOplayerDestroyedException","l":"THEOplayerDestroyedException()","url":"com/theoplayer/android/api/THEOplayerDestroyedException.html#THEOplayerDestroyedException()"}, {"p":"com.theoplayer.android.api","c":"THEOplayerConfig.Builder","l":"THEOplayerConfig.Builder()","url":"com/theoplayer/android/api/THEOplayerConfig.Builder.html#THEOplayerConfig.Builder()"}, {"p":"com.theoplayer.android.api","c":"THEOplayerConfig.Builder","l":"multiSession(boolean)","url":"com/theoplayer/android/api/THEOplayerConfig.Builder.html#multiSession(boolean)"}, {"p":"com.theoplayer.android.api","c":"THEOplayerConfig.Builder","l":"liveOffset(double)","url":"com/theoplayer/android/api/THEOplayerConfig.Builder.html#liveOffset(double)"}, {"p":"com.theoplayer.android.api","c":"THEOplayerConfig.Builder","l":"hlsDateRange(boolean)","url":"com/theoplayer/android/api/THEOplayerConfig.Builder.html#hlsDateRange(boolean)"}, {"p":"com.theoplayer.android.api","c":"THEOplayerConfig.Builder","l":"license(String)","url":"com/theoplayer/android/api/THEOplayerConfig.Builder.html#license(java.lang.String)"}, {"p":"com.theoplayer.android.api","c":"THEOplayerConfig.Builder","l":"licenseUrl(String)","url":"com/theoplayer/android/api/THEOplayerConfig.Builder.html#licenseUrl(java.lang.String)"}, {"p":"com.theoplayer.android.api","c":"THEOplayerConfig.Builder","l":"pipConfiguration(PipConfiguration)","url":"com/theoplayer/android/api/THEOplayerConfig.Builder.html#pipConfiguration(com.theoplayer.android.api.pip.PipConfiguration)"}, {"p":"com.theoplayer.android.api","c":"THEOplayerConfig.Builder","l":"networkConfiguration(NetworkConfiguration)","url":"com/theoplayer/android/api/THEOplayerConfig.Builder.html#networkConfiguration(com.theoplayer.android.api.player.NetworkConfiguration)"}, {"p":"com.theoplayer.android.api","c":"THEOplayerConfig.Builder","l":"build()","url":"com/theoplayer/android/api/THEOplayerConfig.Builder.html#build()"}, {"p":"com.theoplayer.android.api","c":"THEOplayerConfig","l":"isMultiSession()","url":"com/theoplayer/android/api/THEOplayerConfig.html#isMultiSession()"}, {"p":"com.theoplayer.android.api","c":"THEOplayerConfig","l":"getLiveOffset()","url":"com/theoplayer/android/api/THEOplayerConfig.html#getLiveOffset()"}, {"p":"com.theoplayer.android.api","c":"THEOplayerConfig","l":"isHlsDateRange()","url":"com/theoplayer/android/api/THEOplayerConfig.html#isHlsDateRange()"}, {"p":"com.theoplayer.android.api","c":"THEOplayerConfig","l":"getLicense()","url":"com/theoplayer/android/api/THEOplayerConfig.html#getLicense()"}, {"p":"com.theoplayer.android.api","c":"THEOplayerConfig","l":"getLicenseUrl()","url":"com/theoplayer/android/api/THEOplayerConfig.html#getLicenseUrl()"}, {"p":"com.theoplayer.android.api","c":"THEOplayerConfig","l":"getPipConfiguration()","url":"com/theoplayer/android/api/THEOplayerConfig.html#getPipConfiguration()"}, {"p":"com.theoplayer.android.api","c":"THEOplayerConfig","l":"getNetworkConfiguration()","url":"com/theoplayer/android/api/THEOplayerConfig.html#getNetworkConfiguration()"}, {"p":"com.theoplayer.android.api","c":"IntegrationType","l":"values()","url":"com/theoplayer/android/api/IntegrationType.html#values()"}, {"p":"com.theoplayer.android.api","c":"IntegrationType","l":"valueOf(String)","url":"com/theoplayer/android/api/IntegrationType.html#valueOf(java.lang.String)"}, {"p":"com.theoplayer.android.api","c":"Integration","l":"getType()","url":"com/theoplayer/android/api/Integration.html#getType()"}, {"p":"com.theoplayer.android.api.util","c":"CollectionUtils","l":"CollectionUtils()","url":"com/theoplayer/android/api/util/CollectionUtils.html#CollectionUtils()"}, {"p":"com.theoplayer.android.api.util","c":"CollectionUtils","l":"getFromCollectionByIndex(Collection, int)","url":"com/theoplayer/android/api/util/CollectionUtils.html#getFromCollectionByIndex(java.util.Collection,int)"}, {"p":"com.theoplayer.android.api.util","c":"SimpleList","l":"length()","url":"com/theoplayer/android/api/util/SimpleList.html#length()"}, {"p":"com.theoplayer.android.api.util","c":"SimpleList","l":"getItem(int)","url":"com/theoplayer/android/api/util/SimpleList.html#getItem(int)"}, {"p":"com.theoplayer.android.api.util","c":"JavaCallback","l":"onSuccess(T)","url":"com/theoplayer/android/api/util/JavaCallback.html#onSuccess(T)"}, {"p":"com.theoplayer.android.api.util","c":"JavaCallback","l":"onError(Throwable)","url":"com/theoplayer/android/api/util/JavaCallback.html#onError(java.lang.Throwable)"}, {"p":"com.theoplayer.android.api.cast.chromecast","c":"ErrorCode","l":"values()","url":"com/theoplayer/android/api/cast/chromecast/ErrorCode.html#values()"}, {"p":"com.theoplayer.android.api.cast.chromecast","c":"ErrorCode","l":"valueOf(String)","url":"com/theoplayer/android/api/cast/chromecast/ErrorCode.html#valueOf(java.lang.String)"}, {"p":"com.theoplayer.android.api.cast.chromecast","c":"DefaultCastOptionsProvider","l":"DefaultCastOptionsProvider()","url":"com/theoplayer/android/api/cast/chromecast/DefaultCastOptionsProvider.html#DefaultCastOptionsProvider()"}, {"p":"com.theoplayer.android.api.cast.chromecast","c":"DefaultCastOptionsProvider","l":"getCastOptions(Context)","url":"com/theoplayer/android/api/cast/chromecast/DefaultCastOptionsProvider.html#getCastOptions(android.content.Context)"}, {"p":"com.theoplayer.android.api.cast.chromecast","c":"DefaultCastOptionsProvider","l":"getAdditionalSessionProviders(Context)","url":"com/theoplayer/android/api/cast/chromecast/DefaultCastOptionsProvider.html#getAdditionalSessionProviders(android.content.Context)"}, {"p":"com.theoplayer.android.api.cast.chromecast","c":"Chromecast","l":"isCasting()","url":"com/theoplayer/android/api/cast/chromecast/Chromecast.html#isCasting()"}, {"p":"com.theoplayer.android.api.cast.chromecast","c":"Chromecast","l":"getError()","url":"com/theoplayer/android/api/cast/chromecast/Chromecast.html#getError()"}, {"p":"com.theoplayer.android.api.cast.chromecast","c":"Chromecast","l":"getReceiverName()","url":"com/theoplayer/android/api/cast/chromecast/Chromecast.html#getReceiverName()"}, {"p":"com.theoplayer.android.api.cast.chromecast","c":"Chromecast","l":"getState()","url":"com/theoplayer/android/api/cast/chromecast/Chromecast.html#getState()"}, {"p":"com.theoplayer.android.api.cast.chromecast","c":"Chromecast","l":"start()","url":"com/theoplayer/android/api/cast/chromecast/Chromecast.html#start()"}, {"p":"com.theoplayer.android.api.cast.chromecast","c":"Chromecast","l":"join()","url":"com/theoplayer/android/api/cast/chromecast/Chromecast.html#join()"}, {"p":"com.theoplayer.android.api.cast.chromecast","c":"Chromecast","l":"leave()","url":"com/theoplayer/android/api/cast/chromecast/Chromecast.html#leave()"}, {"p":"com.theoplayer.android.api.cast.chromecast","c":"Chromecast","l":"stop()","url":"com/theoplayer/android/api/cast/chromecast/Chromecast.html#stop()"}, {"p":"com.theoplayer.android.api.cast.chromecast","c":"Chromecast","l":"setConnectionCallback(ChromecastConnectionCallback)","url":"com/theoplayer/android/api/cast/chromecast/Chromecast.html#setConnectionCallback(com.theoplayer.android.api.cast.chromecast.ChromecastConnectionCallback)"}, {"p":"com.theoplayer.android.api.cast.chromecast","c":"CastError","l":"CastError(ErrorCode, String)","url":"com/theoplayer/android/api/cast/chromecast/CastError.html#CastError(com.theoplayer.android.api.cast.chromecast.ErrorCode,java.lang.String)"}, {"p":"com.theoplayer.android.api.cast.chromecast","c":"CastError","l":"getErrorCode()","url":"com/theoplayer/android/api/cast/chromecast/CastError.html#getErrorCode()"}, {"p":"com.theoplayer.android.api.cast.chromecast","c":"CastError","l":"getDescription()","url":"com/theoplayer/android/api/cast/chromecast/CastError.html#getDescription()"}, {"p":"com.theoplayer.android.api.cast.chromecast","c":"CastError","l":"toString()","url":"com/theoplayer/android/api/cast/chromecast/CastError.html#toString()"}, {"p":"com.theoplayer.android.api.cast.chromecast","c":"PlayerCastState","l":"values()","url":"com/theoplayer/android/api/cast/chromecast/PlayerCastState.html#values()"}, {"p":"com.theoplayer.android.api.cast.chromecast","c":"PlayerCastState","l":"valueOf(String)","url":"com/theoplayer/android/api/cast/chromecast/PlayerCastState.html#valueOf(java.lang.String)"}, {"p":"com.theoplayer.android.api.cast.chromecast","c":"ChromecastConnectionCallback","l":"onStart(SourceDescription)","url":"com/theoplayer/android/api/cast/chromecast/ChromecastConnectionCallback.html#onStart(com.theoplayer.android.api.source.SourceDescription)"}, {"p":"com.theoplayer.android.api.cast.chromecast","c":"ChromecastConnectionCallback","l":"onStop(SourceDescription)","url":"com/theoplayer/android/api/cast/chromecast/ChromecastConnectionCallback.html#onStop(com.theoplayer.android.api.source.SourceDescription)"}, {"p":"com.theoplayer.android.api.cast.chromecast","c":"ChromecastConnectionCallback","l":"onJoin(SourceDescription)","url":"com/theoplayer/android/api/cast/chromecast/ChromecastConnectionCallback.html#onJoin(com.theoplayer.android.api.source.SourceDescription)"}, {"p":"com.theoplayer.android.api.cast.chromecast","c":"ChromecastConnectionCallback","l":"onLeave(SourceDescription)","url":"com/theoplayer/android/api/cast/chromecast/ChromecastConnectionCallback.html#onLeave(com.theoplayer.android.api.source.SourceDescription)"}, {"p":"com.theoplayer.android.api.cast.chromecast","c":"GlobalChromecast","l":"startSession()","url":"com/theoplayer/android/api/cast/chromecast/GlobalChromecast.html#startSession()"}, {"p":"com.theoplayer.android.api.cast.chromecast","c":"GlobalChromecast","l":"stopSession()","url":"com/theoplayer/android/api/cast/chromecast/GlobalChromecast.html#stopSession()"}, {"p":"com.theoplayer.android.api.ads","c":"GoogleImaAd","l":"getImaAd()","url":"com/theoplayer/android/api/ads/GoogleImaAd.html#getImaAd()"}, {"p":"com.theoplayer.android.api.ads","c":"GoogleImaAd","l":"getAdSystem()","url":"com/theoplayer/android/api/ads/GoogleImaAd.html#getAdSystem()"}, {"p":"com.theoplayer.android.api.ads","c":"GoogleImaAd","l":"getCreativeId()","url":"com/theoplayer/android/api/ads/GoogleImaAd.html#getCreativeId()"}, {"p":"com.theoplayer.android.api.ads","c":"GoogleImaAd","l":"getWrapperAdIds()","url":"com/theoplayer/android/api/ads/GoogleImaAd.html#getWrapperAdIds()"}, {"p":"com.theoplayer.android.api.ads","c":"GoogleImaAd","l":"getWrapperAdSystems()","url":"com/theoplayer/android/api/ads/GoogleImaAd.html#getWrapperAdSystems()"}, {"p":"com.theoplayer.android.api.ads","c":"GoogleImaAd","l":"getWrapperCreativeIds()","url":"com/theoplayer/android/api/ads/GoogleImaAd.html#getWrapperCreativeIds()"}, {"p":"com.theoplayer.android.api.ads","c":"GoogleImaAd","l":"getVastMediaBitrate()","url":"com/theoplayer/android/api/ads/GoogleImaAd.html#getVastMediaBitrate()"}, {"p":"com.theoplayer.android.api.ads","c":"GoogleImaAd","l":"getUniversalAdIds()","url":"com/theoplayer/android/api/ads/GoogleImaAd.html#getUniversalAdIds()"}, {"p":"com.theoplayer.android.api.ads","c":"GoogleImaAd","l":"getTraffickingParameters()","url":"com/theoplayer/android/api/ads/GoogleImaAd.html#getTraffickingParameters()"}, {"p":"com.theoplayer.android.api.ads","c":"Ad","l":"getId()","url":"com/theoplayer/android/api/ads/Ad.html#getId()"}, {"p":"com.theoplayer.android.api.ads","c":"Ad","l":"getCompanions()","url":"com/theoplayer/android/api/ads/Ad.html#getCompanions()"}, {"p":"com.theoplayer.android.api.ads","c":"Ad","l":"getType()","url":"com/theoplayer/android/api/ads/Ad.html#getType()"}, {"p":"com.theoplayer.android.api.ads","c":"Ad","l":"getAdBreak()","url":"com/theoplayer/android/api/ads/Ad.html#getAdBreak()"}, {"p":"com.theoplayer.android.api.ads","c":"Ad","l":"getSkipOffset()","url":"com/theoplayer/android/api/ads/Ad.html#getSkipOffset()"}, {"p":"com.theoplayer.android.api.ads","c":"Ad","l":"getIntegration()","url":"com/theoplayer/android/api/ads/Ad.html#getIntegration()"}, {"p":"com.theoplayer.android.api.ads","c":"Ad","l":"getCustomIntegration()","url":"com/theoplayer/android/api/ads/Ad.html#getCustomIntegration()"}, {"p":"com.theoplayer.android.api.ads","c":"Ad","l":"getCustomData()","url":"com/theoplayer/android/api/ads/Ad.html#getCustomData()"}, {"p":"com.theoplayer.android.api.ads","c":"LinearAd","l":"getDuration()","url":"com/theoplayer/android/api/ads/LinearAd.html#getDuration()"}, {"p":"com.theoplayer.android.api.ads","c":"LinearAd","l":"getMediaFiles()","url":"com/theoplayer/android/api/ads/LinearAd.html#getMediaFiles()"}, {"p":"com.theoplayer.android.api.ads","c":"OmidFriendlyObstructionPurpose","l":"values()","url":"com/theoplayer/android/api/ads/OmidFriendlyObstructionPurpose.html#values()"}, {"p":"com.theoplayer.android.api.ads","c":"OmidFriendlyObstructionPurpose","l":"valueOf(String)","url":"com/theoplayer/android/api/ads/OmidFriendlyObstructionPurpose.html#valueOf(java.lang.String)"}, {"p":"com.theoplayer.android.api.ads","c":"AdBreak","l":"getAds()","url":"com/theoplayer/android/api/ads/AdBreak.html#getAds()"}, {"p":"com.theoplayer.android.api.ads","c":"AdBreak","l":"getMaxDuration()","url":"com/theoplayer/android/api/ads/AdBreak.html#getMaxDuration()"}, {"p":"com.theoplayer.android.api.ads","c":"AdBreak","l":"getMaxRemainingDuration()","url":"com/theoplayer/android/api/ads/AdBreak.html#getMaxRemainingDuration()"}, {"p":"com.theoplayer.android.api.ads","c":"AdBreak","l":"getTimeOffset()","url":"com/theoplayer/android/api/ads/AdBreak.html#getTimeOffset()"}, {"p":"com.theoplayer.android.api.ads","c":"AdBreak","l":"getIntegration()","url":"com/theoplayer/android/api/ads/AdBreak.html#getIntegration()"}, {"p":"com.theoplayer.android.api.ads","c":"AdBreak","l":"getCustomIntegration()","url":"com/theoplayer/android/api/ads/AdBreak.html#getCustomIntegration()"}, {"p":"com.theoplayer.android.api.ads","c":"AdBreak","l":"getCustomData()","url":"com/theoplayer/android/api/ads/AdBreak.html#getCustomData()"}, {"p":"com.theoplayer.android.api.ads","c":"Omid","l":"addFriendlyObstruction(OmidFriendlyObstruction)","url":"com/theoplayer/android/api/ads/Omid.html#addFriendlyObstruction(com.theoplayer.android.api.ads.OmidFriendlyObstruction)"}, {"p":"com.theoplayer.android.api.ads","c":"Omid","l":"removeAllFriendlyObstructions()","url":"com/theoplayer/android/api/ads/Omid.html#removeAllFriendlyObstructions()"}, {"p":"com.theoplayer.android.api.ads","c":"Ads","l":"isPlaying()","url":"com/theoplayer/android/api/ads/Ads.html#isPlaying()"}, {"p":"com.theoplayer.android.api.ads","c":"Ads","l":"getCurrentAds()","url":"com/theoplayer/android/api/ads/Ads.html#getCurrentAds()"}, {"p":"com.theoplayer.android.api.ads","c":"Ads","l":"getCurrentAdBreak()","url":"com/theoplayer/android/api/ads/Ads.html#getCurrentAdBreak()"}, {"p":"com.theoplayer.android.api.ads","c":"Ads","l":"getScheduledAds()","url":"com/theoplayer/android/api/ads/Ads.html#getScheduledAds()"}, {"p":"com.theoplayer.android.api.ads","c":"Ads","l":"schedule(AdDescription)","url":"com/theoplayer/android/api/ads/Ads.html#schedule(com.theoplayer.android.api.source.addescription.AdDescription)"}, {"p":"com.theoplayer.android.api.ads","c":"Ads","l":"skip()","url":"com/theoplayer/android/api/ads/Ads.html#skip()"}, {"p":"com.theoplayer.android.api.ads","c":"Ads","l":"getOmid()","url":"com/theoplayer/android/api/ads/Ads.html#getOmid()"}, {"p":"com.theoplayer.android.api.ads","c":"Ads","l":"registerServerSideIntegration(String, ServerSideAdIntegrationFactory)","url":"com/theoplayer/android/api/ads/Ads.html#registerServerSideIntegration(java.lang.String,com.theoplayer.android.api.ads.ServerSideAdIntegrationFactory)"}, {"p":"com.theoplayer.android.api.ads","c":"UniversalAdId","l":"getUniversalAdIdRegistry()","url":"com/theoplayer/android/api/ads/UniversalAdId.html#getUniversalAdIdRegistry()"}, {"p":"com.theoplayer.android.api.ads","c":"UniversalAdId","l":"getUniversalAdIdValue()","url":"com/theoplayer/android/api/ads/UniversalAdId.html#getUniversalAdIdValue()"}, {"p":"com.theoplayer.android.api.ads","c":"NonLinearAd","l":"getClickThrough()","url":"com/theoplayer/android/api/ads/NonLinearAd.html#getClickThrough()"}, {"p":"com.theoplayer.android.api.ads","c":"NonLinearAd","l":"getResourceURI()","url":"com/theoplayer/android/api/ads/NonLinearAd.html#getResourceURI()"}, {"p":"com.theoplayer.android.api.ads","c":"CompanionAd","l":"getAdSlotId()","url":"com/theoplayer/android/api/ads/CompanionAd.html#getAdSlotId()"}, {"p":"com.theoplayer.android.api.ads","c":"CompanionAd","l":"getAltText()","url":"com/theoplayer/android/api/ads/CompanionAd.html#getAltText()"}, {"p":"com.theoplayer.android.api.ads","c":"CompanionAd","l":"getClickThrough()","url":"com/theoplayer/android/api/ads/CompanionAd.html#getClickThrough()"}, {"p":"com.theoplayer.android.api.ads","c":"CompanionAd","l":"getHeight()","url":"com/theoplayer/android/api/ads/CompanionAd.html#getHeight()"}, {"p":"com.theoplayer.android.api.ads","c":"CompanionAd","l":"getResourceURI()","url":"com/theoplayer/android/api/ads/CompanionAd.html#getResourceURI()"}, {"p":"com.theoplayer.android.api.ads","c":"CompanionAd","l":"getWidth()","url":"com/theoplayer/android/api/ads/CompanionAd.html#getWidth()"}, {"p":"com.theoplayer.android.api.ads","c":"CompanionAd","l":"getType()","url":"com/theoplayer/android/api/ads/CompanionAd.html#getType()"}, {"p":"com.theoplayer.android.api.ads","c":"OmidFriendlyObstruction","l":"OmidFriendlyObstruction(View, OmidFriendlyObstructionPurpose, String)","url":"com/theoplayer/android/api/ads/OmidFriendlyObstruction.html#OmidFriendlyObstruction(android.view.View,com.theoplayer.android.api.ads.OmidFriendlyObstructionPurpose,java.lang.String)"}, {"p":"com.theoplayer.android.api.ads","c":"OmidFriendlyObstruction","l":"getView()","url":"com/theoplayer/android/api/ads/OmidFriendlyObstruction.html#getView()"}, {"p":"com.theoplayer.android.api.ads","c":"OmidFriendlyObstruction","l":"getPurpose()","url":"com/theoplayer/android/api/ads/OmidFriendlyObstruction.html#getPurpose()"}, {"p":"com.theoplayer.android.api.ads","c":"OmidFriendlyObstruction","l":"getReasonString()","url":"com/theoplayer/android/api/ads/OmidFriendlyObstruction.html#getReasonString()"}, {"p":"com.theoplayer.android.api.ads","c":"MediaFile.Builder","l":"MediaFile.Builder()","url":"com/theoplayer/android/api/ads/MediaFile.Builder.html#MediaFile.Builder()"}, {"p":"com.theoplayer.android.api.ads","c":"MediaFile.Builder","l":"resourceURI(String)","url":"com/theoplayer/android/api/ads/MediaFile.Builder.html#resourceURI(java.lang.String)"}, {"p":"com.theoplayer.android.api.ads","c":"MediaFile.Builder","l":"type(String)","url":"com/theoplayer/android/api/ads/MediaFile.Builder.html#type(java.lang.String)"}, {"p":"com.theoplayer.android.api.ads","c":"MediaFile.Builder","l":"delivery(String)","url":"com/theoplayer/android/api/ads/MediaFile.Builder.html#delivery(java.lang.String)"}, {"p":"com.theoplayer.android.api.ads","c":"MediaFile.Builder","l":"width(Integer)","url":"com/theoplayer/android/api/ads/MediaFile.Builder.html#width(java.lang.Integer)"}, {"p":"com.theoplayer.android.api.ads","c":"MediaFile.Builder","l":"height(Integer)","url":"com/theoplayer/android/api/ads/MediaFile.Builder.html#height(java.lang.Integer)"}, {"p":"com.theoplayer.android.api.ads","c":"MediaFile.Builder","l":"build()","url":"com/theoplayer/android/api/ads/MediaFile.Builder.html#build()"}, {"p":"com.theoplayer.android.api.ads","c":"MediaFile","l":"getDelivery()","url":"com/theoplayer/android/api/ads/MediaFile.html#getDelivery()"}, {"p":"com.theoplayer.android.api.ads","c":"MediaFile","l":"getResourceURI()","url":"com/theoplayer/android/api/ads/MediaFile.html#getResourceURI()"}, {"p":"com.theoplayer.android.api.ads","c":"MediaFile","l":"getType()","url":"com/theoplayer/android/api/ads/MediaFile.html#getType()"}, {"p":"com.theoplayer.android.api.ads","c":"MediaFile","l":"getHeight()","url":"com/theoplayer/android/api/ads/MediaFile.html#getHeight()"}, {"p":"com.theoplayer.android.api.ads","c":"MediaFile","l":"getWidth()","url":"com/theoplayer/android/api/ads/MediaFile.html#getWidth()"}, {"p":"com.theoplayer.android.api.ads","c":"ServerSideAdIntegrationHandler","l":"setSource(SourceDescription)","url":"com/theoplayer/android/api/ads/ServerSideAdIntegrationHandler.html#setSource(com.theoplayer.android.api.source.SourceDescription)"}, {"p":"com.theoplayer.android.api.ads","c":"ServerSideAdIntegrationHandler","l":"skipAd(Ad)","url":"com/theoplayer/android/api/ads/ServerSideAdIntegrationHandler.html#skipAd(com.theoplayer.android.api.ads.Ad)"}, {"p":"com.theoplayer.android.api.ads","c":"ServerSideAdIntegrationHandler","l":"resetSource()","url":"com/theoplayer/android/api/ads/ServerSideAdIntegrationHandler.html#resetSource()"}, {"p":"com.theoplayer.android.api.ads","c":"ServerSideAdIntegrationHandler","l":"destroy()","url":"com/theoplayer/android/api/ads/ServerSideAdIntegrationHandler.html#destroy()"}, {"p":"com.theoplayer.android.api.ads","c":"ServerSideAdIntegrationController","l":"createAd(AdInit, AdBreak)","url":"com/theoplayer/android/api/ads/ServerSideAdIntegrationController.html#createAd(com.theoplayer.android.api.ads.AdInit,com.theoplayer.android.api.ads.AdBreak)"}, {"p":"com.theoplayer.android.api.ads","c":"ServerSideAdIntegrationController","l":"updateAd(Ad, AdInit)","url":"com/theoplayer/android/api/ads/ServerSideAdIntegrationController.html#updateAd(com.theoplayer.android.api.ads.Ad,com.theoplayer.android.api.ads.AdInit)"}, {"p":"com.theoplayer.android.api.ads","c":"ServerSideAdIntegrationController","l":"updateAdProgress(Ad, Double)","url":"com/theoplayer/android/api/ads/ServerSideAdIntegrationController.html#updateAdProgress(com.theoplayer.android.api.ads.Ad,java.lang.Double)"}, {"p":"com.theoplayer.android.api.ads","c":"ServerSideAdIntegrationController","l":"beginAd(Ad)","url":"com/theoplayer/android/api/ads/ServerSideAdIntegrationController.html#beginAd(com.theoplayer.android.api.ads.Ad)"}, {"p":"com.theoplayer.android.api.ads","c":"ServerSideAdIntegrationController","l":"endAd(Ad)","url":"com/theoplayer/android/api/ads/ServerSideAdIntegrationController.html#endAd(com.theoplayer.android.api.ads.Ad)"}, {"p":"com.theoplayer.android.api.ads","c":"ServerSideAdIntegrationController","l":"skipAd(Ad)","url":"com/theoplayer/android/api/ads/ServerSideAdIntegrationController.html#skipAd(com.theoplayer.android.api.ads.Ad)"}, {"p":"com.theoplayer.android.api.ads","c":"ServerSideAdIntegrationController","l":"removeAd(Ad)","url":"com/theoplayer/android/api/ads/ServerSideAdIntegrationController.html#removeAd(com.theoplayer.android.api.ads.Ad)"}, {"p":"com.theoplayer.android.api.ads","c":"ServerSideAdIntegrationController","l":"createAdBreak(AdBreakInit)","url":"com/theoplayer/android/api/ads/ServerSideAdIntegrationController.html#createAdBreak(com.theoplayer.android.api.ads.AdBreakInit)"}, {"p":"com.theoplayer.android.api.ads","c":"ServerSideAdIntegrationController","l":"updateAdBreak(AdBreak, AdBreakInit)","url":"com/theoplayer/android/api/ads/ServerSideAdIntegrationController.html#updateAdBreak(com.theoplayer.android.api.ads.AdBreak,com.theoplayer.android.api.ads.AdBreakInit)"}, {"p":"com.theoplayer.android.api.ads","c":"ServerSideAdIntegrationController","l":"removeAdBreak(AdBreak)","url":"com/theoplayer/android/api/ads/ServerSideAdIntegrationController.html#removeAdBreak(com.theoplayer.android.api.ads.AdBreak)"}, {"p":"com.theoplayer.android.api.ads","c":"ServerSideAdIntegrationController","l":"removeAllAds()","url":"com/theoplayer/android/api/ads/ServerSideAdIntegrationController.html#removeAllAds()"}, {"p":"com.theoplayer.android.api.ads","c":"ServerSideAdIntegrationController","l":"error(Throwable)","url":"com/theoplayer/android/api/ads/ServerSideAdIntegrationController.html#error(java.lang.Throwable)"}, {"p":"com.theoplayer.android.api.ads","c":"ServerSideAdIntegrationController","l":"fatalError(Throwable, ErrorCode)","url":"com/theoplayer/android/api/ads/ServerSideAdIntegrationController.html#fatalError(java.lang.Throwable,com.theoplayer.android.api.error.ErrorCode)"}, {"p":"com.theoplayer.android.api.ads","c":"ServerSideAdIntegrationController","l":"getIntegration()","url":"com/theoplayer/android/api/ads/ServerSideAdIntegrationController.html#getIntegration()"}, {"p":"com.theoplayer.android.api.ads","c":"ServerSideAdIntegrationController","l":"getAds()","url":"com/theoplayer/android/api/ads/ServerSideAdIntegrationController.html#getAds()"}, {"p":"com.theoplayer.android.api.ads","c":"ServerSideAdIntegrationController","l":"getAdBreaks()","url":"com/theoplayer/android/api/ads/ServerSideAdIntegrationController.html#getAdBreaks()"}, {"p":"com.theoplayer.android.api.ads","c":"AdInit","l":"AdInit(String, Integer, Integer, String, Integer, String, String, List, Object)","url":"com/theoplayer/android/api/ads/AdInit.html#AdInit(java.lang.String,java.lang.Integer,java.lang.Integer,java.lang.String,java.lang.Integer,java.lang.String,java.lang.String,java.util.List,java.lang.Object)"}, {"p":"com.theoplayer.android.api.ads","c":"AdInit","l":"AdInit(String, Integer, Integer, String, Integer, String, String, List)","url":"com/theoplayer/android/api/ads/AdInit.html#AdInit(java.lang.String,java.lang.Integer,java.lang.Integer,java.lang.String,java.lang.Integer,java.lang.String,java.lang.String,java.util.List,java.lang.Object)"}, {"p":"com.theoplayer.android.api.ads","c":"AdInit","l":"AdInit(String, Integer, Integer, String, Integer, String, String)","url":"com/theoplayer/android/api/ads/AdInit.html#AdInit(java.lang.String,java.lang.Integer,java.lang.Integer,java.lang.String,java.lang.Integer,java.lang.String,java.lang.String,java.util.List,java.lang.Object)"}, {"p":"com.theoplayer.android.api.ads","c":"AdInit","l":"AdInit(String, Integer, Integer, String, Integer, String)","url":"com/theoplayer/android/api/ads/AdInit.html#AdInit(java.lang.String,java.lang.Integer,java.lang.Integer,java.lang.String,java.lang.Integer,java.lang.String,java.lang.String,java.util.List,java.lang.Object)"}, {"p":"com.theoplayer.android.api.ads","c":"AdInit","l":"AdInit(String, Integer, Integer, String, Integer)","url":"com/theoplayer/android/api/ads/AdInit.html#AdInit(java.lang.String,java.lang.Integer,java.lang.Integer,java.lang.String,java.lang.Integer,java.lang.String,java.lang.String,java.util.List,java.lang.Object)"}, {"p":"com.theoplayer.android.api.ads","c":"AdInit","l":"AdInit(String, Integer, Integer, String)","url":"com/theoplayer/android/api/ads/AdInit.html#AdInit(java.lang.String,java.lang.Integer,java.lang.Integer,java.lang.String,java.lang.Integer,java.lang.String,java.lang.String,java.util.List,java.lang.Object)"}, {"p":"com.theoplayer.android.api.ads","c":"AdInit","l":"AdInit(String, Integer, Integer)","url":"com/theoplayer/android/api/ads/AdInit.html#AdInit(java.lang.String,java.lang.Integer,java.lang.Integer,java.lang.String,java.lang.Integer,java.lang.String,java.lang.String,java.util.List,java.lang.Object)"}, {"p":"com.theoplayer.android.api.ads","c":"AdInit","l":"AdInit(String, Integer)","url":"com/theoplayer/android/api/ads/AdInit.html#AdInit(java.lang.String,java.lang.Integer,java.lang.Integer,java.lang.String,java.lang.Integer,java.lang.String,java.lang.String,java.util.List,java.lang.Object)"}, {"p":"com.theoplayer.android.api.ads","c":"AdInit","l":"AdInit(String)","url":"com/theoplayer/android/api/ads/AdInit.html#AdInit(java.lang.String,java.lang.Integer,java.lang.Integer,java.lang.String,java.lang.Integer,java.lang.String,java.lang.String,java.util.List,java.lang.Object)"}, {"p":"com.theoplayer.android.api.ads","c":"AdInit","l":"AdInit()","url":"com/theoplayer/android/api/ads/AdInit.html#AdInit(java.lang.String,java.lang.Integer,java.lang.Integer,java.lang.String,java.lang.Integer,java.lang.String,java.lang.String,java.util.List,java.lang.Object)"}, {"p":"com.theoplayer.android.api.ads","c":"AdInit","l":"getType()","url":"com/theoplayer/android/api/ads/AdInit.html#getType()"}, {"p":"com.theoplayer.android.api.ads","c":"AdInit","l":"setType(String)","url":"com/theoplayer/android/api/ads/AdInit.html#setType(java.lang.String)"}, {"p":"com.theoplayer.android.api.ads","c":"AdInit","l":"getTimeOffset()","url":"com/theoplayer/android/api/ads/AdInit.html#getTimeOffset()"}, {"p":"com.theoplayer.android.api.ads","c":"AdInit","l":"setTimeOffset(Integer)","url":"com/theoplayer/android/api/ads/AdInit.html#setTimeOffset(java.lang.Integer)"}, {"p":"com.theoplayer.android.api.ads","c":"AdInit","l":"getSkipOffset()","url":"com/theoplayer/android/api/ads/AdInit.html#getSkipOffset()"}, {"p":"com.theoplayer.android.api.ads","c":"AdInit","l":"setSkipOffset(Integer)","url":"com/theoplayer/android/api/ads/AdInit.html#setSkipOffset(java.lang.Integer)"}, {"p":"com.theoplayer.android.api.ads","c":"AdInit","l":"getId()","url":"com/theoplayer/android/api/ads/AdInit.html#getId()"}, {"p":"com.theoplayer.android.api.ads","c":"AdInit","l":"setId(String)","url":"com/theoplayer/android/api/ads/AdInit.html#setId(java.lang.String)"}, {"p":"com.theoplayer.android.api.ads","c":"AdInit","l":"getDuration()","url":"com/theoplayer/android/api/ads/AdInit.html#getDuration()"}, {"p":"com.theoplayer.android.api.ads","c":"AdInit","l":"setDuration(Integer)","url":"com/theoplayer/android/api/ads/AdInit.html#setDuration(java.lang.Integer)"}, {"p":"com.theoplayer.android.api.ads","c":"AdInit","l":"getClickThrough()","url":"com/theoplayer/android/api/ads/AdInit.html#getClickThrough()"}, {"p":"com.theoplayer.android.api.ads","c":"AdInit","l":"setClickThrough(String)","url":"com/theoplayer/android/api/ads/AdInit.html#setClickThrough(java.lang.String)"}, {"p":"com.theoplayer.android.api.ads","c":"AdInit","l":"getResourceURI()","url":"com/theoplayer/android/api/ads/AdInit.html#getResourceURI()"}, {"p":"com.theoplayer.android.api.ads","c":"AdInit","l":"setResourceURI(String)","url":"com/theoplayer/android/api/ads/AdInit.html#setResourceURI(java.lang.String)"}, {"p":"com.theoplayer.android.api.ads","c":"AdInit","l":"getMediaFiles()","url":"com/theoplayer/android/api/ads/AdInit.html#getMediaFiles()"}, {"p":"com.theoplayer.android.api.ads","c":"AdInit","l":"setMediaFiles(List)","url":"com/theoplayer/android/api/ads/AdInit.html#setMediaFiles(java.util.List)"}, {"p":"com.theoplayer.android.api.ads","c":"AdInit","l":"getCustomData()","url":"com/theoplayer/android/api/ads/AdInit.html#getCustomData()"}, {"p":"com.theoplayer.android.api.ads","c":"AdInit","l":"setCustomData(Object)","url":"com/theoplayer/android/api/ads/AdInit.html#setCustomData(java.lang.Object)"}, {"p":"com.theoplayer.android.api.ads","c":"AdBreakInit","l":"AdBreakInit(Integer, Integer, Object)","url":"com/theoplayer/android/api/ads/AdBreakInit.html#AdBreakInit(java.lang.Integer,java.lang.Integer,java.lang.Object)"}, {"p":"com.theoplayer.android.api.ads","c":"AdBreakInit","l":"AdBreakInit(Integer, Integer)","url":"com/theoplayer/android/api/ads/AdBreakInit.html#AdBreakInit(java.lang.Integer,java.lang.Integer,java.lang.Object)"}, {"p":"com.theoplayer.android.api.ads","c":"AdBreakInit","l":"AdBreakInit(Integer)","url":"com/theoplayer/android/api/ads/AdBreakInit.html#AdBreakInit(java.lang.Integer,java.lang.Integer,java.lang.Object)"}, {"p":"com.theoplayer.android.api.ads","c":"AdBreakInit","l":"AdBreakInit()","url":"com/theoplayer/android/api/ads/AdBreakInit.html#AdBreakInit(java.lang.Integer,java.lang.Integer,java.lang.Object)"}, {"p":"com.theoplayer.android.api.ads","c":"AdBreakInit","l":"getTimeOffset()","url":"com/theoplayer/android/api/ads/AdBreakInit.html#getTimeOffset()"}, {"p":"com.theoplayer.android.api.ads","c":"AdBreakInit","l":"getMaxDuration()","url":"com/theoplayer/android/api/ads/AdBreakInit.html#getMaxDuration()"}, {"p":"com.theoplayer.android.api.ads","c":"AdBreakInit","l":"getCustomData()","url":"com/theoplayer/android/api/ads/AdBreakInit.html#getCustomData()"}, {"p":"com.theoplayer.android.api.ads","c":"AdBreakInit","l":"setCustomData(Object)","url":"com/theoplayer/android/api/ads/AdBreakInit.html#setCustomData(java.lang.Object)"}, {"p":"com.theoplayer.android.api.ads","c":"ServerSideAdIntegrationFactory","l":"build(ServerSideAdIntegrationController)","url":"com/theoplayer/android/api/ads/ServerSideAdIntegrationFactory.html#build(com.theoplayer.android.api.ads.ServerSideAdIntegrationController)"}, {"p":"com.theoplayer.android.api.source","c":"GoogleDaiTypedSource.Builder","l":"GoogleDaiTypedSource.Builder(GoogleDaiConfiguration)","url":"com/theoplayer/android/api/source/GoogleDaiTypedSource.Builder.html#GoogleDaiTypedSource.Builder(com.theoplayer.android.api.source.ssai.GoogleDaiConfiguration)"}, {"p":"com.theoplayer.android.api.source","c":"GoogleDaiTypedSource.Builder","l":"build()","url":"com/theoplayer/android/api/source/GoogleDaiTypedSource.Builder.html#build()"}, {"p":"com.theoplayer.android.api.source","c":"AdIntegration","l":"values()","url":"com/theoplayer/android/api/source/AdIntegration.html#values()"}, {"p":"com.theoplayer.android.api.source","c":"AdIntegration","l":"valueOf(String)","url":"com/theoplayer/android/api/source/AdIntegration.html#valueOf(java.lang.String)"}, {"p":"com.theoplayer.android.api.source","c":"AdIntegration","l":"getAdIntegration()","url":"com/theoplayer/android/api/source/AdIntegration.html#getAdIntegration()"}, {"p":"com.theoplayer.android.api.source","c":"SourceDescription.Builder","l":"SourceDescription.Builder(Array)","url":"com/theoplayer/android/api/source/SourceDescription.Builder.html#SourceDescription.Builder(kotlin.Array)"}, {"p":"com.theoplayer.android.api.source","c":"SourceDescription.Builder","l":"SourceDescription.Builder(Array)","url":"com/theoplayer/android/api/source/SourceDescription.Builder.html#SourceDescription.Builder(kotlin.Array)"}, {"p":"com.theoplayer.android.api.source","c":"SourceDescription.Builder","l":"ads(Array)","url":"com/theoplayer/android/api/source/SourceDescription.Builder.html#ads(kotlin.Array)"}, {"p":"com.theoplayer.android.api.source","c":"SourceDescription.Builder","l":"textTracks(Array)","url":"com/theoplayer/android/api/source/SourceDescription.Builder.html#textTracks(kotlin.Array)"}, {"p":"com.theoplayer.android.api.source","c":"SourceDescription.Builder","l":"textTracks(Array)","url":"com/theoplayer/android/api/source/SourceDescription.Builder.html#textTracks(kotlin.Array)"}, {"p":"com.theoplayer.android.api.source","c":"SourceDescription.Builder","l":"poster(String)","url":"com/theoplayer/android/api/source/SourceDescription.Builder.html#poster(java.lang.String)"}, {"p":"com.theoplayer.android.api.source","c":"SourceDescription.Builder","l":"metadata(MetadataDescription)","url":"com/theoplayer/android/api/source/SourceDescription.Builder.html#metadata(com.theoplayer.android.api.source.metadata.MetadataDescription)"}, {"p":"com.theoplayer.android.api.source","c":"SourceDescription.Builder","l":"timeServer(String)","url":"com/theoplayer/android/api/source/SourceDescription.Builder.html#timeServer(java.lang.String)"}, {"p":"com.theoplayer.android.api.source","c":"SourceDescription.Builder","l":"build()","url":"com/theoplayer/android/api/source/SourceDescription.Builder.html#build()"}, {"p":"com.theoplayer.android.api.source","c":"SourceDescription","l":"SourceDescription(List, List, List, String, MetadataDescription, String)","url":"com/theoplayer/android/api/source/SourceDescription.html#SourceDescription(java.util.List,java.util.List,java.util.List,java.lang.String,com.theoplayer.android.api.source.metadata.MetadataDescription,java.lang.String)"}, {"p":"com.theoplayer.android.api.source","c":"SourceDescription","l":"getSources()","url":"com/theoplayer/android/api/source/SourceDescription.html#getSources()"}, {"p":"com.theoplayer.android.api.source","c":"SourceDescription","l":"getAds()","url":"com/theoplayer/android/api/source/SourceDescription.html#getAds()"}, {"p":"com.theoplayer.android.api.source","c":"SourceDescription","l":"getTextTracks()","url":"com/theoplayer/android/api/source/SourceDescription.html#getTextTracks()"}, {"p":"com.theoplayer.android.api.source","c":"SourceDescription","l":"getPoster()","url":"com/theoplayer/android/api/source/SourceDescription.html#getPoster()"}, {"p":"com.theoplayer.android.api.source","c":"SourceDescription","l":"getMetadata()","url":"com/theoplayer/android/api/source/SourceDescription.html#getMetadata()"}, {"p":"com.theoplayer.android.api.source","c":"SourceDescription","l":"getTimeServer()","url":"com/theoplayer/android/api/source/SourceDescription.html#getTimeServer()"}, {"p":"com.theoplayer.android.api.source","c":"SourceDescription","l":"replaceAds(SourceDescription, List)","url":"com/theoplayer/android/api/source/SourceDescription.html#replaceAds(com.theoplayer.android.api.source.SourceDescription,java.util.List)"}, {"p":"com.theoplayer.android.api.source","c":"SourceDescription","l":"replaceSources(SourceDescription, List)","url":"com/theoplayer/android/api/source/SourceDescription.html#replaceSources(com.theoplayer.android.api.source.SourceDescription,java.util.List)"}, {"p":"com.theoplayer.android.api.source","c":"SourceDescription","l":"equals(Object)","url":"com/theoplayer/android/api/source/SourceDescription.html#equals(Object)"}, {"p":"com.theoplayer.android.api.source","c":"SourceDescription","l":"hashCode()","url":"com/theoplayer/android/api/source/SourceDescription.html#hashCode()"}, {"p":"com.theoplayer.android.api.source","c":"TypedSource.Builder","l":"TypedSource.Builder(String)","url":"com/theoplayer/android/api/source/TypedSource.Builder.html#TypedSource.Builder(java.lang.String)"}, {"p":"com.theoplayer.android.api.source","c":"TypedSource.Builder","l":"drm(DRMConfiguration)","url":"com/theoplayer/android/api/source/mediatailor/MediaTailorSource.Builder.html#drm(com.theoplayer.android.api.source.drm.DRMConfiguration)"}, {"p":"com.theoplayer.android.api.source","c":"TypedSource.Builder","l":"type(SourceType)","url":"com/theoplayer/android/api/source/mediatailor/MediaTailorSource.Builder.html#type(com.theoplayer.android.api.source.SourceType)"}, {"p":"com.theoplayer.android.api.source","c":"TypedSource.Builder","l":"headers(Map)","url":"com/theoplayer/android/api/source/mediatailor/MediaTailorSource.Builder.html#headers(java.util.Map)"}, {"p":"com.theoplayer.android.api.source","c":"TypedSource.Builder","l":"liveOffset(Double)","url":"com/theoplayer/android/api/source/mediatailor/MediaTailorSource.Builder.html#liveOffset(java.lang.Double)"}, {"p":"com.theoplayer.android.api.source","c":"TypedSource.Builder","l":"ssai(SsaiDescription)","url":"com/theoplayer/android/api/source/mediatailor/MediaTailorSource.Builder.html#ssai(com.theoplayer.android.api.source.ssai.SsaiDescription)"}, {"p":"com.theoplayer.android.api.source","c":"TypedSource.Builder","l":"hlsDateRange(boolean)","url":"com/theoplayer/android/api/source/mediatailor/MediaTailorSource.Builder.html#hlsDateRange(boolean)"}, {"p":"com.theoplayer.android.api.source","c":"TypedSource.Builder","l":"timeServer(String)","url":"com/theoplayer/android/api/source/mediatailor/MediaTailorSource.Builder.html#timeServer(java.lang.String)"}, {"p":"com.theoplayer.android.api.source","c":"TypedSource.Builder","l":"lowLatency(Boolean)","url":"com/theoplayer/android/api/source/mediatailor/MediaTailorSource.Builder.html#lowLatency(java.lang.Boolean)"}, {"p":"com.theoplayer.android.api.source","c":"TypedSource.Builder","l":"latencyConfiguration(LatencyConfiguration)","url":"com/theoplayer/android/api/source/mediatailor/MediaTailorSource.Builder.html#latencyConfiguration(com.theoplayer.android.api.latency.LatencyConfiguration)"}, {"p":"com.theoplayer.android.api.source","c":"TypedSource.Builder","l":"hls(HlsPlaybackConfiguration)","url":"com/theoplayer/android/api/source/mediatailor/MediaTailorSource.Builder.html#hls(com.theoplayer.android.api.source.hls.HlsPlaybackConfiguration)"}, {"p":"com.theoplayer.android.api.source","c":"TypedSource.Builder","l":"dash(DashPlaybackConfiguration)","url":"com/theoplayer/android/api/source/mediatailor/MediaTailorSource.Builder.html#dash(com.theoplayer.android.api.source.dash.DashPlaybackConfiguration)"}, {"p":"com.theoplayer.android.api.source","c":"TypedSource.Builder","l":"build()","url":"com/theoplayer/android/api/source/TypedSource.Builder.html#build()"}, {"p":"com.theoplayer.android.api.source","c":"TypedSource","l":"TypedSource(String, DRMConfiguration, SourceType, Map, Double, SsaiDescription, Boolean, String, Boolean, LatencyConfiguration, HlsPlaybackConfiguration, DashPlaybackConfiguration)","url":"com/theoplayer/android/api/source/TypedSource.html#TypedSource(java.lang.String,com.theoplayer.android.api.source.drm.DRMConfiguration,com.theoplayer.android.api.source.SourceType,java.util.Map,java.lang.Double,com.theoplayer.android.api.source.ssai.SsaiDescription,java.lang.Boolean,java.lang.String,java.lang.Boolean,com.theoplayer.android.api.latency.LatencyConfiguration,com.theoplayer.android.api.source.hls.HlsPlaybackConfiguration,com.theoplayer.android.api.source.dash.DashPlaybackConfiguration)"}, {"p":"com.theoplayer.android.api.source","c":"TypedSource","l":"getSrc()","url":"com/theoplayer/android/api/source/mediatailor/MediaTailorSource.html#getSrc()"}, {"p":"com.theoplayer.android.api.source","c":"TypedSource","l":"getDrm()","url":"com/theoplayer/android/api/source/mediatailor/MediaTailorSource.html#getDrm()"}, {"p":"com.theoplayer.android.api.source","c":"TypedSource","l":"getType()","url":"com/theoplayer/android/api/source/mediatailor/MediaTailorSource.html#getType()"}, {"p":"com.theoplayer.android.api.source","c":"TypedSource","l":"getHeaders()","url":"com/theoplayer/android/api/source/mediatailor/MediaTailorSource.html#getHeaders()"}, {"p":"com.theoplayer.android.api.source","c":"TypedSource","l":"getLiveOffset()","url":"com/theoplayer/android/api/source/mediatailor/MediaTailorSource.html#getLiveOffset()"}, {"p":"com.theoplayer.android.api.source","c":"TypedSource","l":"getSsai()","url":"com/theoplayer/android/api/source/mediatailor/MediaTailorSource.html#getSsai()"}, {"p":"com.theoplayer.android.api.source","c":"TypedSource","l":"getTimeServer()","url":"com/theoplayer/android/api/source/mediatailor/MediaTailorSource.html#getTimeServer()"}, {"p":"com.theoplayer.android.api.source","c":"TypedSource","l":"getLatencyConfiguration()","url":"com/theoplayer/android/api/source/mediatailor/MediaTailorSource.html#getLatencyConfiguration()"}, {"p":"com.theoplayer.android.api.source","c":"TypedSource","l":"getHls()","url":"com/theoplayer/android/api/source/mediatailor/MediaTailorSource.html#getHls()"}, {"p":"com.theoplayer.android.api.source","c":"TypedSource","l":"getDash()","url":"com/theoplayer/android/api/source/mediatailor/MediaTailorSource.html#getDash()"}, {"p":"com.theoplayer.android.api.source","c":"TypedSource","l":"isHlsDateRange()","url":"com/theoplayer/android/api/source/mediatailor/MediaTailorSource.html#isHlsDateRange()"}, {"p":"com.theoplayer.android.api.source","c":"TypedSource","l":"isLowLatency()","url":"com/theoplayer/android/api/source/mediatailor/MediaTailorSource.html#isLowLatency()"}, {"p":"com.theoplayer.android.api.source","c":"TypedSource","l":"replaceSource(TypedSource, String)","url":"com/theoplayer/android/api/source/mediatailor/MediaTailorSource.html#replaceSource(com.theoplayer.android.api.source.TypedSource,java.lang.String)"}, {"p":"com.theoplayer.android.api.source","c":"TypedSource","l":"equals(Object)","url":"com/theoplayer/android/api/source/TypedSource.html#equals(Object)"}, {"p":"com.theoplayer.android.api.source","c":"TypedSource","l":"hashCode()","url":"com/theoplayer/android/api/source/TypedSource.html#hashCode()"}, {"p":"com.theoplayer.android.api.source","c":"TextTrackDescription.Builder","l":"TextTrackDescription.Builder(String)","url":"com/theoplayer/android/api/source/TextTrackDescription.Builder.html#TextTrackDescription.Builder(java.lang.String)"}, {"p":"com.theoplayer.android.api.source","c":"TextTrackDescription.Builder","l":"kind(TextTrackKind)","url":"com/theoplayer/android/api/source/TextTrackDescription.Builder.html#kind(com.theoplayer.android.api.player.track.texttrack.TextTrackKind)"}, {"p":"com.theoplayer.android.api.source","c":"TextTrackDescription.Builder","l":"srclang(String)","url":"com/theoplayer/android/api/source/TextTrackDescription.Builder.html#srclang(java.lang.String)"}, {"p":"com.theoplayer.android.api.source","c":"TextTrackDescription.Builder","l":"label(String)","url":"com/theoplayer/android/api/source/TextTrackDescription.Builder.html#label(java.lang.String)"}, {"p":"com.theoplayer.android.api.source","c":"TextTrackDescription.Builder","l":"build()","url":"com/theoplayer/android/api/source/TextTrackDescription.Builder.html#build()"}, {"p":"com.theoplayer.android.api.source","c":"TextTrackDescription.Builder","l":"isDefault(boolean)","url":"com/theoplayer/android/api/source/TextTrackDescription.Builder.html#isDefault(boolean)"}, {"p":"com.theoplayer.android.api.source","c":"TextTrackDescription","l":"getSrc()","url":"com/theoplayer/android/api/source/TextTrackDescription.html#getSrc()"}, {"p":"com.theoplayer.android.api.source","c":"TextTrackDescription","l":"isDefault()","url":"com/theoplayer/android/api/source/TextTrackDescription.html#isDefault()"}, {"p":"com.theoplayer.android.api.source","c":"TextTrackDescription","l":"getKind()","url":"com/theoplayer/android/api/source/TextTrackDescription.html#getKind()"}, {"p":"com.theoplayer.android.api.source","c":"TextTrackDescription","l":"getSrclang()","url":"com/theoplayer/android/api/source/TextTrackDescription.html#getSrclang()"}, {"p":"com.theoplayer.android.api.source","c":"TextTrackDescription","l":"getLabel()","url":"com/theoplayer/android/api/source/TextTrackDescription.html#getLabel()"}, {"p":"com.theoplayer.android.api.source","c":"SourceType","l":"getMimeType()","url":"com/theoplayer/android/api/source/SourceType.html#getMimeType()"}, {"p":"com.theoplayer.android.api.source","c":"SourceType","l":"values()","url":"com/theoplayer/android/api/source/SourceType.html#values()"}, {"p":"com.theoplayer.android.api.source","c":"SourceType","l":"valueOf(String)","url":"com/theoplayer/android/api/source/SourceType.html#valueOf(java.lang.String)"}, {"p":"com.theoplayer.android.api.source.mediatailor","c":"MediaTailorSource.Builder","l":"MediaTailorSource.Builder(String)","url":"com/theoplayer/android/api/source/mediatailor/MediaTailorSource.Builder.html#MediaTailorSource.Builder(java.lang.String)"}, {"p":"com.theoplayer.android.api.source.mediatailor","c":"MediaTailorSource.Builder","l":"adParams(Map)","url":"com/theoplayer/android/api/source/mediatailor/MediaTailorSource.Builder.html#adParams(java.util.Map)"}, {"p":"com.theoplayer.android.api.source.mediatailor","c":"MediaTailorSource.Builder","l":"build()","url":"com/theoplayer/android/api/source/mediatailor/MediaTailorSource.Builder.html#build()"}, {"p":"com.theoplayer.android.api.source.mediatailor","c":"MediaTailorSource","l":"getAdParams()","url":"com/theoplayer/android/api/source/mediatailor/MediaTailorSource.html#getAdParams()"}, {"p":"com.theoplayer.android.api.source.mediatailor","c":"MediaTailorSource","l":"equals(Object)","url":"com/theoplayer/android/api/source/mediatailor/MediaTailorSource.html#equals(Object)"}, {"p":"com.theoplayer.android.api.source.mediatailor","c":"MediaTailorSource","l":"hashCode()","url":"com/theoplayer/android/api/source/mediatailor/MediaTailorSource.html#hashCode()"}, {"p":"com.theoplayer.android.api.source.metadata","c":"ChromecastMetadataImage","l":"ChromecastMetadataImage(String)","url":"com/theoplayer/android/api/source/metadata/ChromecastMetadataImage.html#ChromecastMetadataImage(java.lang.String)"}, {"p":"com.theoplayer.android.api.source.metadata","c":"ChromecastMetadataImage","l":"ChromecastMetadataImage(String, Integer, Integer)","url":"com/theoplayer/android/api/source/metadata/ChromecastMetadataImage.html#ChromecastMetadataImage(java.lang.String,java.lang.Integer,java.lang.Integer)"}, {"p":"com.theoplayer.android.api.source.metadata","c":"ChromecastMetadataImage","l":"getSrc()","url":"com/theoplayer/android/api/source/metadata/ChromecastMetadataImage.html#getSrc()"}, {"p":"com.theoplayer.android.api.source.metadata","c":"ChromecastMetadataImage","l":"getWidth()","url":"com/theoplayer/android/api/source/metadata/ChromecastMetadataImage.html#getWidth()"}, {"p":"com.theoplayer.android.api.source.metadata","c":"ChromecastMetadataImage","l":"getHeight()","url":"com/theoplayer/android/api/source/metadata/ChromecastMetadataImage.html#getHeight()"}, {"p":"com.theoplayer.android.api.source.metadata","c":"ChromecastMetadataType","l":"fromName(String)","url":"com/theoplayer/android/api/source/metadata/ChromecastMetadataType.html#fromName(java.lang.String)"}, {"p":"com.theoplayer.android.api.source.metadata","c":"ChromecastMetadataType","l":"values()","url":"com/theoplayer/android/api/source/metadata/ChromecastMetadataType.html#values()"}, {"p":"com.theoplayer.android.api.source.metadata","c":"ChromecastMetadataType","l":"valueOf(String)","url":"com/theoplayer/android/api/source/metadata/ChromecastMetadataType.html#valueOf(java.lang.String)"}, {"p":"com.theoplayer.android.api.source.metadata","c":"ChromecastMetadataType","l":"getType()","url":"com/theoplayer/android/api/source/metadata/ChromecastMetadataType.html#getType()"}, {"p":"com.theoplayer.android.api.source.metadata","c":"ChromecastMetadataType","l":"getNativeType()","url":"com/theoplayer/android/api/source/metadata/ChromecastMetadataType.html#getNativeType()"}, {"p":"com.theoplayer.android.api.source.metadata","c":"ChromecastMetadataDescription.Builder","l":"ChromecastMetadataDescription.Builder()","url":"com/theoplayer/android/api/source/metadata/ChromecastMetadataDescription.Builder.html#ChromecastMetadataDescription.Builder()"}, {"p":"com.theoplayer.android.api.source.metadata","c":"ChromecastMetadataDescription.Builder","l":"images(Array)","url":"com/theoplayer/android/api/source/metadata/ChromecastMetadataDescription.Builder.html#images(kotlin.Array)"}, {"p":"com.theoplayer.android.api.source.metadata","c":"ChromecastMetadataDescription.Builder","l":"images(Array)","url":"com/theoplayer/android/api/source/metadata/ChromecastMetadataDescription.Builder.html#images(kotlin.Array)"}, {"p":"com.theoplayer.android.api.source.metadata","c":"ChromecastMetadataDescription.Builder","l":"type(ChromecastMetadataType)","url":"com/theoplayer/android/api/source/metadata/ChromecastMetadataDescription.Builder.html#type(com.theoplayer.android.api.source.metadata.ChromecastMetadataType)"}, {"p":"com.theoplayer.android.api.source.metadata","c":"ChromecastMetadataDescription.Builder","l":"releaseDate(String)","url":"com/theoplayer/android/api/source/metadata/ChromecastMetadataDescription.Builder.html#releaseDate(java.lang.String)"}, {"p":"com.theoplayer.android.api.source.metadata","c":"ChromecastMetadataDescription.Builder","l":"title(String)","url":"com/theoplayer/android/api/source/metadata/ChromecastMetadataDescription.Builder.html#title(java.lang.String)"}, {"p":"com.theoplayer.android.api.source.metadata","c":"ChromecastMetadataDescription.Builder","l":"subtitle(String)","url":"com/theoplayer/android/api/source/metadata/ChromecastMetadataDescription.Builder.html#subtitle(java.lang.String)"}, {"p":"com.theoplayer.android.api.source.metadata","c":"ChromecastMetadataDescription.Builder","l":"build()","url":"com/theoplayer/android/api/source/metadata/ChromecastMetadataDescription.Builder.html#build()"}, {"p":"com.theoplayer.android.api.source.metadata","c":"ChromecastMetadataDescription","l":"getImages()","url":"com/theoplayer/android/api/source/metadata/ChromecastMetadataDescription.html#getImages()"}, {"p":"com.theoplayer.android.api.source.metadata","c":"ChromecastMetadataDescription","l":"getReleaseDate()","url":"com/theoplayer/android/api/source/metadata/ChromecastMetadataDescription.html#getReleaseDate()"}, {"p":"com.theoplayer.android.api.source.metadata","c":"ChromecastMetadataDescription","l":"getTitle()","url":"com/theoplayer/android/api/source/metadata/ChromecastMetadataDescription.html#getTitle()"}, {"p":"com.theoplayer.android.api.source.metadata","c":"ChromecastMetadataDescription","l":"getSubtitle()","url":"com/theoplayer/android/api/source/metadata/ChromecastMetadataDescription.html#getSubtitle()"}, {"p":"com.theoplayer.android.api.source.metadata","c":"ChromecastMetadataDescription","l":"getType()","url":"com/theoplayer/android/api/source/metadata/ChromecastMetadataDescription.html#getType()"}, {"p":"com.theoplayer.android.api.source.metadata","c":"MetadataDescription","l":"MetadataDescription()","url":"com/theoplayer/android/api/source/metadata/MetadataDescription.html#MetadataDescription()"}, {"p":"com.theoplayer.android.api.source.metadata","c":"MetadataDescription","l":"MetadataDescription(Map)","url":"com/theoplayer/android/api/source/metadata/MetadataDescription.html#MetadataDescription(java.util.Map)"}, {"p":"com.theoplayer.android.api.settings","c":"SslSettings","l":"setKeyStore(KeyStore)","url":"com/theoplayer/android/api/settings/SslSettings.html#setKeyStore(java.security.KeyStore)"}, {"p":"com.theoplayer.android.api.settings","c":"PlaybackSettings","l":"useFastStartup(boolean)","url":"com/theoplayer/android/api/settings/PlaybackSettings.html#useFastStartup(boolean)"}, {"p":"com.theoplayer.android.api.settings","c":"PlaybackSettings","l":"setLipSyncCorrection(long)","url":"com/theoplayer/android/api/settings/PlaybackSettings.html#setLipSyncCorrection(long)"}, {"p":"com.theoplayer.android.api.settings","c":"PlaybackSettings","l":"setDecoderSelectionHelper(DecoderSelectionHelper)","url":"com/theoplayer/android/api/settings/PlaybackSettings.html#setDecoderSelectionHelper(com.theoplayer.android.api.settings.DecoderSelectionHelper)"}, {"p":"com.theoplayer.android.api.settings","c":"PlaybackSettings","l":"getDecoderName(DecoderType, String, boolean)","url":"com/theoplayer/android/api/settings/PlaybackSettings.html#getDecoderName(com.theoplayer.android.api.settings.DecoderType,java.lang.String,boolean)"}, {"p":"com.theoplayer.android.api.settings","c":"DecoderType","l":"values()","url":"com/theoplayer/android/api/settings/DecoderType.html#values()"}, {"p":"com.theoplayer.android.api.settings","c":"DecoderType","l":"valueOf(String)","url":"com/theoplayer/android/api/settings/DecoderType.html#valueOf(java.lang.String)"}, {"p":"com.theoplayer.android.api.settings","c":"DecoderSelectionHelper","l":"DecoderSelectionHelper()","url":"com/theoplayer/android/api/settings/DecoderSelectionHelper.html#DecoderSelectionHelper()"}, {"p":"com.theoplayer.android.api.settings","c":"DecoderSelectionHelper","l":"shouldUseDecoder(DecoderType, String, MediaCodecInfo)","url":"com/theoplayer/android/api/settings/DecoderSelectionHelper.html#shouldUseDecoder(com.theoplayer.android.api.settings.DecoderType,java.lang.String,android.media.MediaCodecInfo)"}, {"p":"com.theoplayer.android.api.settings","c":"DecoderSelectionHelper","l":"shouldApplySecureExtensionWorkaround(DecoderType, String, MediaCodecInfo)","url":"com/theoplayer/android/api/settings/DecoderSelectionHelper.html#shouldApplySecureExtensionWorkaround(com.theoplayer.android.api.settings.DecoderType,java.lang.String,android.media.MediaCodecInfo)"}, {"p":"com.theoplayer.android.api.settings","c":"DecoderSelectionHelper","l":"shouldOverrideBuiltInDecoderSelectionLogic()","url":"com/theoplayer/android/api/settings/DecoderSelectionHelper.html#shouldOverrideBuiltInDecoderSelectionLogic()"}, {"p":"com.theoplayer.android.api.settings","c":"DecoderSelectionHelper","l":"isRepresentationSupported(String, String, double, int, int, double, double)","url":"com/theoplayer/android/api/settings/DecoderSelectionHelper.html#isRepresentationSupported(java.lang.String,java.lang.String,double,int,int,double,double)"}, {"p":"com.theoplayer.android.api.cache","c":"CachingTaskProgress","l":"getDuration()","url":"com/theoplayer/android/api/cache/CachingTaskProgress.html#getDuration()"}, {"p":"com.theoplayer.android.api.cache","c":"CachingTaskProgress","l":"getBytes()","url":"com/theoplayer/android/api/cache/CachingTaskProgress.html#getBytes()"}, {"p":"com.theoplayer.android.api.cache","c":"CachingTaskProgress","l":"getBytesCached()","url":"com/theoplayer/android/api/cache/CachingTaskProgress.html#getBytesCached()"}, {"p":"com.theoplayer.android.api.cache","c":"CachingTaskProgress","l":"getCached()","url":"com/theoplayer/android/api/cache/CachingTaskProgress.html#getCached()"}, {"p":"com.theoplayer.android.api.cache","c":"CachingTaskProgress","l":"getSecondsCached()","url":"com/theoplayer/android/api/cache/CachingTaskProgress.html#getSecondsCached()"}, {"p":"com.theoplayer.android.api.cache","c":"CachingTaskProgress","l":"getPercentageCached()","url":"com/theoplayer/android/api/cache/CachingTaskProgress.html#getPercentageCached()"}, {"p":"com.theoplayer.android.api.cache","c":"CacheStatus","l":"values()","url":"com/theoplayer/android/api/cache/CacheStatus.html#values()"}, {"p":"com.theoplayer.android.api.cache","c":"CacheStatus","l":"valueOf(String)","url":"com/theoplayer/android/api/cache/CacheStatus.html#valueOf(java.lang.String)"}, {"p":"com.theoplayer.android.api.cache","c":"CachingParameters.Builder","l":"CachingParameters.Builder()","url":"com/theoplayer/android/api/cache/CachingParameters.Builder.html#CachingParameters.Builder()"}, {"p":"com.theoplayer.android.api.cache","c":"CachingParameters.Builder","l":"amount(String)","url":"com/theoplayer/android/api/cache/CachingParameters.Builder.html#amount(java.lang.String)"}, {"p":"com.theoplayer.android.api.cache","c":"CachingParameters.Builder","l":"expirationDate(Date)","url":"com/theoplayer/android/api/cache/CachingParameters.Builder.html#expirationDate(java.util.Date)"}, {"p":"com.theoplayer.android.api.cache","c":"CachingParameters.Builder","l":"bandwidth(Long)","url":"com/theoplayer/android/api/cache/CachingParameters.Builder.html#bandwidth(java.lang.Long)"}, {"p":"com.theoplayer.android.api.cache","c":"CachingParameters.Builder","l":"preferredTrackSelection(CachingPreferredTrackSelection)","url":"com/theoplayer/android/api/cache/CachingParameters.Builder.html#preferredTrackSelection(com.theoplayer.android.api.cache.CachingPreferredTrackSelection)"}, {"p":"com.theoplayer.android.api.cache","c":"CachingParameters.Builder","l":"build()","url":"com/theoplayer/android/api/cache/CachingParameters.Builder.html#build()"}, {"p":"com.theoplayer.android.api.cache","c":"CachingParameters","l":"getAmount()","url":"com/theoplayer/android/api/cache/CachingParameters.html#getAmount()"}, {"p":"com.theoplayer.android.api.cache","c":"CachingParameters","l":"getExpirationDate()","url":"com/theoplayer/android/api/cache/CachingParameters.html#getExpirationDate()"}, {"p":"com.theoplayer.android.api.cache","c":"CachingParameters","l":"getBandwidth()","url":"com/theoplayer/android/api/cache/CachingParameters.html#getBandwidth()"}, {"p":"com.theoplayer.android.api.cache","c":"CachingParameters","l":"getPreferredTrackSelection()","url":"com/theoplayer/android/api/cache/CachingParameters.html#getPreferredTrackSelection()"}, {"p":"com.theoplayer.android.api.cache","c":"CachingTaskStatus","l":"values()","url":"com/theoplayer/android/api/cache/CachingTaskStatus.html#values()"}, {"p":"com.theoplayer.android.api.cache","c":"CachingTaskStatus","l":"valueOf(String)","url":"com/theoplayer/android/api/cache/CachingTaskStatus.html#valueOf(java.lang.String)"}, {"p":"com.theoplayer.android.api.cache","c":"CachingTask","l":"getId()","url":"com/theoplayer/android/api/cache/CachingTask.html#getId()"}, {"p":"com.theoplayer.android.api.cache","c":"CachingTask","l":"getStatus()","url":"com/theoplayer/android/api/cache/CachingTask.html#getStatus()"}, {"p":"com.theoplayer.android.api.cache","c":"CachingTask","l":"getSource()","url":"com/theoplayer/android/api/cache/CachingTask.html#getSource()"}, {"p":"com.theoplayer.android.api.cache","c":"CachingTask","l":"getParameters()","url":"com/theoplayer/android/api/cache/CachingTask.html#getParameters()"}, {"p":"com.theoplayer.android.api.cache","c":"CachingTask","l":"getDuration()","url":"com/theoplayer/android/api/cache/CachingTask.html#getDuration()"}, {"p":"com.theoplayer.android.api.cache","c":"CachingTask","l":"getBytes()","url":"com/theoplayer/android/api/cache/CachingTask.html#getBytes()"}, {"p":"com.theoplayer.android.api.cache","c":"CachingTask","l":"getBytesCached()","url":"com/theoplayer/android/api/cache/CachingTask.html#getBytesCached()"}, {"p":"com.theoplayer.android.api.cache","c":"CachingTask","l":"getCached()","url":"com/theoplayer/android/api/cache/CachingTask.html#getCached()"}, {"p":"com.theoplayer.android.api.cache","c":"CachingTask","l":"getSecondsCached()","url":"com/theoplayer/android/api/cache/CachingTask.html#getSecondsCached()"}, {"p":"com.theoplayer.android.api.cache","c":"CachingTask","l":"getPercentageCached()","url":"com/theoplayer/android/api/cache/CachingTask.html#getPercentageCached()"}, {"p":"com.theoplayer.android.api.cache","c":"CachingTask","l":"getStatusNotificationId()","url":"com/theoplayer/android/api/cache/CachingTask.html#getStatusNotificationId()"}, {"p":"com.theoplayer.android.api.cache","c":"CachingTask","l":"getProgressNotificationId()","url":"com/theoplayer/android/api/cache/CachingTask.html#getProgressNotificationId()"}, {"p":"com.theoplayer.android.api.cache","c":"CachingTask","l":"license()","url":"com/theoplayer/android/api/cache/CachingTask.html#license()"}, {"p":"com.theoplayer.android.api.cache","c":"CachingTask","l":"start()","url":"com/theoplayer/android/api/cache/CachingTask.html#start()"}, {"p":"com.theoplayer.android.api.cache","c":"CachingTask","l":"pause()","url":"com/theoplayer/android/api/cache/CachingTask.html#pause()"}, {"p":"com.theoplayer.android.api.cache","c":"CachingTask","l":"remove()","url":"com/theoplayer/android/api/cache/CachingTask.html#remove()"}, {"p":"com.theoplayer.android.api.cache","c":"CachingTask","l":"getError()","url":"com/theoplayer/android/api/cache/CachingTask.html#getError()"}, {"p":"com.theoplayer.android.api.cache","c":"CachingTaskList","l":"getTaskById(String)","url":"com/theoplayer/android/api/cache/CachingTaskList.html#getTaskById(java.lang.String)"}, {"p":"com.theoplayer.android.api.cache","c":"CachingTaskLicense","l":"renew()","url":"com/theoplayer/android/api/cache/CachingTaskLicense.html#renew()"}, {"p":"com.theoplayer.android.api.cache","c":"CachingTaskLicense","l":"renew(DRMConfiguration)","url":"com/theoplayer/android/api/cache/CachingTaskLicense.html#renew(com.theoplayer.android.api.source.drm.DRMConfiguration)"}, {"p":"com.theoplayer.android.api.cache","c":"CachingPreferredTrackSelection.Builder","l":"CachingPreferredTrackSelection.Builder()","url":"com/theoplayer/android/api/cache/CachingPreferredTrackSelection.Builder.html#CachingPreferredTrackSelection.Builder()"}, {"p":"com.theoplayer.android.api.cache","c":"CachingPreferredTrackSelection.Builder","l":"audioTrackSelection(Array)","url":"com/theoplayer/android/api/cache/CachingPreferredTrackSelection.Builder.html#audioTrackSelection(kotlin.Array)"}, {"p":"com.theoplayer.android.api.cache","c":"CachingPreferredTrackSelection.Builder","l":"textTrackSelection(Array)","url":"com/theoplayer/android/api/cache/CachingPreferredTrackSelection.Builder.html#textTrackSelection(kotlin.Array)"}, {"p":"com.theoplayer.android.api.cache","c":"CachingPreferredTrackSelection.Builder","l":"build()","url":"com/theoplayer/android/api/cache/CachingPreferredTrackSelection.Builder.html#build()"}, {"p":"com.theoplayer.android.api.cache","c":"CachingPreferredTrackSelection","l":"getAudioTrackSelection()","url":"com/theoplayer/android/api/cache/CachingPreferredTrackSelection.html#getAudioTrackSelection()"}, {"p":"com.theoplayer.android.api.cache","c":"CachingPreferredTrackSelection","l":"getTextTrackSelection()","url":"com/theoplayer/android/api/cache/CachingPreferredTrackSelection.html#getTextTrackSelection()"}, {"p":"com.theoplayer.android.api.cache","c":"CachingPreferredTrackSelection","l":"toString()","url":"com/theoplayer/android/api/cache/CachingPreferredTrackSelection.html#toString()"}, {"p":"com.theoplayer.android.api.cache","c":"CachingTaskError","l":"CachingTaskError(ErrorCode, String)","url":"com/theoplayer/android/api/cache/CachingTaskError.html#CachingTaskError(com.theoplayer.android.api.error.ErrorCode,java.lang.String)"}, {"p":"com.theoplayer.android.api.cache","c":"CachingTaskError","l":"getErrorCode()","url":"com/theoplayer/android/api/cache/CachingTaskError.html#getErrorCode()"}, {"p":"com.theoplayer.android.api.cache","c":"CachingTaskError","l":"getDescription()","url":"com/theoplayer/android/api/cache/CachingTaskError.html#getDescription()"}, {"p":"com.theoplayer.android.api.cache","c":"Cache","l":"getStatus()","url":"com/theoplayer/android/api/cache/Cache.html#getStatus()"}, {"p":"com.theoplayer.android.api.cache","c":"Cache","l":"getTasks()","url":"com/theoplayer/android/api/cache/Cache.html#getTasks()"}, {"p":"com.theoplayer.android.api.cache","c":"Cache","l":"createTask(SourceDescription, CachingParameters)","url":"com/theoplayer/android/api/cache/Cache.html#createTask(com.theoplayer.android.api.source.SourceDescription,com.theoplayer.android.api.cache.CachingParameters)"}, {"p":"com.theoplayer.android.api.cache","c":"Cache","l":"setNotificationBuilder(CacheNotificationsBuilder)","url":"com/theoplayer/android/api/cache/Cache.html#setNotificationBuilder(com.theoplayer.android.api.cache.CacheNotificationsBuilder)"}, {"p":"com.theoplayer.android.api.cache","c":"Cache","l":"getNotificationBuilder()","url":"com/theoplayer/android/api/cache/Cache.html#getNotificationBuilder()"}, {"p":"com.theoplayer.android.api.cache","c":"Cache","l":"getNetwork()","url":"com/theoplayer/android/api/cache/Cache.html#getNetwork()"}, {"p":"com.theoplayer.android.api.cache","c":"CacheNotificationsBuilder","l":"createProgressNotificationBuilder(CachingTask, NotificationCompat.Builder)","url":"com/theoplayer/android/api/cache/CacheNotificationsBuilder.html#createProgressNotificationBuilder(com.theoplayer.android.api.cache.CachingTask,androidx.core.app.NotificationCompat.Builder)"}, {"p":"com.theoplayer.android.api.cache","c":"CacheNotificationsBuilder","l":"createStatusNotificationBuilder(CachingTask, NotificationCompat.Builder)","url":"com/theoplayer/android/api/cache/CacheNotificationsBuilder.html#createStatusNotificationBuilder(com.theoplayer.android.api.cache.CachingTask,androidx.core.app.NotificationCompat.Builder)"}, {"p":"com.theoplayer.android.api.cache","c":"CacheNotificationsBuilder","l":"createNotificationChannel(NotificationChannelCompat.Builder)","url":"com/theoplayer/android/api/cache/CacheNotificationsBuilder.html#createNotificationChannel(androidx.core.app.NotificationChannelCompat.Builder)"}, {"p":"com.theoplayer.android.api.player","c":"AspectRatio","l":"values()","url":"com/theoplayer/android/api/player/AspectRatio.html#values()"}, {"p":"com.theoplayer.android.api.player","c":"AspectRatio","l":"valueOf(String)","url":"com/theoplayer/android/api/player/AspectRatio.html#valueOf(java.lang.String)"}, {"p":"com.theoplayer.android.api.player","c":"RenderingTarget","l":"values()","url":"com/theoplayer/android/api/player/RenderingTarget.html#values()"}, {"p":"com.theoplayer.android.api.player","c":"RenderingTarget","l":"valueOf(String)","url":"com/theoplayer/android/api/player/RenderingTarget.html#valueOf(java.lang.String)"}, {"p":"com.theoplayer.android.api.player","c":"PresentationMode","l":"values()","url":"com/theoplayer/android/api/player/PresentationMode.html#values()"}, {"p":"com.theoplayer.android.api.player","c":"PresentationMode","l":"valueOf(String)","url":"com/theoplayer/android/api/player/PresentationMode.html#valueOf(java.lang.String)"}, {"p":"com.theoplayer.android.api.player","c":"PresentationMode","l":"getMode()","url":"com/theoplayer/android/api/player/PresentationMode.html#getMode()"}, {"p":"com.theoplayer.android.api.player","c":"PreloadType","l":"values()","url":"com/theoplayer/android/api/player/PreloadType.html#values()"}, {"p":"com.theoplayer.android.api.player","c":"PreloadType","l":"valueOf(String)","url":"com/theoplayer/android/api/player/PreloadType.html#valueOf(java.lang.String)"}, {"p":"com.theoplayer.android.api.player","c":"PreloadType","l":"getType()","url":"com/theoplayer/android/api/player/PreloadType.html#getType()"}, {"p":"com.theoplayer.android.api.player","c":"ReadyState","l":"from(int)","url":"com/theoplayer/android/api/player/ReadyState.html#from(int)"}, {"p":"com.theoplayer.android.api.player","c":"ReadyState","l":"values()","url":"com/theoplayer/android/api/player/ReadyState.html#values()"}, {"p":"com.theoplayer.android.api.player","c":"ReadyState","l":"valueOf(String)","url":"com/theoplayer/android/api/player/ReadyState.html#valueOf(java.lang.String)"}, {"p":"com.theoplayer.android.api.player","c":"NetworkConfiguration.Builder","l":"NetworkConfiguration.Builder()","url":"com/theoplayer/android/api/player/NetworkConfiguration.Builder.html#NetworkConfiguration.Builder()"}, {"p":"com.theoplayer.android.api.player","c":"NetworkConfiguration.Builder","l":"maxRetries(int)","url":"com/theoplayer/android/api/player/NetworkConfiguration.Builder.html#maxRetries(int)"}, {"p":"com.theoplayer.android.api.player","c":"NetworkConfiguration.Builder","l":"minimumBackOff(long)","url":"com/theoplayer/android/api/player/NetworkConfiguration.Builder.html#minimumBackOff(long)"}, {"p":"com.theoplayer.android.api.player","c":"NetworkConfiguration.Builder","l":"maximumBackOff(long)","url":"com/theoplayer/android/api/player/NetworkConfiguration.Builder.html#maximumBackOff(long)"}, {"p":"com.theoplayer.android.api.player","c":"NetworkConfiguration.Builder","l":"build()","url":"com/theoplayer/android/api/player/NetworkConfiguration.Builder.html#build()"}, {"p":"com.theoplayer.android.api.player","c":"NetworkConfiguration","l":"getMaxRetries()","url":"com/theoplayer/android/api/player/NetworkConfiguration.html#getMaxRetries()"}, {"p":"com.theoplayer.android.api.player","c":"NetworkConfiguration","l":"getMinimumBackOff()","url":"com/theoplayer/android/api/player/NetworkConfiguration.html#getMinimumBackOff()"}, {"p":"com.theoplayer.android.api.player","c":"NetworkConfiguration","l":"getMaximumBackOff()","url":"com/theoplayer/android/api/player/NetworkConfiguration.html#getMaximumBackOff()"}, {"p":"com.theoplayer.android.api.player","c":"Player","l":"addIntegration(Integration)","url":"com/theoplayer/android/api/player/Player.html#addIntegration(com.theoplayer.android.api.Integration)"}, {"p":"com.theoplayer.android.api.player","c":"Player","l":"removeIntegration(Integration)","url":"com/theoplayer/android/api/player/Player.html#removeIntegration(com.theoplayer.android.api.Integration)"}, {"p":"com.theoplayer.android.api.player","c":"Player","l":"getAds()","url":"com/theoplayer/android/api/player/Player.html#getAds()"}, {"p":"com.theoplayer.android.api.player","c":"Player","l":"getAbr()","url":"com/theoplayer/android/api/player/Player.html#getAbr()"}, {"p":"com.theoplayer.android.api.player","c":"Player","l":"getVideoTracks()","url":"com/theoplayer/android/api/player/Player.html#getVideoTracks()"}, {"p":"com.theoplayer.android.api.player","c":"Player","l":"getAudioTracks()","url":"com/theoplayer/android/api/player/Player.html#getAudioTracks()"}, {"p":"com.theoplayer.android.api.player","c":"Player","l":"getTextTracks()","url":"com/theoplayer/android/api/player/Player.html#getTextTracks()"}, {"p":"com.theoplayer.android.api.player","c":"Player","l":"getDuration()","url":"com/theoplayer/android/api/player/Player.html#getDuration()"}, {"p":"com.theoplayer.android.api.player","c":"Player","l":"isAutoplay()","url":"com/theoplayer/android/api/player/Player.html#isAutoplay()"}, {"p":"com.theoplayer.android.api.player","c":"Player","l":"setAutoplay(boolean)","url":"com/theoplayer/android/api/player/Player.html#setAutoplay(boolean)"}, {"p":"com.theoplayer.android.api.player","c":"Player","l":"getVolume()","url":"com/theoplayer/android/api/player/Player.html#getVolume()"}, {"p":"com.theoplayer.android.api.player","c":"Player","l":"setVolume(double)","url":"com/theoplayer/android/api/player/Player.html#setVolume(double)"}, {"p":"com.theoplayer.android.api.player","c":"Player","l":"getPreload()","url":"com/theoplayer/android/api/player/Player.html#getPreload()"}, {"p":"com.theoplayer.android.api.player","c":"Player","l":"setPreload(PreloadType)","url":"com/theoplayer/android/api/player/Player.html#setPreload(com.theoplayer.android.api.player.PreloadType)"}, {"p":"com.theoplayer.android.api.player","c":"Player","l":"isMuted()","url":"com/theoplayer/android/api/player/Player.html#isMuted()"}, {"p":"com.theoplayer.android.api.player","c":"Player","l":"setMuted(boolean)","url":"com/theoplayer/android/api/player/Player.html#setMuted(boolean)"}, {"p":"com.theoplayer.android.api.player","c":"Player","l":"isSeeking()","url":"com/theoplayer/android/api/player/Player.html#isSeeking()"}, {"p":"com.theoplayer.android.api.player","c":"Player","l":"getSource()","url":"com/theoplayer/android/api/player/Player.html#getSource()"}, {"p":"com.theoplayer.android.api.player","c":"Player","l":"setSource(SourceDescription)","url":"com/theoplayer/android/api/player/Player.html#setSource(com.theoplayer.android.api.source.SourceDescription)"}, {"p":"com.theoplayer.android.api.player","c":"Player","l":"getSrc()","url":"com/theoplayer/android/api/player/Player.html#getSrc()"}, {"p":"com.theoplayer.android.api.player","c":"Player","l":"setSrc(String)","url":"com/theoplayer/android/api/player/Player.html#setSrc(java.lang.String)"}, {"p":"com.theoplayer.android.api.player","c":"Player","l":"isPaused()","url":"com/theoplayer/android/api/player/Player.html#isPaused()"}, {"p":"com.theoplayer.android.api.player","c":"Player","l":"isEnded()","url":"com/theoplayer/android/api/player/Player.html#isEnded()"}, {"p":"com.theoplayer.android.api.player","c":"Player","l":"play()","url":"com/theoplayer/android/api/player/Player.html#play()"}, {"p":"com.theoplayer.android.api.player","c":"Player","l":"pause()","url":"com/theoplayer/android/api/player/Player.html#pause()"}, {"p":"com.theoplayer.android.api.player","c":"Player","l":"stop()","url":"com/theoplayer/android/api/player/Player.html#stop()"}, {"p":"com.theoplayer.android.api.player","c":"Player","l":"getReadyState()","url":"com/theoplayer/android/api/player/Player.html#getReadyState()"}, {"p":"com.theoplayer.android.api.player","c":"Player","l":"getBuffered()","url":"com/theoplayer/android/api/player/Player.html#getBuffered()"}, {"p":"com.theoplayer.android.api.player","c":"Player","l":"getCurrentTime()","url":"com/theoplayer/android/api/player/Player.html#getCurrentTime()"}, {"p":"com.theoplayer.android.api.player","c":"Player","l":"getMetrics()","url":"com/theoplayer/android/api/player/Player.html#getMetrics()"}, {"p":"com.theoplayer.android.api.player","c":"Player","l":"getError()","url":"com/theoplayer/android/api/player/Player.html#getError()"}, {"p":"com.theoplayer.android.api.player","c":"Player","l":"getPlaybackRate()","url":"com/theoplayer/android/api/player/Player.html#getPlaybackRate()"}, {"p":"com.theoplayer.android.api.player","c":"Player","l":"setPlaybackRate(double)","url":"com/theoplayer/android/api/player/Player.html#setPlaybackRate(double)"}, {"p":"com.theoplayer.android.api.player","c":"Player","l":"getPlayed()","url":"com/theoplayer/android/api/player/Player.html#getPlayed()"}, {"p":"com.theoplayer.android.api.player","c":"Player","l":"getSeekable()","url":"com/theoplayer/android/api/player/Player.html#getSeekable()"}, {"p":"com.theoplayer.android.api.player","c":"Player","l":"getCurrentProgramDateTime()","url":"com/theoplayer/android/api/player/Player.html#getCurrentProgramDateTime()"}, {"p":"com.theoplayer.android.api.player","c":"Player","l":"setCurrentProgramDateTime(Date)","url":"com/theoplayer/android/api/player/Player.html#setCurrentProgramDateTime(java.util.Date)"}, {"p":"com.theoplayer.android.api.player","c":"Player","l":"getVideoHeight()","url":"com/theoplayer/android/api/player/Player.html#getVideoHeight()"}, {"p":"com.theoplayer.android.api.player","c":"Player","l":"getVideoWidth()","url":"com/theoplayer/android/api/player/Player.html#getVideoWidth()"}, {"p":"com.theoplayer.android.api.player","c":"Player","l":"setCurrentTime(double)","url":"com/theoplayer/android/api/player/Player.html#setCurrentTime(double)"}, {"p":"com.theoplayer.android.api.player","c":"Player","l":"getHespApi()","url":"com/theoplayer/android/api/player/Player.html#getHespApi()"}, {"p":"com.theoplayer.android.api.player","c":"Player","l":"setAspectRatio(AspectRatio)","url":"com/theoplayer/android/api/player/Player.html#setAspectRatio(com.theoplayer.android.api.player.AspectRatio)"}, {"p":"com.theoplayer.android.api.player","c":"Player","l":"setRenderingTarget(RenderingTarget)","url":"com/theoplayer/android/api/player/Player.html#setRenderingTarget(com.theoplayer.android.api.player.RenderingTarget)"}, {"p":"com.theoplayer.android.api.player","c":"Player","l":"setCustomSurface(Surface, int, int)","url":"com/theoplayer/android/api/player/Player.html#setCustomSurface(android.view.Surface,int,int)"}, {"p":"com.theoplayer.android.api.player","c":"Player","l":"getTextTrackStyle()","url":"com/theoplayer/android/api/player/Player.html#getTextTrackStyle()"}, {"p":"com.theoplayer.android.api.player","c":"Player","l":"getNetwork()","url":"com/theoplayer/android/api/player/Player.html#getNetwork()"}, {"p":"com.theoplayer.android.api.player","c":"Player","l":"getLatencyManager()","url":"com/theoplayer/android/api/player/Player.html#getLatencyManager()"}, {"p":"com.theoplayer.android.api.player.track","c":"TrackList","l":"length()","url":"com/theoplayer/android/api/player/track/TrackList.html#length()"}, {"p":"com.theoplayer.android.api.player.track","c":"TrackList","l":"getItem(int)","url":"com/theoplayer/android/api/player/track/TrackList.html#getItem(int)"}, {"p":"com.theoplayer.android.api.player.track","c":"Track","l":"getKind()","url":"com/theoplayer/android/api/player/track/Track.html#getKind()"}, {"p":"com.theoplayer.android.api.player.track","c":"Track","l":"getId()","url":"com/theoplayer/android/api/player/track/Track.html#getId()"}, {"p":"com.theoplayer.android.api.player.track","c":"Track","l":"getUid()","url":"com/theoplayer/android/api/player/track/Track.html#getUid()"}, {"p":"com.theoplayer.android.api.player.track","c":"Track","l":"getLabel()","url":"com/theoplayer/android/api/player/track/Track.html#getLabel()"}, {"p":"com.theoplayer.android.api.player.track","c":"Track","l":"getLanguage()","url":"com/theoplayer/android/api/player/track/Track.html#getLanguage()"}, {"p":"com.theoplayer.android.api.player.track.texttrack","c":"TextTrackType","l":"from(String)","url":"com/theoplayer/android/api/player/track/texttrack/TextTrackType.html#from(java.lang.String)"}, {"p":"com.theoplayer.android.api.player.track.texttrack","c":"TextTrackType","l":"toString()","url":"com/theoplayer/android/api/player/track/texttrack/TextTrackType.html#toString()"}, {"p":"com.theoplayer.android.api.player.track.texttrack","c":"TextTrackType","l":"values()","url":"com/theoplayer/android/api/player/track/texttrack/TextTrackType.html#values()"}, {"p":"com.theoplayer.android.api.player.track.texttrack","c":"TextTrackType","l":"valueOf(String)","url":"com/theoplayer/android/api/player/track/texttrack/TextTrackType.html#valueOf(java.lang.String)"}, {"p":"com.theoplayer.android.api.player.track.texttrack","c":"TextTrackType","l":"getType()","url":"com/theoplayer/android/api/player/track/texttrack/TextTrackType.html#getType()"}, {"p":"com.theoplayer.android.api.player.track.texttrack","c":"TextTrackStyle.EdgeType","l":"values()","url":"com/theoplayer/android/api/player/track/texttrack/TextTrackStyle.EdgeType.html#values()"}, {"p":"com.theoplayer.android.api.player.track.texttrack","c":"TextTrackStyle.EdgeType","l":"valueOf(String)","url":"com/theoplayer/android/api/player/track/texttrack/TextTrackStyle.EdgeType.html#valueOf(java.lang.String)"}, {"p":"com.theoplayer.android.api.player.track.texttrack","c":"TextTrackStyle.FontStyle","l":"values()","url":"com/theoplayer/android/api/player/track/texttrack/TextTrackStyle.FontStyle.html#values()"}, {"p":"com.theoplayer.android.api.player.track.texttrack","c":"TextTrackStyle.FontStyle","l":"valueOf(String)","url":"com/theoplayer/android/api/player/track/texttrack/TextTrackStyle.FontStyle.html#valueOf(java.lang.String)"}, {"p":"com.theoplayer.android.api.player.track.texttrack","c":"TextTrackStyle.FontFamily","l":"values()","url":"com/theoplayer/android/api/player/track/texttrack/TextTrackStyle.FontFamily.html#values()"}, {"p":"com.theoplayer.android.api.player.track.texttrack","c":"TextTrackStyle.FontFamily","l":"valueOf(String)","url":"com/theoplayer/android/api/player/track/texttrack/TextTrackStyle.FontFamily.html#valueOf(java.lang.String)"}, {"p":"com.theoplayer.android.api.player.track.texttrack","c":"TextTrackStyle","l":"setFontColor(int)","url":"com/theoplayer/android/api/player/track/texttrack/TextTrackStyle.html#setFontColor(int)"}, {"p":"com.theoplayer.android.api.player.track.texttrack","c":"TextTrackStyle","l":"getFontColor()","url":"com/theoplayer/android/api/player/track/texttrack/TextTrackStyle.html#getFontColor()"}, {"p":"com.theoplayer.android.api.player.track.texttrack","c":"TextTrackStyle","l":"setBackgroundColor(int)","url":"com/theoplayer/android/api/player/track/texttrack/TextTrackStyle.html#setBackgroundColor(int)"}, {"p":"com.theoplayer.android.api.player.track.texttrack","c":"TextTrackStyle","l":"getBackgroundColor()","url":"com/theoplayer/android/api/player/track/texttrack/TextTrackStyle.html#getBackgroundColor()"}, {"p":"com.theoplayer.android.api.player.track.texttrack","c":"TextTrackStyle","l":"setWindowColor(int)","url":"com/theoplayer/android/api/player/track/texttrack/TextTrackStyle.html#setWindowColor(int)"}, {"p":"com.theoplayer.android.api.player.track.texttrack","c":"TextTrackStyle","l":"getWindowColor()","url":"com/theoplayer/android/api/player/track/texttrack/TextTrackStyle.html#getWindowColor()"}, {"p":"com.theoplayer.android.api.player.track.texttrack","c":"TextTrackStyle","l":"setEdgeColor(int)","url":"com/theoplayer/android/api/player/track/texttrack/TextTrackStyle.html#setEdgeColor(int)"}, {"p":"com.theoplayer.android.api.player.track.texttrack","c":"TextTrackStyle","l":"getEdgeColor()","url":"com/theoplayer/android/api/player/track/texttrack/TextTrackStyle.html#getEdgeColor()"}, {"p":"com.theoplayer.android.api.player.track.texttrack","c":"TextTrackStyle","l":"setEdgeType(TextTrackStyle.EdgeType)","url":"com/theoplayer/android/api/player/track/texttrack/TextTrackStyle.html#setEdgeType(com.theoplayer.android.api.player.track.texttrack.TextTrackStyle.EdgeType)"}, {"p":"com.theoplayer.android.api.player.track.texttrack","c":"TextTrackStyle","l":"getEdgeType()","url":"com/theoplayer/android/api/player/track/texttrack/TextTrackStyle.html#getEdgeType()"}, {"p":"com.theoplayer.android.api.player.track.texttrack","c":"TextTrackStyle","l":"setFont(TextTrackStyle.FontFamily, TextTrackStyle.FontStyle)","url":"com/theoplayer/android/api/player/track/texttrack/TextTrackStyle.html#setFont(com.theoplayer.android.api.player.track.texttrack.TextTrackStyle.FontFamily,com.theoplayer.android.api.player.track.texttrack.TextTrackStyle.FontStyle)"}, {"p":"com.theoplayer.android.api.player.track.texttrack","c":"TextTrackStyle","l":"setFont(String, TextTrackStyle.FontStyle)","url":"com/theoplayer/android/api/player/track/texttrack/TextTrackStyle.html#setFont(java.lang.String,com.theoplayer.android.api.player.track.texttrack.TextTrackStyle.FontStyle)"}, {"p":"com.theoplayer.android.api.player.track.texttrack","c":"TextTrackStyle","l":"getFontStyle()","url":"com/theoplayer/android/api/player/track/texttrack/TextTrackStyle.html#getFontStyle()"}, {"p":"com.theoplayer.android.api.player.track.texttrack","c":"TextTrackStyle","l":"getFontFamily()","url":"com/theoplayer/android/api/player/track/texttrack/TextTrackStyle.html#getFontFamily()"}, {"p":"com.theoplayer.android.api.player.track.texttrack","c":"TextTrackStyle","l":"getFontFile()","url":"com/theoplayer/android/api/player/track/texttrack/TextTrackStyle.html#getFontFile()"}, {"p":"com.theoplayer.android.api.player.track.texttrack","c":"TextTrackStyle","l":"setFontSize(int)","url":"com/theoplayer/android/api/player/track/texttrack/TextTrackStyle.html#setFontSize(int)"}, {"p":"com.theoplayer.android.api.player.track.texttrack","c":"TextTrackStyle","l":"getFontSize()","url":"com/theoplayer/android/api/player/track/texttrack/TextTrackStyle.html#getFontSize()"}, {"p":"com.theoplayer.android.api.player.track.texttrack","c":"TextTrackStyle","l":"setMarginLeft(int)","url":"com/theoplayer/android/api/player/track/texttrack/TextTrackStyle.html#setMarginLeft(int)"}, {"p":"com.theoplayer.android.api.player.track.texttrack","c":"TextTrackStyle","l":"setMarginTop(int)","url":"com/theoplayer/android/api/player/track/texttrack/TextTrackStyle.html#setMarginTop(int)"}, {"p":"com.theoplayer.android.api.player.track.texttrack","c":"TextTrackStyle","l":"getMarginLeft()","url":"com/theoplayer/android/api/player/track/texttrack/TextTrackStyle.html#getMarginLeft()"}, {"p":"com.theoplayer.android.api.player.track.texttrack","c":"TextTrackStyle","l":"getMarginTop()","url":"com/theoplayer/android/api/player/track/texttrack/TextTrackStyle.html#getMarginTop()"}, {"p":"com.theoplayer.android.api.player.track.texttrack","c":"TextTrackStyle","l":"reset()","url":"com/theoplayer/android/api/player/track/texttrack/TextTrackStyle.html#reset()"}, {"p":"com.theoplayer.android.api.player.track.texttrack","c":"TextTrackMode","l":"from(String)","url":"com/theoplayer/android/api/player/track/texttrack/TextTrackMode.html#from(java.lang.String)"}, {"p":"com.theoplayer.android.api.player.track.texttrack","c":"TextTrackMode","l":"toString()","url":"com/theoplayer/android/api/player/track/texttrack/TextTrackMode.html#toString()"}, {"p":"com.theoplayer.android.api.player.track.texttrack","c":"TextTrackMode","l":"values()","url":"com/theoplayer/android/api/player/track/texttrack/TextTrackMode.html#values()"}, {"p":"com.theoplayer.android.api.player.track.texttrack","c":"TextTrackMode","l":"valueOf(String)","url":"com/theoplayer/android/api/player/track/texttrack/TextTrackMode.html#valueOf(java.lang.String)"}, {"p":"com.theoplayer.android.api.player.track.texttrack","c":"TextTrackMode","l":"getMode()","url":"com/theoplayer/android/api/player/track/texttrack/TextTrackMode.html#getMode()"}, {"p":"com.theoplayer.android.api.player.track.texttrack","c":"TextTrack","l":"getKind()","url":"com/theoplayer/android/api/player/track/texttrack/TextTrack.html#getKind()"}, {"p":"com.theoplayer.android.api.player.track.texttrack","c":"TextTrack","l":"getInBandMetadataTrackDispatchType()","url":"com/theoplayer/android/api/player/track/texttrack/TextTrack.html#getInBandMetadataTrackDispatchType()"}, {"p":"com.theoplayer.android.api.player.track.texttrack","c":"TextTrack","l":"getMode()","url":"com/theoplayer/android/api/player/track/texttrack/TextTrack.html#getMode()"}, {"p":"com.theoplayer.android.api.player.track.texttrack","c":"TextTrack","l":"setMode(TextTrackMode)","url":"com/theoplayer/android/api/player/track/texttrack/TextTrack.html#setMode(com.theoplayer.android.api.player.track.texttrack.TextTrackMode)"}, {"p":"com.theoplayer.android.api.player.track.texttrack","c":"TextTrack","l":"getReadyState()","url":"com/theoplayer/android/api/player/track/texttrack/TextTrack.html#getReadyState()"}, {"p":"com.theoplayer.android.api.player.track.texttrack","c":"TextTrack","l":"getType()","url":"com/theoplayer/android/api/player/track/texttrack/TextTrack.html#getType()"}, {"p":"com.theoplayer.android.api.player.track.texttrack","c":"TextTrack","l":"getCues()","url":"com/theoplayer/android/api/player/track/texttrack/TextTrack.html#getCues()"}, {"p":"com.theoplayer.android.api.player.track.texttrack","c":"TextTrack","l":"getActiveCues()","url":"com/theoplayer/android/api/player/track/texttrack/TextTrack.html#getActiveCues()"}, {"p":"com.theoplayer.android.api.player.track.texttrack","c":"TextTrack","l":"getSource()","url":"com/theoplayer/android/api/player/track/texttrack/TextTrack.html#getSource()"}, {"p":"com.theoplayer.android.api.player.track.texttrack","c":"TextTrack","l":"isForced()","url":"com/theoplayer/android/api/player/track/texttrack/TextTrack.html#isForced()"}, {"p":"com.theoplayer.android.api.player.track.texttrack","c":"TextTrackReadyState","l":"from(int)","url":"com/theoplayer/android/api/player/track/texttrack/TextTrackReadyState.html#from(int)"}, {"p":"com.theoplayer.android.api.player.track.texttrack","c":"TextTrackReadyState","l":"values()","url":"com/theoplayer/android/api/player/track/texttrack/TextTrackReadyState.html#values()"}, {"p":"com.theoplayer.android.api.player.track.texttrack","c":"TextTrackReadyState","l":"valueOf(String)","url":"com/theoplayer/android/api/player/track/texttrack/TextTrackReadyState.html#valueOf(java.lang.String)"}, {"p":"com.theoplayer.android.api.player.track.texttrack","c":"TextTrackKind","l":"values()","url":"com/theoplayer/android/api/player/track/texttrack/TextTrackKind.html#values()"}, {"p":"com.theoplayer.android.api.player.track.texttrack","c":"TextTrackKind","l":"valueOf(String)","url":"com/theoplayer/android/api/player/track/texttrack/TextTrackKind.html#valueOf(java.lang.String)"}, {"p":"com.theoplayer.android.api.player.track.texttrack","c":"TextTrackKind","l":"getType()","url":"com/theoplayer/android/api/player/track/texttrack/TextTrackKind.html#getType()"}, {"p":"com.theoplayer.android.api.player.track.texttrack.cue","c":"TextTrackCue","l":"getId()","url":"com/theoplayer/android/api/player/track/texttrack/cue/TextTrackCue.html#getId()"}, {"p":"com.theoplayer.android.api.player.track.texttrack.cue","c":"TextTrackCue","l":"getUid()","url":"com/theoplayer/android/api/player/track/texttrack/cue/TextTrackCue.html#getUid()"}, {"p":"com.theoplayer.android.api.player.track.texttrack.cue","c":"TextTrackCue","l":"getStartTime()","url":"com/theoplayer/android/api/player/track/texttrack/cue/TextTrackCue.html#getStartTime()"}, {"p":"com.theoplayer.android.api.player.track.texttrack.cue","c":"TextTrackCue","l":"setStartTime(double)","url":"com/theoplayer/android/api/player/track/texttrack/cue/TextTrackCue.html#setStartTime(double)"}, {"p":"com.theoplayer.android.api.player.track.texttrack.cue","c":"TextTrackCue","l":"getEndTime()","url":"com/theoplayer/android/api/player/track/texttrack/cue/TextTrackCue.html#getEndTime()"}, {"p":"com.theoplayer.android.api.player.track.texttrack.cue","c":"TextTrackCue","l":"setEndTime(double)","url":"com/theoplayer/android/api/player/track/texttrack/cue/TextTrackCue.html#setEndTime(double)"}, {"p":"com.theoplayer.android.api.player.track.texttrack.cue","c":"TextTrackCue","l":"getContent()","url":"com/theoplayer/android/api/player/track/texttrack/cue/TextTrackCue.html#getContent()"}, {"p":"com.theoplayer.android.api.player.track.texttrack.cue","c":"DateRangeCue.CustomAttributes","l":"getDouble(String)","url":"com/theoplayer/android/api/player/track/texttrack/cue/DateRangeCue.CustomAttributes.html#getDouble(java.lang.String)"}, {"p":"com.theoplayer.android.api.player.track.texttrack.cue","c":"DateRangeCue.CustomAttributes","l":"getString(String)","url":"com/theoplayer/android/api/player/track/texttrack/cue/DateRangeCue.CustomAttributes.html#getString(java.lang.String)"}, {"p":"com.theoplayer.android.api.player.track.texttrack.cue","c":"DateRangeCue.CustomAttributes","l":"getBytes(String)","url":"com/theoplayer/android/api/player/track/texttrack/cue/DateRangeCue.CustomAttributes.html#getBytes(java.lang.String)"}, {"p":"com.theoplayer.android.api.player.track.texttrack.cue","c":"DateRangeCue.CustomAttributes","l":"asMap()","url":"com/theoplayer/android/api/player/track/texttrack/cue/DateRangeCue.CustomAttributes.html#asMap()"}, {"p":"com.theoplayer.android.api.player.track.texttrack.cue","c":"DateRangeCue","l":"getAttributeClass()","url":"com/theoplayer/android/api/player/track/texttrack/cue/DateRangeCue.html#getAttributeClass()"}, {"p":"com.theoplayer.android.api.player.track.texttrack.cue","c":"DateRangeCue","l":"getStartDate()","url":"com/theoplayer/android/api/player/track/texttrack/cue/DateRangeCue.html#getStartDate()"}, {"p":"com.theoplayer.android.api.player.track.texttrack.cue","c":"DateRangeCue","l":"getEndDate()","url":"com/theoplayer/android/api/player/track/texttrack/cue/DateRangeCue.html#getEndDate()"}, {"p":"com.theoplayer.android.api.player.track.texttrack.cue","c":"DateRangeCue","l":"getDuration()","url":"com/theoplayer/android/api/player/track/texttrack/cue/DateRangeCue.html#getDuration()"}, {"p":"com.theoplayer.android.api.player.track.texttrack.cue","c":"DateRangeCue","l":"getPlannedDuration()","url":"com/theoplayer/android/api/player/track/texttrack/cue/DateRangeCue.html#getPlannedDuration()"}, {"p":"com.theoplayer.android.api.player.track.texttrack.cue","c":"DateRangeCue","l":"isEndOnNext()","url":"com/theoplayer/android/api/player/track/texttrack/cue/DateRangeCue.html#isEndOnNext()"}, {"p":"com.theoplayer.android.api.player.track.texttrack.cue","c":"DateRangeCue","l":"getScte35Cmd()","url":"com/theoplayer/android/api/player/track/texttrack/cue/DateRangeCue.html#getScte35Cmd()"}, {"p":"com.theoplayer.android.api.player.track.texttrack.cue","c":"DateRangeCue","l":"getScte35Out()","url":"com/theoplayer/android/api/player/track/texttrack/cue/DateRangeCue.html#getScte35Out()"}, {"p":"com.theoplayer.android.api.player.track.texttrack.cue","c":"DateRangeCue","l":"getScte35In()","url":"com/theoplayer/android/api/player/track/texttrack/cue/DateRangeCue.html#getScte35In()"}, {"p":"com.theoplayer.android.api.player.track.texttrack.cue","c":"DateRangeCue","l":"getCustomAttributes()","url":"com/theoplayer/android/api/player/track/texttrack/cue/DateRangeCue.html#getCustomAttributes()"}, {"p":"com.theoplayer.android.api.player.track.mediatrack","c":"MediaTrack","l":"getActiveQuality()","url":"com/theoplayer/android/api/player/track/mediatrack/MediaTrack.html#getActiveQuality()"}, {"p":"com.theoplayer.android.api.player.track.mediatrack","c":"MediaTrack","l":"getQualities()","url":"com/theoplayer/android/api/player/track/mediatrack/MediaTrack.html#getQualities()"}, {"p":"com.theoplayer.android.api.player.track.mediatrack","c":"MediaTrack","l":"getTargetQuality()","url":"com/theoplayer/android/api/player/track/mediatrack/MediaTrack.html#getTargetQuality()"}, {"p":"com.theoplayer.android.api.player.track.mediatrack","c":"MediaTrack","l":"getTargetQualities()","url":"com/theoplayer/android/api/player/track/mediatrack/MediaTrack.html#getTargetQualities()"}, {"p":"com.theoplayer.android.api.player.track.mediatrack","c":"MediaTrack","l":"setTargetQuality(Q)","url":"com/theoplayer/android/api/player/track/mediatrack/MediaTrack.html#setTargetQuality(Q)"}, {"p":"com.theoplayer.android.api.player.track.mediatrack","c":"MediaTrack","l":"setTargetQualities(List)","url":"com/theoplayer/android/api/player/track/mediatrack/MediaTrack.html#setTargetQualities(java.util.List)"}, {"p":"com.theoplayer.android.api.player.track.mediatrack","c":"MediaTrack","l":"isEnabled()","url":"com/theoplayer/android/api/player/track/mediatrack/MediaTrack.html#isEnabled()"}, {"p":"com.theoplayer.android.api.player.track.mediatrack","c":"MediaTrack","l":"setEnabled(boolean)","url":"com/theoplayer/android/api/player/track/mediatrack/MediaTrack.html#setEnabled(boolean)"}, {"p":"com.theoplayer.android.api.player.track.mediatrack.quality","c":"Quality","l":"getBandwidth()","url":"com/theoplayer/android/api/player/track/mediatrack/quality/Quality.html#getBandwidth()"}, {"p":"com.theoplayer.android.api.player.track.mediatrack.quality","c":"Quality","l":"getCodecs()","url":"com/theoplayer/android/api/player/track/mediatrack/quality/Quality.html#getCodecs()"}, {"p":"com.theoplayer.android.api.player.track.mediatrack.quality","c":"Quality","l":"getId()","url":"com/theoplayer/android/api/player/track/mediatrack/quality/Quality.html#getId()"}, {"p":"com.theoplayer.android.api.player.track.mediatrack.quality","c":"Quality","l":"getUid()","url":"com/theoplayer/android/api/player/track/mediatrack/quality/Quality.html#getUid()"}, {"p":"com.theoplayer.android.api.player.track.mediatrack.quality","c":"Quality","l":"getName()","url":"com/theoplayer/android/api/player/track/mediatrack/quality/Quality.html#getName()"}, {"p":"com.theoplayer.android.api.player.track.mediatrack.quality","c":"VideoQuality","l":"getHeight()","url":"com/theoplayer/android/api/player/track/mediatrack/quality/VideoQuality.html#getHeight()"}, {"p":"com.theoplayer.android.api.player.track.mediatrack.quality","c":"VideoQuality","l":"getWidth()","url":"com/theoplayer/android/api/player/track/mediatrack/quality/VideoQuality.html#getWidth()"}, {"p":"com.theoplayer.android.api.player.track.mediatrack.quality","c":"VideoQuality","l":"getFrameRate()","url":"com/theoplayer/android/api/player/track/mediatrack/quality/VideoQuality.html#getFrameRate()"}, {"p":"com.theoplayer.android.api.player.track.mediatrack.quality","c":"VideoQuality","l":"getFirstFrame()","url":"com/theoplayer/android/api/player/track/mediatrack/quality/VideoQuality.html#getFirstFrame()"}, {"p":"com.theoplayer.android.api.player.track.mediatrack.quality","c":"AudioQuality","l":"getAudioSamplingRate()","url":"com/theoplayer/android/api/player/track/mediatrack/quality/AudioQuality.html#getAudioSamplingRate()"}, {"p":"com.theoplayer.android.api.abr","c":"AbrStrategyConfiguration.Builder","l":"AbrStrategyConfiguration.Builder()","url":"com/theoplayer/android/api/abr/AbrStrategyConfiguration.Builder.html#AbrStrategyConfiguration.Builder()"}, {"p":"com.theoplayer.android.api.abr","c":"AbrStrategyConfiguration.Builder","l":"build()","url":"com/theoplayer/android/api/abr/AbrStrategyConfiguration.Builder.html#build()"}, {"p":"com.theoplayer.android.api.abr","c":"AbrStrategyConfiguration.Builder","l":"setType(AbrStrategyType)","url":"com/theoplayer/android/api/abr/AbrStrategyConfiguration.Builder.html#setType(com.theoplayer.android.api.abr.AbrStrategyType)"}, {"p":"com.theoplayer.android.api.abr","c":"AbrStrategyConfiguration.Builder","l":"setMetadata(AbrStrategyMetadata)","url":"com/theoplayer/android/api/abr/AbrStrategyConfiguration.Builder.html#setMetadata(com.theoplayer.android.api.abr.AbrStrategyMetadata)"}, {"p":"com.theoplayer.android.api.abr","c":"AbrStrategyConfiguration","l":"getType()","url":"com/theoplayer/android/api/abr/AbrStrategyConfiguration.html#getType()"}, {"p":"com.theoplayer.android.api.abr","c":"AbrStrategyConfiguration","l":"getMetadata()","url":"com/theoplayer/android/api/abr/AbrStrategyConfiguration.html#getMetadata()"}, {"p":"com.theoplayer.android.api.abr","c":"Abr","l":"setTargetBuffer(int)","url":"com/theoplayer/android/api/abr/Abr.html#setTargetBuffer(int)"}, {"p":"com.theoplayer.android.api.abr","c":"Abr","l":"getTargetBuffer()","url":"com/theoplayer/android/api/abr/Abr.html#getTargetBuffer()"}, {"p":"com.theoplayer.android.api.abr","c":"Abr","l":"getAbrStrategy()","url":"com/theoplayer/android/api/abr/Abr.html#getAbrStrategy()"}, {"p":"com.theoplayer.android.api.abr","c":"Abr","l":"setAbrStrategy(AbrStrategyConfiguration)","url":"com/theoplayer/android/api/abr/Abr.html#setAbrStrategy(com.theoplayer.android.api.abr.AbrStrategyConfiguration)"}, {"p":"com.theoplayer.android.api.abr","c":"AbrStrategyType","l":"values()","url":"com/theoplayer/android/api/abr/AbrStrategyType.html#values()"}, {"p":"com.theoplayer.android.api.abr","c":"AbrStrategyType","l":"valueOf(String)","url":"com/theoplayer/android/api/abr/AbrStrategyType.html#valueOf(java.lang.String)"}, {"p":"com.theoplayer.android.api.abr","c":"AbrStrategyMetadata.Builder","l":"AbrStrategyMetadata.Builder()","url":"com/theoplayer/android/api/abr/AbrStrategyMetadata.Builder.html#AbrStrategyMetadata.Builder()"}, {"p":"com.theoplayer.android.api.abr","c":"AbrStrategyMetadata.Builder","l":"setBitrate(int)","url":"com/theoplayer/android/api/abr/AbrStrategyMetadata.Builder.html#setBitrate(int)"}, {"p":"com.theoplayer.android.api.abr","c":"AbrStrategyMetadata.Builder","l":"build()","url":"com/theoplayer/android/api/abr/AbrStrategyMetadata.Builder.html#build()"}, {"p":"com.theoplayer.android.api.abr","c":"AbrStrategyMetadata","l":"getBitrate()","url":"com/theoplayer/android/api/abr/AbrStrategyMetadata.html#getBitrate()"}, {"p":"com.theoplayer.android.api.event","c":"Event","l":"getType()","url":"com/theoplayer/android/api/event/Event.html#getType()"}, {"p":"com.theoplayer.android.api.event","c":"Event","l":"getDate()","url":"com/theoplayer/android/api/event/Event.html#getDate()"}, {"p":"com.theoplayer.android.api.event","c":"EventDispatcher","l":"addEventListener(EventType, EventListener)","url":"com/theoplayer/android/api/event/EventDispatcher.html#addEventListener(com.theoplayer.android.api.event.EventType,com.theoplayer.android.api.event.EventListener)"}, {"p":"com.theoplayer.android.api.event","c":"EventDispatcher","l":"removeEventListener(EventType, EventListener)","url":"com/theoplayer/android/api/event/EventDispatcher.html#removeEventListener(com.theoplayer.android.api.event.EventType,com.theoplayer.android.api.event.EventListener)"}, {"p":"com.theoplayer.android.api.event","c":"EventListener","l":"handleEvent(E)","url":"com/theoplayer/android/api/event/EventListener.html#handleEvent(E)"}, {"p":"com.theoplayer.android.api.event","c":"EventType","l":"getName()","url":"com/theoplayer/android/api/event/EventType.html#getName()"}, {"p":"com.theoplayer.android.api.event.player","c":"SeekedEvent","l":"getCurrentTime()","url":"com/theoplayer/android/api/event/player/SeekedEvent.html#getCurrentTime()"}, {"p":"com.theoplayer.android.api.event.player","c":"PlayEvent","l":"getCurrentTime()","url":"com/theoplayer/android/api/event/player/PlayEvent.html#getCurrentTime()"}, {"p":"com.theoplayer.android.api.event.player","c":"ContentProtectionErrorEvent","l":"getErrorObject()","url":"com/theoplayer/android/api/event/player/ContentProtectionErrorEvent.html#getErrorObject()"}, {"p":"com.theoplayer.android.api.event.player","c":"SegmentNotFoundEvent","l":"getSegmentStartTime()","url":"com/theoplayer/android/api/event/player/SegmentNotFoundEvent.html#getSegmentStartTime()"}, {"p":"com.theoplayer.android.api.event.player","c":"SegmentNotFoundEvent","l":"getError()","url":"com/theoplayer/android/api/event/player/SegmentNotFoundEvent.html#getError()"}, {"p":"com.theoplayer.android.api.event.player","c":"SegmentNotFoundEvent","l":"getRetryCount()","url":"com/theoplayer/android/api/event/player/SegmentNotFoundEvent.html#getRetryCount()"}, {"p":"com.theoplayer.android.api.event.player","c":"WaitingEvent","l":"getCurrentTime()","url":"com/theoplayer/android/api/event/player/WaitingEvent.html#getCurrentTime()"}, {"p":"com.theoplayer.android.api.event.player","c":"MediaEncryptedEvent","l":"getCurrentTime()","url":"com/theoplayer/android/api/event/player/MediaEncryptedEvent.html#getCurrentTime()"}, {"p":"com.theoplayer.android.api.event.player","c":"MediaEncryptedEvent","l":"getInitData()","url":"com/theoplayer/android/api/event/player/MediaEncryptedEvent.html#getInitData()"}, {"p":"com.theoplayer.android.api.event.player","c":"MediaEncryptedEvent","l":"getInitDataType()","url":"com/theoplayer/android/api/event/player/MediaEncryptedEvent.html#getInitDataType()"}, {"p":"com.theoplayer.android.api.event.player","c":"PresentationModeChange","l":"getPresentationMode()","url":"com/theoplayer/android/api/event/player/PresentationModeChange.html#getPresentationMode()"}, {"p":"com.theoplayer.android.api.event.player","c":"LoadedDataEvent","l":"getCurrentTime()","url":"com/theoplayer/android/api/event/player/LoadedDataEvent.html#getCurrentTime()"}, {"p":"com.theoplayer.android.api.event.player","c":"TimeUpdateEvent","l":"getCurrentTime()","url":"com/theoplayer/android/api/event/player/TimeUpdateEvent.html#getCurrentTime()"}, {"p":"com.theoplayer.android.api.event.player","c":"TimeUpdateEvent","l":"getCurrentProgramDateTime()","url":"com/theoplayer/android/api/event/player/TimeUpdateEvent.html#getCurrentProgramDateTime()"}, {"p":"com.theoplayer.android.api.event.player","c":"SeekingEvent","l":"getCurrentTime()","url":"com/theoplayer/android/api/event/player/SeekingEvent.html#getCurrentTime()"}, {"p":"com.theoplayer.android.api.event.player","c":"ErrorEvent","l":"getErrorObject()","url":"com/theoplayer/android/api/event/player/ErrorEvent.html#getErrorObject()"}, {"p":"com.theoplayer.android.api.event.player","c":"ReadyStateChangeEvent","l":"getReadyState()","url":"com/theoplayer/android/api/event/player/ReadyStateChangeEvent.html#getReadyState()"}, {"p":"com.theoplayer.android.api.event.player","c":"ReadyStateChangeEvent","l":"getCurrentTime()","url":"com/theoplayer/android/api/event/player/ReadyStateChangeEvent.html#getCurrentTime()"}, {"p":"com.theoplayer.android.api.event.player","c":"RateChangeEvent","l":"getCurrentTime()","url":"com/theoplayer/android/api/event/player/RateChangeEvent.html#getCurrentTime()"}, {"p":"com.theoplayer.android.api.event.player","c":"RateChangeEvent","l":"getPlaybackRate()","url":"com/theoplayer/android/api/event/player/RateChangeEvent.html#getPlaybackRate()"}, {"p":"com.theoplayer.android.api.event.player","c":"CanPlayEvent","l":"getCurrentTime()","url":"com/theoplayer/android/api/event/player/CanPlayEvent.html#getCurrentTime()"}, {"p":"com.theoplayer.android.api.event.player","c":"PlayerEventTypes.Identifiers","l":"PlayerEventTypes.Identifiers()","url":"com/theoplayer/android/api/event/player/PlayerEventTypes.Identifiers.html#PlayerEventTypes.Identifiers()"}, {"p":"com.theoplayer.android.api.event.player","c":"PlayerEventTypes","l":"PlayerEventTypes()","url":"com/theoplayer/android/api/event/player/PlayerEventTypes.html#PlayerEventTypes()"}, {"p":"com.theoplayer.android.api.event.player","c":"PauseEvent","l":"getCurrentTime()","url":"com/theoplayer/android/api/event/player/PauseEvent.html#getCurrentTime()"}, {"p":"com.theoplayer.android.api.event.player","c":"ResizeEvent","l":"getCurrentTime()","url":"com/theoplayer/android/api/event/player/ResizeEvent.html#getCurrentTime()"}, {"p":"com.theoplayer.android.api.event.player","c":"ResizeEvent","l":"getWidth()","url":"com/theoplayer/android/api/event/player/ResizeEvent.html#getWidth()"}, {"p":"com.theoplayer.android.api.event.player","c":"ResizeEvent","l":"getHeight()","url":"com/theoplayer/android/api/event/player/ResizeEvent.html#getHeight()"}, {"p":"com.theoplayer.android.api.event.player","c":"PlayingEvent","l":"getCurrentTime()","url":"com/theoplayer/android/api/event/player/PlayingEvent.html#getCurrentTime()"}, {"p":"com.theoplayer.android.api.event.player","c":"LoadedMetadataEvent","l":"getCurrentTime()","url":"com/theoplayer/android/api/event/player/LoadedMetadataEvent.html#getCurrentTime()"}, {"p":"com.theoplayer.android.api.event.player","c":"DurationChangeEvent","l":"getDuration()","url":"com/theoplayer/android/api/event/player/DurationChangeEvent.html#getDuration()"}, {"p":"com.theoplayer.android.api.event.player","c":"ContentProtectionSuccessEvent","l":"getMediaTrackType()","url":"com/theoplayer/android/api/event/player/ContentProtectionSuccessEvent.html#getMediaTrackType()"}, {"p":"com.theoplayer.android.api.event.player","c":"VolumeChangeEvent","l":"getCurrentTime()","url":"com/theoplayer/android/api/event/player/VolumeChangeEvent.html#getCurrentTime()"}, {"p":"com.theoplayer.android.api.event.player","c":"VolumeChangeEvent","l":"getVolume()","url":"com/theoplayer/android/api/event/player/VolumeChangeEvent.html#getVolume()"}, {"p":"com.theoplayer.android.api.event.player","c":"ProgressEvent","l":"getCurrentTime()","url":"com/theoplayer/android/api/event/player/ProgressEvent.html#getCurrentTime()"}, {"p":"com.theoplayer.android.api.event.player","c":"CanPlayThroughEvent","l":"getCurrentTime()","url":"com/theoplayer/android/api/event/player/CanPlayThroughEvent.html#getCurrentTime()"}, {"p":"com.theoplayer.android.api.event.player","c":"EndedEvent","l":"getCurrentTime()","url":"com/theoplayer/android/api/event/player/EndedEvent.html#getCurrentTime()"}, {"p":"com.theoplayer.android.api.event.player","c":"SourceChangeEvent","l":"getSource()","url":"com/theoplayer/android/api/event/player/SourceChangeEvent.html#getSource()"}, {"p":"com.theoplayer.android.api.event.track.texttrack","c":"ChangeEvent","l":"getTrack()","url":"com/theoplayer/android/api/event/track/texttrack/ChangeEvent.html#getTrack()"}, {"p":"com.theoplayer.android.api.event.track.texttrack","c":"TextTrackEventTypes","l":"TextTrackEventTypes()","url":"com/theoplayer/android/api/event/track/texttrack/TextTrackEventTypes.html#TextTrackEventTypes()"}, {"p":"com.theoplayer.android.api.event.track.texttrack","c":"EnterCueEvent","l":"getTrack()","url":"com/theoplayer/android/api/event/track/texttrack/EnterCueEvent.html#getTrack()"}, {"p":"com.theoplayer.android.api.event.track.texttrack","c":"EnterCueEvent","l":"getCue()","url":"com/theoplayer/android/api/event/track/texttrack/EnterCueEvent.html#getCue()"}, {"p":"com.theoplayer.android.api.event.track.texttrack","c":"ExitCueEvent","l":"getTrack()","url":"com/theoplayer/android/api/event/track/texttrack/ExitCueEvent.html#getTrack()"}, {"p":"com.theoplayer.android.api.event.track.texttrack","c":"ExitCueEvent","l":"getCue()","url":"com/theoplayer/android/api/event/track/texttrack/ExitCueEvent.html#getCue()"}, {"p":"com.theoplayer.android.api.event.track.texttrack","c":"RemoveCueEvent","l":"getTrack()","url":"com/theoplayer/android/api/event/track/texttrack/RemoveCueEvent.html#getTrack()"}, {"p":"com.theoplayer.android.api.event.track.texttrack","c":"RemoveCueEvent","l":"getCue()","url":"com/theoplayer/android/api/event/track/texttrack/RemoveCueEvent.html#getCue()"}, {"p":"com.theoplayer.android.api.event.track.texttrack","c":"AddCueEvent","l":"getTrack()","url":"com/theoplayer/android/api/event/track/texttrack/AddCueEvent.html#getTrack()"}, {"p":"com.theoplayer.android.api.event.track.texttrack","c":"AddCueEvent","l":"getCue()","url":"com/theoplayer/android/api/event/track/texttrack/AddCueEvent.html#getCue()"}, {"p":"com.theoplayer.android.api.event.track.texttrack","c":"CueChangeEvent","l":"getTextTrack()","url":"com/theoplayer/android/api/event/track/texttrack/CueChangeEvent.html#getTextTrack()"}, {"p":"com.theoplayer.android.api.event.track.texttrack","c":"UpdateCueEvent","l":"getTrack()","url":"com/theoplayer/android/api/event/track/texttrack/UpdateCueEvent.html#getTrack()"}, {"p":"com.theoplayer.android.api.event.track.texttrack","c":"UpdateCueEvent","l":"getCue()","url":"com/theoplayer/android/api/event/track/texttrack/UpdateCueEvent.html#getCue()"}, {"p":"com.theoplayer.android.api.event.track.texttrack.list","c":"TextTrackListEventTypes","l":"TextTrackListEventTypes()","url":"com/theoplayer/android/api/event/track/texttrack/list/TextTrackListEventTypes.html#TextTrackListEventTypes()"}, {"p":"com.theoplayer.android.api.event.track.texttrack.texttrackcue","c":"TextTrackCueEvent","l":"getCue()","url":"com/theoplayer/android/api/event/track/texttrack/texttrackcue/TextTrackCueEvent.html#getCue()"}, {"p":"com.theoplayer.android.api.event.track.texttrack.texttrackcue","c":"TextTrackCueEventTypes","l":"TextTrackCueEventTypes()","url":"com/theoplayer/android/api/event/track/texttrack/texttrackcue/TextTrackCueEventTypes.html#TextTrackCueEventTypes()"}, {"p":"com.theoplayer.android.api.event.track.tracklist","c":"TrackListEvent","l":"getTrack()","url":"com/theoplayer/android/api/event/track/tracklist/TrackListEvent.html#getTrack()"}, {"p":"com.theoplayer.android.api.event.track.mediatrack.video","c":"VideoTrackEventTypes","l":"VideoTrackEventTypes()","url":"com/theoplayer/android/api/event/track/mediatrack/video/VideoTrackEventTypes.html#VideoTrackEventTypes()"}, {"p":"com.theoplayer.android.api.event.track.mediatrack.video.list","c":"VideoTrackListEventTypes","l":"VideoTrackListEventTypes()","url":"com/theoplayer/android/api/event/track/mediatrack/video/list/VideoTrackListEventTypes.html#VideoTrackListEventTypes()"}, {"p":"com.theoplayer.android.api.event.track.mediatrack.audio","c":"AudioTrackEventTypes","l":"AudioTrackEventTypes()","url":"com/theoplayer/android/api/event/track/mediatrack/audio/AudioTrackEventTypes.html#AudioTrackEventTypes()"}, {"p":"com.theoplayer.android.api.event.track.mediatrack.audio","c":"QualityChangedEvent","l":"getQuality()","url":"com/theoplayer/android/api/event/track/mediatrack/audio/QualityChangedEvent.html#getQuality()"}, {"p":"com.theoplayer.android.api.event.track.mediatrack.audio.list","c":"AudioTrackListEventTypes","l":"AudioTrackListEventTypes()","url":"com/theoplayer/android/api/event/track/mediatrack/audio/list/AudioTrackListEventTypes.html#AudioTrackListEventTypes()"}, {"p":"com.theoplayer.android.api.event.track.mediatrack","c":"AbstractTargetQualityChangedEvent","l":"getQuality()","url":"com/theoplayer/android/api/event/track/mediatrack/AbstractTargetQualityChangedEvent.html#getQuality()"}, {"p":"com.theoplayer.android.api.event.track.mediatrack","c":"AbstractTargetQualityChangedEvent","l":"getQualities()","url":"com/theoplayer/android/api/event/track/mediatrack/AbstractTargetQualityChangedEvent.html#getQualities()"}, {"p":"com.theoplayer.android.api.event.track.mediatrack.quality","c":"QualityEventTypes","l":"QualityEventTypes()","url":"com/theoplayer/android/api/event/track/mediatrack/quality/QualityEventTypes.html#QualityEventTypes()"}, {"p":"com.theoplayer.android.api.event.ads","c":"AdIntegrationKind","l":"from(String)","url":"com/theoplayer/android/api/event/ads/AdIntegrationKind.html#from(java.lang.String)"}, {"p":"com.theoplayer.android.api.event.ads","c":"AdIntegrationKind","l":"toString()","url":"com/theoplayer/android/api/event/ads/AdIntegrationKind.html#toString()"}, {"p":"com.theoplayer.android.api.event.ads","c":"AdIntegrationKind","l":"values()","url":"com/theoplayer/android/api/event/ads/AdIntegrationKind.html#values()"}, {"p":"com.theoplayer.android.api.event.ads","c":"AdIntegrationKind","l":"valueOf(String)","url":"com/theoplayer/android/api/event/ads/AdIntegrationKind.html#valueOf(java.lang.String)"}, {"p":"com.theoplayer.android.api.event.ads","c":"AdIntegrationKind","l":"getType()","url":"com/theoplayer/android/api/event/ads/AdIntegrationKind.html#getType()"}, {"p":"com.theoplayer.android.api.event.ads","c":"AdErrorEvent","l":"getError()","url":"com/theoplayer/android/api/event/ads/AdErrorEvent.html#getError()"}, {"p":"com.theoplayer.android.api.event.ads","c":"SingleAdEvent","l":"getAd()","url":"com/theoplayer/android/api/event/ads/SingleAdEvent.html#getAd()"}, {"p":"com.theoplayer.android.api.event.ads","c":"AdsEventTypes.Identifiers","l":"AdsEventTypes.Identifiers()","url":"com/theoplayer/android/api/event/ads/AdsEventTypes.Identifiers.html#AdsEventTypes.Identifiers()"}, {"p":"com.theoplayer.android.api.event.ads","c":"AdsEventTypes","l":"AdsEventTypes()","url":"com/theoplayer/android/api/event/ads/AdsEventTypes.html#AdsEventTypes()"}, {"p":"com.theoplayer.android.api.event.ads","c":"AdBreakEvent","l":"getAdBreak()","url":"com/theoplayer/android/api/event/ads/AdBreakEvent.html#getAdBreak()"}, {"p":"com.theoplayer.android.api.error","c":"ErrorCode","l":"getCategory()","url":"com/theoplayer/android/api/error/ErrorCode.html#getCategory()"}, {"p":"com.theoplayer.android.api.error","c":"ErrorCode","l":"fromId(int)","url":"com/theoplayer/android/api/error/ErrorCode.html#fromId(int)"}, {"p":"com.theoplayer.android.api.error","c":"ErrorCode","l":"values()","url":"com/theoplayer/android/api/error/ErrorCode.html#values()"}, {"p":"com.theoplayer.android.api.error","c":"ErrorCode","l":"valueOf(String)","url":"com/theoplayer/android/api/error/ErrorCode.html#valueOf(java.lang.String)"}, {"p":"com.theoplayer.android.api.error","c":"ErrorCode","l":"getId()","url":"com/theoplayer/android/api/error/ErrorCode.html#getId()"}, {"p":"com.theoplayer.android.api.error","c":"ContentProtectionException","l":"ContentProtectionException(ErrorCode, String, String, int, String, String, int)","url":"com/theoplayer/android/api/error/ContentProtectionException.html#ContentProtectionException(com.theoplayer.android.api.error.ErrorCode,java.lang.String,java.lang.String,int,java.lang.String,java.lang.String,int)"}, {"p":"com.theoplayer.android.api.error","c":"ContentProtectionException","l":"ContentProtectionException(ErrorCode, String, Throwable, String, int, String, String, int)","url":"com/theoplayer/android/api/error/ContentProtectionException.html#ContentProtectionException(com.theoplayer.android.api.error.ErrorCode,java.lang.String,java.lang.Throwable,java.lang.String,int,java.lang.String,java.lang.String,int)"}, {"p":"com.theoplayer.android.api.error","c":"ContentProtectionException","l":"getUrl()","url":"com/theoplayer/android/api/error/ContentProtectionException.html#getUrl()"}, {"p":"com.theoplayer.android.api.error","c":"ContentProtectionException","l":"getStatus()","url":"com/theoplayer/android/api/error/ContentProtectionException.html#getStatus()"}, {"p":"com.theoplayer.android.api.error","c":"ContentProtectionException","l":"getStatusText()","url":"com/theoplayer/android/api/error/ContentProtectionException.html#getStatusText()"}, {"p":"com.theoplayer.android.api.error","c":"ContentProtectionException","l":"getResponse()","url":"com/theoplayer/android/api/error/ContentProtectionException.html#getResponse()"}, {"p":"com.theoplayer.android.api.error","c":"ErrorCategory","l":"fromId(int)","url":"com/theoplayer/android/api/error/ErrorCategory.html#fromId(int)"}, {"p":"com.theoplayer.android.api.error","c":"ErrorCategory","l":"fromCode(ErrorCode)","url":"com/theoplayer/android/api/error/ErrorCategory.html#fromCode(com.theoplayer.android.api.error.ErrorCode)"}, {"p":"com.theoplayer.android.api.error","c":"ErrorCategory","l":"values()","url":"com/theoplayer/android/api/error/ErrorCategory.html#values()"}, {"p":"com.theoplayer.android.api.error","c":"ErrorCategory","l":"valueOf(String)","url":"com/theoplayer/android/api/error/ErrorCategory.html#valueOf(java.lang.String)"}, {"p":"com.theoplayer.android.api.error","c":"ErrorCategory","l":"getId()","url":"com/theoplayer/android/api/error/ErrorCategory.html#getId()"}, {"p":"com.theoplayer.android.api.error","c":"THEOplayerException","l":"THEOplayerException(ErrorCode, String)","url":"com/theoplayer/android/api/error/THEOplayerException.html#THEOplayerException(com.theoplayer.android.api.error.ErrorCode,java.lang.String)"}, {"p":"com.theoplayer.android.api.error","c":"THEOplayerException","l":"THEOplayerException(ErrorCode, String, Throwable)","url":"com/theoplayer/android/api/error/THEOplayerException.html#THEOplayerException(com.theoplayer.android.api.error.ErrorCode,java.lang.String,java.lang.Throwable)"}, {"p":"com.theoplayer.android.api.error","c":"THEOplayerException","l":"getCode()","url":"com/theoplayer/android/api/error/THEOplayerException.html#getCode()"}, {"p":"com.theoplayer.android.api.error","c":"THEOplayerException","l":"getCategory()","url":"com/theoplayer/android/api/error/THEOplayerException.html#getCategory()"}, {"p":"com.theoplayer.android.api.contentprotection","c":"RequestMethod","l":"values()","url":"com/theoplayer/android/api/contentprotection/RequestMethod.html#values()"}, {"p":"com.theoplayer.android.api.contentprotection","c":"RequestMethod","l":"valueOf(String)","url":"com/theoplayer/android/api/contentprotection/RequestMethod.html#valueOf(java.lang.String)"}, {"p":"com.theoplayer.android.api.contentprotection","c":"LicenseRequestCallback","l":"request(Request)","url":"com/theoplayer/android/api/contentprotection/LicenseRequestCallback.html#request(com.theoplayer.android.api.contentprotection.Request)"}, {"p":"com.theoplayer.android.api.contentprotection","c":"ContentProtectionIntegration","l":"ContentProtectionIntegration()","url":"com/theoplayer/android/api/contentprotection/ContentProtectionIntegration.html#ContentProtectionIntegration()"}, {"p":"com.theoplayer.android.api.contentprotection","c":"ContentProtectionIntegration","l":"onCertificateRequest(Request, CertificateRequestCallback)","url":"com/theoplayer/android/api/contentprotection/ContentProtectionIntegration.html#onCertificateRequest(com.theoplayer.android.api.contentprotection.Request,com.theoplayer.android.api.contentprotection.CertificateRequestCallback)"}, {"p":"com.theoplayer.android.api.contentprotection","c":"ContentProtectionIntegration","l":"onCertificateResponse(Response, CertificateResponseCallback)","url":"com/theoplayer/android/api/contentprotection/ContentProtectionIntegration.html#onCertificateResponse(com.theoplayer.android.api.contentprotection.Response,com.theoplayer.android.api.contentprotection.CertificateResponseCallback)"}, {"p":"com.theoplayer.android.api.contentprotection","c":"ContentProtectionIntegration","l":"onLicenseRequest(Request, LicenseRequestCallback)","url":"com/theoplayer/android/api/contentprotection/ContentProtectionIntegration.html#onLicenseRequest(com.theoplayer.android.api.contentprotection.Request,com.theoplayer.android.api.contentprotection.LicenseRequestCallback)"}, {"p":"com.theoplayer.android.api.contentprotection","c":"ContentProtectionIntegration","l":"onLicenseResponse(Response, LicenseResponseCallback)","url":"com/theoplayer/android/api/contentprotection/ContentProtectionIntegration.html#onLicenseResponse(com.theoplayer.android.api.contentprotection.Response,com.theoplayer.android.api.contentprotection.LicenseResponseCallback)"}, {"p":"com.theoplayer.android.api.contentprotection","c":"LicenseResponseCallback","l":"respond(Array)","url":"com/theoplayer/android/api/contentprotection/LicenseResponseCallback.html#respond(kotlin.Array)"}, {"p":"com.theoplayer.android.api.contentprotection","c":"LicenseResponseCallback","l":"error(Throwable)","url":"com/theoplayer/android/api/contentprotection/LicenseResponseCallback.html#error(java.lang.Throwable)"}, {"p":"com.theoplayer.android.api.contentprotection","c":"ContentProtectionIntegrationFactory","l":"build(DRMConfiguration)","url":"com/theoplayer/android/api/contentprotection/ContentProtectionIntegrationFactory.html#build(com.theoplayer.android.api.source.drm.DRMConfiguration)"}, {"p":"com.theoplayer.android.api.contentprotection","c":"Request","l":"Request(String)","url":"com/theoplayer/android/api/contentprotection/Request.html#Request(java.lang.String)"}, {"p":"com.theoplayer.android.api.contentprotection","c":"Request","l":"getUrl()","url":"com/theoplayer/android/api/contentprotection/Request.html#getUrl()"}, {"p":"com.theoplayer.android.api.contentprotection","c":"Request","l":"setUrl(String)","url":"com/theoplayer/android/api/contentprotection/Request.html#setUrl(java.lang.String)"}, {"p":"com.theoplayer.android.api.contentprotection","c":"Request","l":"getMethod()","url":"com/theoplayer/android/api/contentprotection/Request.html#getMethod()"}, {"p":"com.theoplayer.android.api.contentprotection","c":"Request","l":"setMethod(RequestMethod)","url":"com/theoplayer/android/api/contentprotection/Request.html#setMethod(com.theoplayer.android.api.contentprotection.RequestMethod)"}, {"p":"com.theoplayer.android.api.contentprotection","c":"Request","l":"getHeaders()","url":"com/theoplayer/android/api/contentprotection/Request.html#getHeaders()"}, {"p":"com.theoplayer.android.api.contentprotection","c":"Request","l":"setHeaders(Map)","url":"com/theoplayer/android/api/contentprotection/Request.html#setHeaders(java.util.Map)"}, {"p":"com.theoplayer.android.api.contentprotection","c":"Request","l":"getBody()","url":"com/theoplayer/android/api/contentprotection/Request.html#getBody()"}, {"p":"com.theoplayer.android.api.contentprotection","c":"Request","l":"setBody(Array)","url":"com/theoplayer/android/api/contentprotection/Request.html#setBody(kotlin.Array)"}, {"p":"com.theoplayer.android.api.contentprotection","c":"CertificateRequestCallback","l":"request(Request)","url":"com/theoplayer/android/api/contentprotection/CertificateRequestCallback.html#request(com.theoplayer.android.api.contentprotection.Request)"}, {"p":"com.theoplayer.android.api.contentprotection","c":"KeySystemId","l":"values()","url":"com/theoplayer/android/api/contentprotection/KeySystemId.html#values()"}, {"p":"com.theoplayer.android.api.contentprotection","c":"KeySystemId","l":"valueOf(String)","url":"com/theoplayer/android/api/contentprotection/KeySystemId.html#valueOf(java.lang.String)"}, {"p":"com.theoplayer.android.api.contentprotection","c":"Response","l":"getRequest()","url":"com/theoplayer/android/api/contentprotection/Response.html#getRequest()"}, {"p":"com.theoplayer.android.api.contentprotection","c":"Response","l":"getUrl()","url":"com/theoplayer/android/api/contentprotection/Response.html#getUrl()"}, {"p":"com.theoplayer.android.api.contentprotection","c":"Response","l":"getStatus()","url":"com/theoplayer/android/api/contentprotection/Response.html#getStatus()"}, {"p":"com.theoplayer.android.api.contentprotection","c":"Response","l":"getStatusText()","url":"com/theoplayer/android/api/contentprotection/Response.html#getStatusText()"}, {"p":"com.theoplayer.android.api.contentprotection","c":"Response","l":"getHeaders()","url":"com/theoplayer/android/api/contentprotection/Response.html#getHeaders()"}, {"p":"com.theoplayer.android.api.contentprotection","c":"Response","l":"getBody()","url":"com/theoplayer/android/api/contentprotection/Response.html#getBody()"}, {"p":"com.theoplayer.android.api.contentprotection","c":"CertificateResponseCallback","l":"respond(Array)","url":"com/theoplayer/android/api/contentprotection/CertificateResponseCallback.html#respond(kotlin.Array)"}, {"p":"com.theoplayer.android.api.contentprotection","c":"CertificateResponseCallback","l":"error(Throwable)","url":"com/theoplayer/android/api/contentprotection/CertificateResponseCallback.html#error(java.lang.Throwable)"}, {"p":"com.theoplayer.android.api.source.addescription","c":"GoogleImaAdDescription.Builder","l":"GoogleImaAdDescription.Builder(String)","url":"com/theoplayer/android/api/source/addescription/GoogleImaAdDescription.Builder.html#GoogleImaAdDescription.Builder(java.lang.String)"}, {"p":"com.theoplayer.android.api.source.addescription","c":"GoogleImaAdDescription.Builder","l":"timeOffset(String)","url":"com/theoplayer/android/api/source/addescription/GoogleImaAdDescription.Builder.html#timeOffset(java.lang.String)"}, {"p":"com.theoplayer.android.api.source.addescription","c":"GoogleImaAdDescription.Builder","l":"build()","url":"com/theoplayer/android/api/source/addescription/GoogleImaAdDescription.Builder.html#build()"}, {"p":"com.theoplayer.android.api.source.addescription","c":"GoogleImaAdDescription","l":"getSources()","url":"com/theoplayer/android/api/source/addescription/GoogleImaAdDescription.html#getSources()"}, {"p":"com.theoplayer.android.api.source.addescription","c":"GoogleImaAdDescription","l":"getTimeOffset()","url":"com/theoplayer/android/api/source/addescription/GoogleImaAdDescription.html#getTimeOffset()"}, {"p":"com.theoplayer.android.api.source.addescription","c":"AdDescription","l":"AdDescription(AdIntegration)","url":"com/theoplayer/android/api/source/addescription/AdDescription.html#AdDescription(com.theoplayer.android.api.source.AdIntegration)"}, {"p":"com.theoplayer.android.api.source.addescription","c":"AdDescription","l":"getIntegration()","url":"com/theoplayer/android/api/ads/theoads/TheoAdDescription.html#getIntegration()"}, {"p":"com.theoplayer.android.api.source.dash","c":"DashPlaybackConfiguration.Builder","l":"DashPlaybackConfiguration.Builder()","url":"com/theoplayer/android/api/source/dash/DashPlaybackConfiguration.Builder.html#DashPlaybackConfiguration.Builder()"}, {"p":"com.theoplayer.android.api.source.dash","c":"DashPlaybackConfiguration.Builder","l":"ignoreAvailabilityWindow(Boolean)","url":"com/theoplayer/android/api/source/dash/DashPlaybackConfiguration.Builder.html#ignoreAvailabilityWindow(java.lang.Boolean)"}, {"p":"com.theoplayer.android.api.source.dash","c":"DashPlaybackConfiguration.Builder","l":"build()","url":"com/theoplayer/android/api/source/dash/DashPlaybackConfiguration.Builder.html#build()"}, {"p":"com.theoplayer.android.api.source.dash","c":"DashPlaybackConfiguration","l":"ignoreAvailabilityWindow()","url":"com/theoplayer/android/api/source/dash/DashPlaybackConfiguration.html#ignoreAvailabilityWindow()"}, {"p":"com.theoplayer.android.api.source.dash","c":"DashPlaybackConfiguration","l":"equals(Object)","url":"com/theoplayer/android/api/source/dash/DashPlaybackConfiguration.html#equals(Object)"}, {"p":"com.theoplayer.android.api.source.dash","c":"DashPlaybackConfiguration","l":"hashCode()","url":"com/theoplayer/android/api/source/dash/DashPlaybackConfiguration.html#hashCode()"}, {"p":"com.theoplayer.android.api.source.drm","c":"LicenseType","l":"values()","url":"com/theoplayer/android/api/source/drm/LicenseType.html#values()"}, {"p":"com.theoplayer.android.api.source.drm","c":"LicenseType","l":"valueOf(String)","url":"com/theoplayer/android/api/source/drm/LicenseType.html#valueOf(java.lang.String)"}, {"p":"com.theoplayer.android.api.source.drm","c":"KeySystemConfiguration.Builder","l":"KeySystemConfiguration.Builder(String)","url":"com/theoplayer/android/api/source/drm/KeySystemConfiguration.Builder.html#KeySystemConfiguration.Builder(java.lang.String)"}, {"p":"com.theoplayer.android.api.source.drm","c":"KeySystemConfiguration.Builder","l":"headers(Map)","url":"com/theoplayer/android/api/source/drm/KeySystemConfiguration.Builder.html#headers(java.util.Map)"}, {"p":"com.theoplayer.android.api.source.drm","c":"KeySystemConfiguration.Builder","l":"useCredentials(boolean)","url":"com/theoplayer/android/api/source/drm/KeySystemConfiguration.Builder.html#useCredentials(boolean)"}, {"p":"com.theoplayer.android.api.source.drm","c":"KeySystemConfiguration.Builder","l":"queryParameters(Map)","url":"com/theoplayer/android/api/source/drm/KeySystemConfiguration.Builder.html#queryParameters(java.util.Map)"}, {"p":"com.theoplayer.android.api.source.drm","c":"KeySystemConfiguration.Builder","l":"licenseType(LicenseType)","url":"com/theoplayer/android/api/source/drm/KeySystemConfiguration.Builder.html#licenseType(com.theoplayer.android.api.source.drm.LicenseType)"}, {"p":"com.theoplayer.android.api.source.drm","c":"KeySystemConfiguration.Builder","l":"certificate(Array)","url":"com/theoplayer/android/api/source/drm/KeySystemConfiguration.Builder.html#certificate(kotlin.Array)"}, {"p":"com.theoplayer.android.api.source.drm","c":"KeySystemConfiguration.Builder","l":"build()","url":"com/theoplayer/android/api/source/drm/KeySystemConfiguration.Builder.html#build()"}, {"p":"com.theoplayer.android.api.source.drm","c":"KeySystemConfiguration","l":"KeySystemConfiguration(String, Map, boolean, Map, LicenseType, String)","url":"com/theoplayer/android/api/source/drm/KeySystemConfiguration.html#KeySystemConfiguration(java.lang.String,java.util.Map,boolean,java.util.Map,com.theoplayer.android.api.source.drm.LicenseType,java.lang.String)"}, {"p":"com.theoplayer.android.api.source.drm","c":"KeySystemConfiguration","l":"getLicenseAcquisitionURL()","url":"com/theoplayer/android/api/source/drm/preintegration/KeyOSKeySystemConfiguration.html#getLicenseAcquisitionURL()"}, {"p":"com.theoplayer.android.api.source.drm","c":"KeySystemConfiguration","l":"getHeaders()","url":"com/theoplayer/android/api/source/drm/preintegration/KeyOSKeySystemConfiguration.html#getHeaders()"}, {"p":"com.theoplayer.android.api.source.drm","c":"KeySystemConfiguration","l":"getQueryParameters()","url":"com/theoplayer/android/api/source/drm/preintegration/KeyOSKeySystemConfiguration.html#getQueryParameters()"}, {"p":"com.theoplayer.android.api.source.drm","c":"KeySystemConfiguration","l":"getLicenseType()","url":"com/theoplayer/android/api/source/drm/preintegration/KeyOSKeySystemConfiguration.html#getLicenseType()"}, {"p":"com.theoplayer.android.api.source.drm","c":"KeySystemConfiguration","l":"isUseCredentials()","url":"com/theoplayer/android/api/source/drm/preintegration/KeyOSKeySystemConfiguration.html#isUseCredentials()"}, {"p":"com.theoplayer.android.api.source.drm","c":"KeySystemConfiguration","l":"getCertificate()","url":"com/theoplayer/android/api/source/drm/preintegration/KeyOSKeySystemConfiguration.html#getCertificate()"}, {"p":"com.theoplayer.android.api.source.drm","c":"KeySystemConfiguration","l":"equals(Object)","url":"com/theoplayer/android/api/source/drm/preintegration/KeyOSKeySystemConfiguration.html#equals(Object)"}, {"p":"com.theoplayer.android.api.source.drm","c":"KeySystemConfiguration","l":"hashCode()","url":"com/theoplayer/android/api/source/drm/preintegration/KeyOSKeySystemConfiguration.html#hashCode()"}, {"p":"com.theoplayer.android.api.source.drm","c":"ClearkeyKeySystemConfiguration.ClearkeyDecryptionKey","l":"ClearkeyKeySystemConfiguration.ClearkeyDecryptionKey(String, String)","url":"com/theoplayer/android/api/source/drm/ClearkeyKeySystemConfiguration.ClearkeyDecryptionKey.html#ClearkeyKeySystemConfiguration.ClearkeyDecryptionKey(java.lang.String,java.lang.String)"}, {"p":"com.theoplayer.android.api.source.drm","c":"ClearkeyKeySystemConfiguration.ClearkeyDecryptionKey","l":"getId()","url":"com/theoplayer/android/api/source/drm/ClearkeyKeySystemConfiguration.ClearkeyDecryptionKey.html#getId()"}, {"p":"com.theoplayer.android.api.source.drm","c":"ClearkeyKeySystemConfiguration.ClearkeyDecryptionKey","l":"getValue()","url":"com/theoplayer/android/api/source/drm/ClearkeyKeySystemConfiguration.ClearkeyDecryptionKey.html#getValue()"}, {"p":"com.theoplayer.android.api.source.drm","c":"ClearkeyKeySystemConfiguration.Builder","l":"ClearkeyKeySystemConfiguration.Builder(String)","url":"com/theoplayer/android/api/source/drm/ClearkeyKeySystemConfiguration.Builder.html#ClearkeyKeySystemConfiguration.Builder(java.lang.String)"}, {"p":"com.theoplayer.android.api.source.drm","c":"ClearkeyKeySystemConfiguration.Builder","l":"keys(Array)","url":"com/theoplayer/android/api/source/drm/ClearkeyKeySystemConfiguration.Builder.html#keys(kotlin.Array)"}, {"p":"com.theoplayer.android.api.source.drm","c":"ClearkeyKeySystemConfiguration.Builder","l":"headers(Map)","url":"com/theoplayer/android/api/source/drm/ClearkeyKeySystemConfiguration.Builder.html#headers(java.util.Map)"}, {"p":"com.theoplayer.android.api.source.drm","c":"ClearkeyKeySystemConfiguration.Builder","l":"useCredentials(boolean)","url":"com/theoplayer/android/api/source/drm/ClearkeyKeySystemConfiguration.Builder.html#useCredentials(boolean)"}, {"p":"com.theoplayer.android.api.source.drm","c":"ClearkeyKeySystemConfiguration.Builder","l":"queryParameters(Map)","url":"com/theoplayer/android/api/source/drm/ClearkeyKeySystemConfiguration.Builder.html#queryParameters(java.util.Map)"}, {"p":"com.theoplayer.android.api.source.drm","c":"ClearkeyKeySystemConfiguration.Builder","l":"build()","url":"com/theoplayer/android/api/source/drm/ClearkeyKeySystemConfiguration.Builder.html#build()"}, {"p":"com.theoplayer.android.api.source.drm","c":"ClearkeyKeySystemConfiguration","l":"getKeys()","url":"com/theoplayer/android/api/source/drm/ClearkeyKeySystemConfiguration.html#getKeys()"}, {"p":"com.theoplayer.android.api.source.drm","c":"DRMConfiguration.Builder","l":"DRMConfiguration.Builder()","url":"com/theoplayer/android/api/source/drm/DRMConfiguration.Builder.html#DRMConfiguration.Builder()"}, {"p":"com.theoplayer.android.api.source.drm","c":"DRMConfiguration.Builder","l":"fairplay(FairPlayKeySystemConfiguration)","url":"com/theoplayer/android/api/source/drm/DRMConfiguration.Builder.html#fairplay(com.theoplayer.android.api.source.drm.FairPlayKeySystemConfiguration)"}, {"p":"com.theoplayer.android.api.source.drm","c":"DRMConfiguration.Builder","l":"playready(KeySystemConfiguration)","url":"com/theoplayer/android/api/source/drm/DRMConfiguration.Builder.html#playready(com.theoplayer.android.api.source.drm.KeySystemConfiguration)"}, {"p":"com.theoplayer.android.api.source.drm","c":"DRMConfiguration.Builder","l":"widevine(KeySystemConfiguration)","url":"com/theoplayer/android/api/source/drm/DRMConfiguration.Builder.html#widevine(com.theoplayer.android.api.source.drm.KeySystemConfiguration)"}, {"p":"com.theoplayer.android.api.source.drm","c":"DRMConfiguration.Builder","l":"clearkey(ClearkeyKeySystemConfiguration)","url":"com/theoplayer/android/api/source/drm/DRMConfiguration.Builder.html#clearkey(com.theoplayer.android.api.source.drm.ClearkeyKeySystemConfiguration)"}, {"p":"com.theoplayer.android.api.source.drm","c":"DRMConfiguration.Builder","l":"integrationParameters(Map)","url":"com/theoplayer/android/api/source/drm/DRMConfiguration.Builder.html#integrationParameters(java.util.Map)"}, {"p":"com.theoplayer.android.api.source.drm","c":"DRMConfiguration.Builder","l":"customIntegrationId(String)","url":"com/theoplayer/android/api/source/drm/DRMConfiguration.Builder.html#customIntegrationId(java.lang.String)"}, {"p":"com.theoplayer.android.api.source.drm","c":"DRMConfiguration.Builder","l":"build()","url":"com/theoplayer/android/api/source/drm/DRMConfiguration.Builder.html#build()"}, {"p":"com.theoplayer.android.api.source.drm","c":"DRMConfiguration","l":"DRMConfiguration(FairPlayKeySystemConfiguration, KeySystemConfiguration, KeySystemConfiguration, ClearkeyKeySystemConfiguration, Map, String, DRMIntegrationId)","url":"com/theoplayer/android/api/source/drm/DRMConfiguration.html#DRMConfiguration(com.theoplayer.android.api.source.drm.FairPlayKeySystemConfiguration,com.theoplayer.android.api.source.drm.KeySystemConfiguration,com.theoplayer.android.api.source.drm.KeySystemConfiguration,com.theoplayer.android.api.source.drm.ClearkeyKeySystemConfiguration,java.util.Map,java.lang.String,com.theoplayer.android.api.source.drm.DRMIntegrationId)"}, {"p":"com.theoplayer.android.api.source.drm","c":"DRMConfiguration","l":"getFairplay()","url":"com/theoplayer/android/api/source/drm/preintegration/XstreamConfiguration.html#getFairplay()"}, {"p":"com.theoplayer.android.api.source.drm","c":"DRMConfiguration","l":"getPlayready()","url":"com/theoplayer/android/api/source/drm/preintegration/XstreamConfiguration.html#getPlayready()"}, {"p":"com.theoplayer.android.api.source.drm","c":"DRMConfiguration","l":"getWidevine()","url":"com/theoplayer/android/api/source/drm/preintegration/XstreamConfiguration.html#getWidevine()"}, {"p":"com.theoplayer.android.api.source.drm","c":"DRMConfiguration","l":"getClearkey()","url":"com/theoplayer/android/api/source/drm/preintegration/XstreamConfiguration.html#getClearkey()"}, {"p":"com.theoplayer.android.api.source.drm","c":"DRMConfiguration","l":"getIntegrationParameters()","url":"com/theoplayer/android/api/source/drm/preintegration/XstreamConfiguration.html#getIntegrationParameters()"}, {"p":"com.theoplayer.android.api.source.drm","c":"DRMConfiguration","l":"getIntegration()","url":"com/theoplayer/android/api/source/drm/preintegration/XstreamConfiguration.html#getIntegration()"}, {"p":"com.theoplayer.android.api.source.drm","c":"DRMConfiguration","l":"getCustomIntegrationId()","url":"com/theoplayer/android/api/source/drm/preintegration/XstreamConfiguration.html#getCustomIntegrationId()"}, {"p":"com.theoplayer.android.api.source.drm","c":"DRMConfiguration","l":"equals(Object)","url":"com/theoplayer/android/api/source/drm/preintegration/IrdetoConfiguration.html#equals(Object)"}, {"p":"com.theoplayer.android.api.source.drm","c":"DRMConfiguration","l":"hashCode()","url":"com/theoplayer/android/api/source/drm/preintegration/IrdetoConfiguration.html#hashCode()"}, {"p":"com.theoplayer.android.api.source.drm","c":"DRMIntegrationId","l":"from(String)","url":"com/theoplayer/android/api/source/drm/DRMIntegrationId.html#from(java.lang.String)"}, {"p":"com.theoplayer.android.api.source.drm","c":"DRMIntegrationId","l":"values()","url":"com/theoplayer/android/api/source/drm/DRMIntegrationId.html#values()"}, {"p":"com.theoplayer.android.api.source.drm","c":"DRMIntegrationId","l":"valueOf(String)","url":"com/theoplayer/android/api/source/drm/DRMIntegrationId.html#valueOf(java.lang.String)"}, {"p":"com.theoplayer.android.api.source.drm","c":"DRMIntegrationId","l":"getIntegrationId()","url":"com/theoplayer/android/api/source/drm/DRMIntegrationId.html#getIntegrationId()"}, {"p":"com.theoplayer.android.api.source.drm","c":"FairPlayKeySystemConfiguration.Builder","l":"FairPlayKeySystemConfiguration.Builder(String, String)","url":"com/theoplayer/android/api/source/drm/FairPlayKeySystemConfiguration.Builder.html#FairPlayKeySystemConfiguration.Builder(java.lang.String,java.lang.String)"}, {"p":"com.theoplayer.android.api.source.drm","c":"FairPlayKeySystemConfiguration.Builder","l":"headers(Map)","url":"com/theoplayer/android/api/source/drm/FairPlayKeySystemConfiguration.Builder.html#headers(java.util.Map)"}, {"p":"com.theoplayer.android.api.source.drm","c":"FairPlayKeySystemConfiguration.Builder","l":"useCredentials(boolean)","url":"com/theoplayer/android/api/source/drm/FairPlayKeySystemConfiguration.Builder.html#useCredentials(boolean)"}, {"p":"com.theoplayer.android.api.source.drm","c":"FairPlayKeySystemConfiguration.Builder","l":"queryParameters(Map)","url":"com/theoplayer/android/api/source/drm/FairPlayKeySystemConfiguration.Builder.html#queryParameters(java.util.Map)"}, {"p":"com.theoplayer.android.api.source.drm","c":"FairPlayKeySystemConfiguration.Builder","l":"build()","url":"com/theoplayer/android/api/source/drm/FairPlayKeySystemConfiguration.Builder.html#build()"}, {"p":"com.theoplayer.android.api.source.drm","c":"FairPlayKeySystemConfiguration","l":"getCertificateURL()","url":"com/theoplayer/android/api/source/drm/FairPlayKeySystemConfiguration.html#getCertificateURL()"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"DRMPreIntegrationConfiguration","l":"DRMPreIntegrationConfiguration(DRMIntegrationId, FairPlayKeySystemConfiguration, KeySystemConfiguration, KeySystemConfiguration, ClearkeyKeySystemConfiguration)","url":"com/theoplayer/android/api/source/drm/preintegration/DRMPreIntegrationConfiguration.html#DRMPreIntegrationConfiguration(com.theoplayer.android.api.source.drm.DRMIntegrationId,com.theoplayer.android.api.source.drm.FairPlayKeySystemConfiguration,com.theoplayer.android.api.source.drm.KeySystemConfiguration,com.theoplayer.android.api.source.drm.KeySystemConfiguration,com.theoplayer.android.api.source.drm.ClearkeyKeySystemConfiguration)"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"VudrmDRMConfiguration.Builder","l":"VudrmDRMConfiguration.Builder(String)","url":"com/theoplayer/android/api/source/drm/preintegration/VudrmDRMConfiguration.Builder.html#VudrmDRMConfiguration.Builder(java.lang.String)"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"VudrmDRMConfiguration.Builder","l":"playready(KeySystemConfiguration)","url":"com/theoplayer/android/api/source/drm/preintegration/VudrmDRMConfiguration.Builder.html#playready(com.theoplayer.android.api.source.drm.KeySystemConfiguration)"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"VudrmDRMConfiguration.Builder","l":"widevine(KeySystemConfiguration)","url":"com/theoplayer/android/api/source/drm/preintegration/VudrmDRMConfiguration.Builder.html#widevine(com.theoplayer.android.api.source.drm.KeySystemConfiguration)"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"VudrmDRMConfiguration.Builder","l":"build()","url":"com/theoplayer/android/api/source/drm/preintegration/VudrmDRMConfiguration.Builder.html#build()"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"VudrmDRMConfiguration","l":"getToken()","url":"com/theoplayer/android/api/source/drm/preintegration/VudrmDRMConfiguration.html#getToken()"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"KeyOSDRMConfiguration.Builder","l":"KeyOSDRMConfiguration.Builder()","url":"com/theoplayer/android/api/source/drm/preintegration/KeyOSDRMConfiguration.Builder.html#KeyOSDRMConfiguration.Builder()"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"KeyOSDRMConfiguration.Builder","l":"customdata(String)","url":"com/theoplayer/android/api/source/drm/preintegration/KeyOSDRMConfiguration.Builder.html#customdata(java.lang.String)"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"KeyOSDRMConfiguration.Builder","l":"playready(KeyOSKeySystemConfiguration)","url":"com/theoplayer/android/api/source/drm/preintegration/KeyOSDRMConfiguration.Builder.html#playready(com.theoplayer.android.api.source.drm.preintegration.KeyOSKeySystemConfiguration)"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"KeyOSDRMConfiguration.Builder","l":"playready(String)","url":"com/theoplayer/android/api/source/drm/preintegration/KeyOSDRMConfiguration.Builder.html#playready(java.lang.String)"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"KeyOSDRMConfiguration.Builder","l":"widevine(KeyOSKeySystemConfiguration)","url":"com/theoplayer/android/api/source/drm/preintegration/KeyOSDRMConfiguration.Builder.html#widevine(com.theoplayer.android.api.source.drm.preintegration.KeyOSKeySystemConfiguration)"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"KeyOSDRMConfiguration.Builder","l":"widevine(String)","url":"com/theoplayer/android/api/source/drm/preintegration/KeyOSDRMConfiguration.Builder.html#widevine(java.lang.String)"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"KeyOSDRMConfiguration.Builder","l":"build()","url":"com/theoplayer/android/api/source/drm/preintegration/KeyOSDRMConfiguration.Builder.html#build()"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"KeyOSDRMConfiguration","l":"getCustomdata()","url":"com/theoplayer/android/api/source/drm/preintegration/KeyOSDRMConfiguration.html#getCustomdata()"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"ConaxDRMConfiguration.Builder","l":"ConaxDRMConfiguration.Builder(String, String)","url":"com/theoplayer/android/api/source/drm/preintegration/ConaxDRMConfiguration.Builder.html#ConaxDRMConfiguration.Builder(java.lang.String,java.lang.String)"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"ConaxDRMConfiguration.Builder","l":"widevine(KeySystemConfiguration)","url":"com/theoplayer/android/api/source/drm/preintegration/ConaxDRMConfiguration.Builder.html#widevine(com.theoplayer.android.api.source.drm.KeySystemConfiguration)"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"ConaxDRMConfiguration.Builder","l":"clearkey(ClearkeyKeySystemConfiguration)","url":"com/theoplayer/android/api/source/drm/preintegration/ConaxDRMConfiguration.Builder.html#clearkey(com.theoplayer.android.api.source.drm.ClearkeyKeySystemConfiguration)"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"ConaxDRMConfiguration.Builder","l":"fairPlay(FairPlayKeySystemConfiguration)","url":"com/theoplayer/android/api/source/drm/preintegration/ConaxDRMConfiguration.Builder.html#fairPlay(com.theoplayer.android.api.source.drm.FairPlayKeySystemConfiguration)"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"ConaxDRMConfiguration.Builder","l":"playready(KeySystemConfiguration)","url":"com/theoplayer/android/api/source/drm/preintegration/ConaxDRMConfiguration.Builder.html#playready(com.theoplayer.android.api.source.drm.KeySystemConfiguration)"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"ConaxDRMConfiguration.Builder","l":"build()","url":"com/theoplayer/android/api/source/drm/preintegration/ConaxDRMConfiguration.Builder.html#build()"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"ConaxDRMConfiguration","l":"getDeviceId()","url":"com/theoplayer/android/api/source/drm/preintegration/ConaxDRMConfiguration.html#getDeviceId()"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"ConaxDRMConfiguration","l":"getToken()","url":"com/theoplayer/android/api/source/drm/preintegration/ConaxDRMConfiguration.html#getToken()"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"KeyOSKeySystemConfiguration.Builder","l":"KeyOSKeySystemConfiguration.Builder(String)","url":"com/theoplayer/android/api/source/drm/preintegration/KeyOSKeySystemConfiguration.Builder.html#KeyOSKeySystemConfiguration.Builder(java.lang.String)"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"KeyOSKeySystemConfiguration.Builder","l":"customdata(String)","url":"com/theoplayer/android/api/source/drm/preintegration/KeyOSKeySystemConfiguration.Builder.html#customdata(java.lang.String)"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"KeyOSKeySystemConfiguration.Builder","l":"headers(Map)","url":"com/theoplayer/android/api/source/drm/preintegration/KeyOSKeySystemConfiguration.Builder.html#headers(java.util.Map)"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"KeyOSKeySystemConfiguration.Builder","l":"useCredentials(boolean)","url":"com/theoplayer/android/api/source/drm/preintegration/KeyOSKeySystemConfiguration.Builder.html#useCredentials(boolean)"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"KeyOSKeySystemConfiguration.Builder","l":"queryParameters(Map)","url":"com/theoplayer/android/api/source/drm/preintegration/KeyOSKeySystemConfiguration.Builder.html#queryParameters(java.util.Map)"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"KeyOSKeySystemConfiguration.Builder","l":"build()","url":"com/theoplayer/android/api/source/drm/preintegration/KeyOSKeySystemConfiguration.Builder.html#build()"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"KeyOSKeySystemConfiguration","l":"getCustomdata()","url":"com/theoplayer/android/api/source/drm/preintegration/KeyOSKeySystemConfiguration.html#getCustomdata()"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"AxinomDRMConfiguration.Builder","l":"AxinomDRMConfiguration.Builder(String)","url":"com/theoplayer/android/api/source/drm/preintegration/AxinomDRMConfiguration.Builder.html#AxinomDRMConfiguration.Builder(java.lang.String)"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"AxinomDRMConfiguration.Builder","l":"fairplay(FairPlayKeySystemConfiguration)","url":"com/theoplayer/android/api/source/drm/preintegration/AxinomDRMConfiguration.Builder.html#fairplay(com.theoplayer.android.api.source.drm.FairPlayKeySystemConfiguration)"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"AxinomDRMConfiguration.Builder","l":"playready(KeySystemConfiguration)","url":"com/theoplayer/android/api/source/drm/preintegration/AxinomDRMConfiguration.Builder.html#playready(com.theoplayer.android.api.source.drm.KeySystemConfiguration)"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"AxinomDRMConfiguration.Builder","l":"widevine(KeySystemConfiguration)","url":"com/theoplayer/android/api/source/drm/preintegration/AxinomDRMConfiguration.Builder.html#widevine(com.theoplayer.android.api.source.drm.KeySystemConfiguration)"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"AxinomDRMConfiguration.Builder","l":"clearkey(ClearkeyKeySystemConfiguration)","url":"com/theoplayer/android/api/source/drm/preintegration/AxinomDRMConfiguration.Builder.html#clearkey(com.theoplayer.android.api.source.drm.ClearkeyKeySystemConfiguration)"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"AxinomDRMConfiguration.Builder","l":"build()","url":"com/theoplayer/android/api/source/drm/preintegration/AxinomDRMConfiguration.Builder.html#build()"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"AxinomDRMConfiguration","l":"getToken()","url":"com/theoplayer/android/api/source/drm/preintegration/AxinomDRMConfiguration.html#getToken()"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"AxinomDRMConfiguration","l":"equals(Object)","url":"com/theoplayer/android/api/source/drm/preintegration/AxinomDRMConfiguration.html#equals(Object)"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"AxinomDRMConfiguration","l":"hashCode()","url":"com/theoplayer/android/api/source/drm/preintegration/AxinomDRMConfiguration.html#hashCode()"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"AzureDRMConfiguration.Builder","l":"AzureDRMConfiguration.Builder(String, String)","url":"com/theoplayer/android/api/source/drm/preintegration/AzureDRMConfiguration.Builder.html#AzureDRMConfiguration.Builder(java.lang.String,java.lang.String)"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"AzureDRMConfiguration.Builder","l":"fairplay(FairPlayKeySystemConfiguration)","url":"com/theoplayer/android/api/source/drm/preintegration/AzureDRMConfiguration.Builder.html#fairplay(com.theoplayer.android.api.source.drm.FairPlayKeySystemConfiguration)"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"AzureDRMConfiguration.Builder","l":"playready(KeySystemConfiguration)","url":"com/theoplayer/android/api/source/drm/preintegration/AzureDRMConfiguration.Builder.html#playready(com.theoplayer.android.api.source.drm.KeySystemConfiguration)"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"AzureDRMConfiguration.Builder","l":"widevine(KeySystemConfiguration)","url":"com/theoplayer/android/api/source/drm/preintegration/AzureDRMConfiguration.Builder.html#widevine(com.theoplayer.android.api.source.drm.KeySystemConfiguration)"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"AzureDRMConfiguration.Builder","l":"clearkey(ClearkeyKeySystemConfiguration)","url":"com/theoplayer/android/api/source/drm/preintegration/AzureDRMConfiguration.Builder.html#clearkey(com.theoplayer.android.api.source.drm.ClearkeyKeySystemConfiguration)"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"AzureDRMConfiguration.Builder","l":"build()","url":"com/theoplayer/android/api/source/drm/preintegration/AzureDRMConfiguration.Builder.html#build()"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"AzureDRMConfiguration","l":"getCertificateURL()","url":"com/theoplayer/android/api/source/drm/preintegration/AzureDRMConfiguration.html#getCertificateURL()"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"AzureDRMConfiguration","l":"getToken()","url":"com/theoplayer/android/api/source/drm/preintegration/AzureDRMConfiguration.html#getToken()"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"AzureDRMConfiguration","l":"equals(Object)","url":"com/theoplayer/android/api/source/drm/preintegration/AzureDRMConfiguration.html#equals(Object)"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"AzureDRMConfiguration","l":"hashCode()","url":"com/theoplayer/android/api/source/drm/preintegration/AzureDRMConfiguration.html#hashCode()"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"DRMTodayConfiguration.Builder","l":"DRMTodayConfiguration.Builder(String)","url":"com/theoplayer/android/api/source/drm/preintegration/DRMTodayConfiguration.Builder.html#DRMTodayConfiguration.Builder(java.lang.String)"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"DRMTodayConfiguration.Builder","l":"DRMTodayConfiguration.Builder(KeySystemConfiguration)","url":"com/theoplayer/android/api/source/drm/preintegration/DRMTodayConfiguration.Builder.html#DRMTodayConfiguration.Builder(com.theoplayer.android.api.source.drm.KeySystemConfiguration)"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"DRMTodayConfiguration.Builder","l":"token(String)","url":"com/theoplayer/android/api/source/drm/preintegration/DRMTodayConfiguration.Builder.html#token(java.lang.String)"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"DRMTodayConfiguration.Builder","l":"userId(String)","url":"com/theoplayer/android/api/source/drm/preintegration/DRMTodayConfiguration.Builder.html#userId(java.lang.String)"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"DRMTodayConfiguration.Builder","l":"sessionId(String)","url":"com/theoplayer/android/api/source/drm/preintegration/DRMTodayConfiguration.Builder.html#sessionId(java.lang.String)"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"DRMTodayConfiguration.Builder","l":"merchant(String)","url":"com/theoplayer/android/api/source/drm/preintegration/DRMTodayConfiguration.Builder.html#merchant(java.lang.String)"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"DRMTodayConfiguration.Builder","l":"build()","url":"com/theoplayer/android/api/source/drm/preintegration/DRMTodayConfiguration.Builder.html#build()"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"DRMTodayConfiguration","l":"getToken()","url":"com/theoplayer/android/api/source/drm/preintegration/DRMTodayConfiguration.html#getToken()"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"DRMTodayConfiguration","l":"getUserId()","url":"com/theoplayer/android/api/source/drm/preintegration/DRMTodayConfiguration.html#getUserId()"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"DRMTodayConfiguration","l":"getSessionId()","url":"com/theoplayer/android/api/source/drm/preintegration/DRMTodayConfiguration.html#getSessionId()"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"DRMTodayConfiguration","l":"getMerchant()","url":"com/theoplayer/android/api/source/drm/preintegration/DRMTodayConfiguration.html#getMerchant()"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"TitaniumDRMConfiguration.Builder","l":"TitaniumDRMConfiguration.Builder(String, String, String)","url":"com/theoplayer/android/api/source/drm/preintegration/TitaniumDRMConfiguration.Builder.html#TitaniumDRMConfiguration.Builder(java.lang.String,java.lang.String,java.lang.String)"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"TitaniumDRMConfiguration.Builder","l":"friendlyName(String)","url":"com/theoplayer/android/api/source/drm/preintegration/TitaniumDRMConfiguration.Builder.html#friendlyName(java.lang.String)"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"TitaniumDRMConfiguration.Builder","l":"authToken(String)","url":"com/theoplayer/android/api/source/drm/preintegration/TitaniumDRMConfiguration.Builder.html#authToken(java.lang.String)"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"TitaniumDRMConfiguration.Builder","l":"playready(KeySystemConfiguration)","url":"com/theoplayer/android/api/source/drm/preintegration/TitaniumDRMConfiguration.Builder.html#playready(com.theoplayer.android.api.source.drm.KeySystemConfiguration)"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"TitaniumDRMConfiguration.Builder","l":"widevine(KeySystemConfiguration)","url":"com/theoplayer/android/api/source/drm/preintegration/TitaniumDRMConfiguration.Builder.html#widevine(com.theoplayer.android.api.source.drm.KeySystemConfiguration)"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"TitaniumDRMConfiguration.Builder","l":"version(String)","url":"com/theoplayer/android/api/source/drm/preintegration/TitaniumDRMConfiguration.Builder.html#version(java.lang.String)"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"TitaniumDRMConfiguration.Builder","l":"build()","url":"com/theoplayer/android/api/source/drm/preintegration/TitaniumDRMConfiguration.Builder.html#build()"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"TitaniumDRMConfiguration","l":"getAccountName()","url":"com/theoplayer/android/api/source/drm/preintegration/TitaniumDRMConfiguration.html#getAccountName()"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"TitaniumDRMConfiguration","l":"getCustomerName()","url":"com/theoplayer/android/api/source/drm/preintegration/TitaniumDRMConfiguration.html#getCustomerName()"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"TitaniumDRMConfiguration","l":"getPortalId()","url":"com/theoplayer/android/api/source/drm/preintegration/TitaniumDRMConfiguration.html#getPortalId()"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"TitaniumDRMConfiguration","l":"getFriendlyName()","url":"com/theoplayer/android/api/source/drm/preintegration/TitaniumDRMConfiguration.html#getFriendlyName()"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"TitaniumDRMConfiguration","l":"getAuthToken()","url":"com/theoplayer/android/api/source/drm/preintegration/TitaniumDRMConfiguration.html#getAuthToken()"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"TitaniumDRMConfiguration","l":"getVersion()","url":"com/theoplayer/android/api/source/drm/preintegration/TitaniumDRMConfiguration.html#getVersion()"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"IrdetoConfiguration.Builder","l":"IrdetoConfiguration.Builder(String)","url":"com/theoplayer/android/api/source/drm/preintegration/IrdetoConfiguration.Builder.html#IrdetoConfiguration.Builder(java.lang.String)"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"IrdetoConfiguration.Builder","l":"IrdetoConfiguration.Builder(KeySystemConfiguration)","url":"com/theoplayer/android/api/source/drm/preintegration/IrdetoConfiguration.Builder.html#IrdetoConfiguration.Builder(com.theoplayer.android.api.source.drm.KeySystemConfiguration)"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"IrdetoConfiguration.Builder","l":"crmId(String)","url":"com/theoplayer/android/api/source/drm/preintegration/IrdetoConfiguration.Builder.html#crmId(java.lang.String)"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"IrdetoConfiguration.Builder","l":"accountId(String)","url":"com/theoplayer/android/api/source/drm/preintegration/IrdetoConfiguration.Builder.html#accountId(java.lang.String)"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"IrdetoConfiguration.Builder","l":"sessionId(String)","url":"com/theoplayer/android/api/source/drm/preintegration/IrdetoConfiguration.Builder.html#sessionId(java.lang.String)"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"IrdetoConfiguration.Builder","l":"contentId(String)","url":"com/theoplayer/android/api/source/drm/preintegration/IrdetoConfiguration.Builder.html#contentId(java.lang.String)"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"IrdetoConfiguration.Builder","l":"ticket(String)","url":"com/theoplayer/android/api/source/drm/preintegration/IrdetoConfiguration.Builder.html#ticket(java.lang.String)"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"IrdetoConfiguration.Builder","l":"build()","url":"com/theoplayer/android/api/source/drm/preintegration/IrdetoConfiguration.Builder.html#build()"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"IrdetoConfiguration","l":"getCrmId()","url":"com/theoplayer/android/api/source/drm/preintegration/IrdetoConfiguration.html#getCrmId()"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"IrdetoConfiguration","l":"getTicket()","url":"com/theoplayer/android/api/source/drm/preintegration/IrdetoConfiguration.html#getTicket()"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"IrdetoConfiguration","l":"getAccountId()","url":"com/theoplayer/android/api/source/drm/preintegration/IrdetoConfiguration.html#getAccountId()"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"IrdetoConfiguration","l":"getContentId()","url":"com/theoplayer/android/api/source/drm/preintegration/IrdetoConfiguration.html#getContentId()"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"IrdetoConfiguration","l":"getSessionId()","url":"com/theoplayer/android/api/source/drm/preintegration/IrdetoConfiguration.html#getSessionId()"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"XstreamConfiguration.Builder","l":"XstreamConfiguration.Builder(String, String)","url":"com/theoplayer/android/api/source/drm/preintegration/XstreamConfiguration.Builder.html#XstreamConfiguration.Builder(java.lang.String,java.lang.String)"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"XstreamConfiguration.Builder","l":"sessionId(String)","url":"com/theoplayer/android/api/source/drm/preintegration/XstreamConfiguration.Builder.html#sessionId(java.lang.String)"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"XstreamConfiguration.Builder","l":"playready(KeySystemConfiguration)","url":"com/theoplayer/android/api/source/drm/preintegration/XstreamConfiguration.Builder.html#playready(com.theoplayer.android.api.source.drm.KeySystemConfiguration)"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"XstreamConfiguration.Builder","l":"widevine(KeySystemConfiguration)","url":"com/theoplayer/android/api/source/drm/preintegration/XstreamConfiguration.Builder.html#widevine(com.theoplayer.android.api.source.drm.KeySystemConfiguration)"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"XstreamConfiguration.Builder","l":"build()","url":"com/theoplayer/android/api/source/drm/preintegration/XstreamConfiguration.Builder.html#build()"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"XstreamConfiguration","l":"getSessionId()","url":"com/theoplayer/android/api/source/drm/preintegration/XstreamConfiguration.html#getSessionId()"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"XstreamConfiguration","l":"getStreamId()","url":"com/theoplayer/android/api/source/drm/preintegration/XstreamConfiguration.html#getStreamId()"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"XstreamConfiguration","l":"getTicketAcquisitionUrl()","url":"com/theoplayer/android/api/source/drm/preintegration/XstreamConfiguration.html#getTicketAcquisitionUrl()"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"XstreamConfiguration","l":"equals(Object)","url":"com/theoplayer/android/api/source/drm/preintegration/XstreamConfiguration.html#equals(Object)"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"XstreamConfiguration","l":"hashCode()","url":"com/theoplayer/android/api/source/drm/preintegration/XstreamConfiguration.html#hashCode()"}, {"p":"com.theoplayer.android.api.source.ssai","c":"StreamType","l":"from(String)","url":"com/theoplayer/android/api/source/ssai/StreamType.html#from(java.lang.String)"}, {"p":"com.theoplayer.android.api.source.ssai","c":"StreamType","l":"values()","url":"com/theoplayer/android/api/source/ssai/StreamType.html#values()"}, {"p":"com.theoplayer.android.api.source.ssai","c":"StreamType","l":"valueOf(String)","url":"com/theoplayer/android/api/source/ssai/StreamType.html#valueOf(java.lang.String)"}, {"p":"com.theoplayer.android.api.source.ssai","c":"SsaiDescription","l":"getIntegration()","url":"com/theoplayer/android/api/source/ssai/dai/GoogleDaiVodConfiguration.html#getIntegration()"}, {"p":"com.theoplayer.android.api.source.ssai","c":"GoogleDaiConfiguration.Builder","l":"GoogleDaiConfiguration.Builder(String)","url":"com/theoplayer/android/api/source/ssai/GoogleDaiConfiguration.Builder.html#GoogleDaiConfiguration.Builder(java.lang.String)"}, {"p":"com.theoplayer.android.api.source.ssai","c":"GoogleDaiConfiguration.Builder","l":"authToken(String)","url":"com/theoplayer/android/api/source/ssai/dai/GoogleDaiVodConfiguration.Builder.html#authToken(java.lang.String)"}, {"p":"com.theoplayer.android.api.source.ssai","c":"GoogleDaiConfiguration.Builder","l":"streamActivityMonitorID(String)","url":"com/theoplayer/android/api/source/ssai/dai/GoogleDaiVodConfiguration.Builder.html#streamActivityMonitorID(java.lang.String)"}, {"p":"com.theoplayer.android.api.source.ssai","c":"GoogleDaiConfiguration.Builder","l":"adTagParameters(Map)","url":"com/theoplayer/android/api/source/ssai/dai/GoogleDaiVodConfiguration.Builder.html#adTagParameters(java.util.Map)"}, {"p":"com.theoplayer.android.api.source.ssai","c":"GoogleDaiConfiguration","l":"GoogleDaiConfiguration(StreamType, String, String, String, Map, SourceType)","url":"com/theoplayer/android/api/source/ssai/GoogleDaiConfiguration.html#GoogleDaiConfiguration(com.theoplayer.android.api.source.ssai.StreamType,java.lang.String,java.lang.String,java.lang.String,java.util.Map,com.theoplayer.android.api.source.SourceType)"}, {"p":"com.theoplayer.android.api.source.ssai","c":"GoogleDaiConfiguration","l":"getAvailabilityType()","url":"com/theoplayer/android/api/source/ssai/dai/GoogleDaiVodConfiguration.html#getAvailabilityType()"}, {"p":"com.theoplayer.android.api.source.ssai","c":"GoogleDaiConfiguration","l":"getApiKey()","url":"com/theoplayer/android/api/source/ssai/dai/GoogleDaiVodConfiguration.html#getApiKey()"}, {"p":"com.theoplayer.android.api.source.ssai","c":"GoogleDaiConfiguration","l":"getAuthToken()","url":"com/theoplayer/android/api/source/ssai/dai/GoogleDaiVodConfiguration.html#getAuthToken()"}, {"p":"com.theoplayer.android.api.source.ssai","c":"GoogleDaiConfiguration","l":"getStreamActivityMonitorID()","url":"com/theoplayer/android/api/source/ssai/dai/GoogleDaiVodConfiguration.html#getStreamActivityMonitorID()"}, {"p":"com.theoplayer.android.api.source.ssai","c":"GoogleDaiConfiguration","l":"getAdTagParameters()","url":"com/theoplayer/android/api/source/ssai/dai/GoogleDaiVodConfiguration.html#getAdTagParameters()"}, {"p":"com.theoplayer.android.api.source.ssai","c":"GoogleDaiConfiguration","l":"getFormat()","url":"com/theoplayer/android/api/source/ssai/dai/GoogleDaiVodConfiguration.html#getFormat()"}, {"p":"com.theoplayer.android.api.source.ssai","c":"GoogleDaiConfiguration","l":"equals(Object)","url":"com/theoplayer/android/api/source/ssai/GoogleDaiConfiguration.html#equals(Object)"}, {"p":"com.theoplayer.android.api.source.ssai","c":"GoogleDaiConfiguration","l":"hashCode()","url":"com/theoplayer/android/api/source/ssai/GoogleDaiConfiguration.html#hashCode()"}, {"p":"com.theoplayer.android.api.source.ssai","c":"SsaiIntegration","l":"from(String)","url":"com/theoplayer/android/api/source/ssai/SsaiIntegration.html#from(java.lang.String)"}, {"p":"com.theoplayer.android.api.source.ssai","c":"SsaiIntegration","l":"values()","url":"com/theoplayer/android/api/source/ssai/SsaiIntegration.html#values()"}, {"p":"com.theoplayer.android.api.source.ssai","c":"SsaiIntegration","l":"valueOf(String)","url":"com/theoplayer/android/api/source/ssai/SsaiIntegration.html#valueOf(java.lang.String)"}, {"p":"com.theoplayer.android.api.source.ssai","c":"CustomSsaiDescription","l":"CustomSsaiDescription()","url":"com/theoplayer/android/api/source/ssai/CustomSsaiDescription.html#CustomSsaiDescription()"}, {"p":"com.theoplayer.android.api.source.ssai","c":"CustomSsaiDescription","l":"getCustomIntegration()","url":"com/theoplayer/android/api/source/ssai/CustomSsaiDescription.html#getCustomIntegration()"}, {"p":"com.theoplayer.android.api.source.ssai","c":"CustomSsaiDescriptionSerializer","l":"fromJson(String)","url":"com/theoplayer/android/api/source/ssai/CustomSsaiDescriptionSerializer.html#fromJson(java.lang.String)"}, {"p":"com.theoplayer.android.api.source.ssai","c":"CustomSsaiDescriptionSerializer","l":"toJson(CustomSsaiDescription)","url":"com/theoplayer/android/api/source/ssai/CustomSsaiDescriptionSerializer.html#toJson(com.theoplayer.android.api.source.ssai.CustomSsaiDescription)"}, {"p":"com.theoplayer.android.api.source.ssai","c":"CustomSsaiDescriptionRegistry","l":"register(String, CustomSsaiDescriptionSerializer)","url":"com/theoplayer/android/api/source/ssai/CustomSsaiDescriptionRegistry.html#register(java.lang.String,com.theoplayer.android.api.source.ssai.CustomSsaiDescriptionSerializer)"}, {"p":"com.theoplayer.android.api.source.ssai","c":"CustomSsaiDescriptionRegistry","l":"deserialize(String, String)","url":"com/theoplayer/android/api/source/ssai/CustomSsaiDescriptionRegistry.html#deserialize(java.lang.String,java.lang.String)"}, {"p":"com.theoplayer.android.api.source.ssai","c":"CustomSsaiDescriptionRegistry","l":"serialize(CustomSsaiDescription)","url":"com/theoplayer/android/api/source/ssai/CustomSsaiDescriptionRegistry.html#serialize(com.theoplayer.android.api.source.ssai.CustomSsaiDescription)"}, {"p":"com.theoplayer.android.api.source.ssai.dai","c":"GoogleDaiLiveConfiguration.Builder","l":"GoogleDaiLiveConfiguration.Builder(String, String)","url":"com/theoplayer/android/api/source/ssai/dai/GoogleDaiLiveConfiguration.Builder.html#GoogleDaiLiveConfiguration.Builder(java.lang.String,java.lang.String)"}, {"p":"com.theoplayer.android.api.source.ssai.dai","c":"GoogleDaiLiveConfiguration.Builder","l":"build()","url":"com/theoplayer/android/api/source/ssai/dai/GoogleDaiLiveConfiguration.Builder.html#build()"}, {"p":"com.theoplayer.android.api.source.ssai.dai","c":"GoogleDaiLiveConfiguration","l":"getAssetKey()","url":"com/theoplayer/android/api/source/ssai/dai/GoogleDaiLiveConfiguration.html#getAssetKey()"}, {"p":"com.theoplayer.android.api.source.ssai.dai","c":"GoogleDaiLiveConfiguration","l":"equals(Object)","url":"com/theoplayer/android/api/source/ssai/dai/GoogleDaiLiveConfiguration.html#equals(Object)"}, {"p":"com.theoplayer.android.api.source.ssai.dai","c":"GoogleDaiLiveConfiguration","l":"hashCode()","url":"com/theoplayer/android/api/source/ssai/dai/GoogleDaiLiveConfiguration.html#hashCode()"}, {"p":"com.theoplayer.android.api.source.ssai.dai","c":"GoogleDaiVodConfiguration.Builder","l":"GoogleDaiVodConfiguration.Builder(String, String, String)","url":"com/theoplayer/android/api/source/ssai/dai/GoogleDaiVodConfiguration.Builder.html#GoogleDaiVodConfiguration.Builder(java.lang.String,java.lang.String,java.lang.String)"}, {"p":"com.theoplayer.android.api.source.ssai.dai","c":"GoogleDaiVodConfiguration.Builder","l":"build()","url":"com/theoplayer/android/api/source/ssai/dai/GoogleDaiVodConfiguration.Builder.html#build()"}, {"p":"com.theoplayer.android.api.source.ssai.dai","c":"GoogleDaiVodConfiguration","l":"getContentSourceID()","url":"com/theoplayer/android/api/source/ssai/dai/GoogleDaiVodConfiguration.html#getContentSourceID()"}, {"p":"com.theoplayer.android.api.source.ssai.dai","c":"GoogleDaiVodConfiguration","l":"getVideoID()","url":"com/theoplayer/android/api/source/ssai/dai/GoogleDaiVodConfiguration.html#getVideoID()"}, {"p":"com.theoplayer.android.api.source.ssai.dai","c":"GoogleDaiVodConfiguration","l":"equals(Object)","url":"com/theoplayer/android/api/source/ssai/dai/GoogleDaiVodConfiguration.html#equals(Object)"}, {"p":"com.theoplayer.android.api.source.ssai.dai","c":"GoogleDaiVodConfiguration","l":"hashCode()","url":"com/theoplayer/android/api/source/ssai/dai/GoogleDaiVodConfiguration.html#hashCode()"}, {"p":"com.theoplayer.android.api.source.hls","c":"HlsPlaybackConfiguration.Builder","l":"HlsPlaybackConfiguration.Builder()","url":"com/theoplayer/android/api/source/hls/HlsPlaybackConfiguration.Builder.html#HlsPlaybackConfiguration.Builder()"}, {"p":"com.theoplayer.android.api.source.hls","c":"HlsPlaybackConfiguration.Builder","l":"delaySubtitlePreload(boolean)","url":"com/theoplayer/android/api/source/hls/HlsPlaybackConfiguration.Builder.html#delaySubtitlePreload(boolean)"}, {"p":"com.theoplayer.android.api.source.hls","c":"HlsPlaybackConfiguration.Builder","l":"build()","url":"com/theoplayer/android/api/source/hls/HlsPlaybackConfiguration.Builder.html#build()"}, {"p":"com.theoplayer.android.api.source.hls","c":"HlsPlaybackConfiguration","l":"isDelaySubtitlePreload()","url":"com/theoplayer/android/api/source/hls/HlsPlaybackConfiguration.html#isDelaySubtitlePreload()"}, {"p":"com.theoplayer.android.api.source.hls","c":"HlsPlaybackConfiguration","l":"equals(Object)","url":"com/theoplayer/android/api/source/hls/HlsPlaybackConfiguration.html#equals(Object)"}, {"p":"com.theoplayer.android.api.source.hls","c":"HlsPlaybackConfiguration","l":"hashCode()","url":"com/theoplayer/android/api/source/hls/HlsPlaybackConfiguration.html#hashCode()"}, {"p":"com.theoplayer.android.api.metrics","c":"Metrics","l":"getBufferedSegments()","url":"com/theoplayer/android/api/metrics/Metrics.html#getBufferedSegments()"}, {"p":"com.theoplayer.android.api.metrics","c":"Metrics","l":"getCorruptedVideoFrames()","url":"com/theoplayer/android/api/metrics/Metrics.html#getCorruptedVideoFrames()"}, {"p":"com.theoplayer.android.api.metrics","c":"Metrics","l":"getCurrentBandwidthEstimate()","url":"com/theoplayer/android/api/metrics/Metrics.html#getCurrentBandwidthEstimate()"}, {"p":"com.theoplayer.android.api.metrics","c":"Metrics","l":"getDroppedVideoFrames()","url":"com/theoplayer/android/api/metrics/Metrics.html#getDroppedVideoFrames()"}, {"p":"com.theoplayer.android.api.metrics","c":"Metrics","l":"getTotalVideoFrames()","url":"com/theoplayer/android/api/metrics/Metrics.html#getTotalVideoFrames()"}, {"p":"com.theoplayer.android.api.metrics","c":"Metrics","l":"getTotalBytesLoaded()","url":"com/theoplayer/android/api/metrics/Metrics.html#getTotalBytesLoaded()"}, {"p":"com.theoplayer.android.api.metrics","c":"BufferedSegments","l":"getAmountOfBufferedAudioSegments()","url":"com/theoplayer/android/api/metrics/BufferedSegments.html#getAmountOfBufferedAudioSegments()"}, {"p":"com.theoplayer.android.api.metrics","c":"BufferedSegments","l":"getAmountOfBufferedVideoSegments()","url":"com/theoplayer/android/api/metrics/BufferedSegments.html#getAmountOfBufferedVideoSegments()"}, {"p":"com.theoplayer.android.api.timerange","c":"TimeRange","l":"getStart()","url":"com/theoplayer/android/api/timerange/TimeRange.html#getStart()"}, {"p":"com.theoplayer.android.api.timerange","c":"TimeRange","l":"getEnd()","url":"com/theoplayer/android/api/timerange/TimeRange.html#getEnd()"}, {"p":"com.theoplayer.android.api.timerange","c":"TimeRanges","l":"getStart(int)","url":"com/theoplayer/android/api/timerange/TimeRanges.html#getStart(int)"}, {"p":"com.theoplayer.android.api.timerange","c":"TimeRanges","l":"getEnd(int)","url":"com/theoplayer/android/api/timerange/TimeRanges.html#getEnd(int)"}, {"p":"com.theoplayer.android.api.timerange","c":"TimeRanges","l":"length()","url":"com/theoplayer/android/api/timerange/TimeRanges.html#length()"}, {"p":"com.theoplayer.android.api.latency","c":"LatencyConfiguration.Builder","l":"LatencyConfiguration.Builder()","url":"com/theoplayer/android/api/latency/LatencyConfiguration.Builder.html#LatencyConfiguration.Builder()"}, {"p":"com.theoplayer.android.api.latency","c":"LatencyConfiguration.Builder","l":"setMinimumOffset(Double)","url":"com/theoplayer/android/api/latency/LatencyConfiguration.Builder.html#setMinimumOffset(java.lang.Double)"}, {"p":"com.theoplayer.android.api.latency","c":"LatencyConfiguration.Builder","l":"setMaximumOffset(Double)","url":"com/theoplayer/android/api/latency/LatencyConfiguration.Builder.html#setMaximumOffset(java.lang.Double)"}, {"p":"com.theoplayer.android.api.latency","c":"LatencyConfiguration.Builder","l":"setTargetOffset(Double)","url":"com/theoplayer/android/api/latency/LatencyConfiguration.Builder.html#setTargetOffset(java.lang.Double)"}, {"p":"com.theoplayer.android.api.latency","c":"LatencyConfiguration.Builder","l":"setForceSeekOffset(Double)","url":"com/theoplayer/android/api/latency/LatencyConfiguration.Builder.html#setForceSeekOffset(java.lang.Double)"}, {"p":"com.theoplayer.android.api.latency","c":"LatencyConfiguration.Builder","l":"setMinimumPlaybackRate(Double)","url":"com/theoplayer/android/api/latency/LatencyConfiguration.Builder.html#setMinimumPlaybackRate(java.lang.Double)"}, {"p":"com.theoplayer.android.api.latency","c":"LatencyConfiguration.Builder","l":"setMaximumPlaybackRate(Double)","url":"com/theoplayer/android/api/latency/LatencyConfiguration.Builder.html#setMaximumPlaybackRate(java.lang.Double)"}, {"p":"com.theoplayer.android.api.latency","c":"LatencyConfiguration.Builder","l":"build()","url":"com/theoplayer/android/api/latency/LatencyConfiguration.Builder.html#build()"}, {"p":"com.theoplayer.android.api.latency","c":"LatencyConfiguration","l":"getMinimumOffset()","url":"com/theoplayer/android/api/latency/LatencyConfiguration.html#getMinimumOffset()"}, {"p":"com.theoplayer.android.api.latency","c":"LatencyConfiguration","l":"getMaximumOffset()","url":"com/theoplayer/android/api/latency/LatencyConfiguration.html#getMaximumOffset()"}, {"p":"com.theoplayer.android.api.latency","c":"LatencyConfiguration","l":"getTargetOffset()","url":"com/theoplayer/android/api/latency/LatencyConfiguration.html#getTargetOffset()"}, {"p":"com.theoplayer.android.api.latency","c":"LatencyConfiguration","l":"getForceSeekOffset()","url":"com/theoplayer/android/api/latency/LatencyConfiguration.html#getForceSeekOffset()"}, {"p":"com.theoplayer.android.api.latency","c":"LatencyConfiguration","l":"getMinimumPlaybackRate()","url":"com/theoplayer/android/api/latency/LatencyConfiguration.html#getMinimumPlaybackRate()"}, {"p":"com.theoplayer.android.api.latency","c":"LatencyConfiguration","l":"getMaximumPlaybackRate()","url":"com/theoplayer/android/api/latency/LatencyConfiguration.html#getMaximumPlaybackRate()"}, {"p":"com.theoplayer.android.api.latency","c":"LatencyManager","l":"isEnabled()","url":"com/theoplayer/android/api/latency/LatencyManager.html#isEnabled()"}, {"p":"com.theoplayer.android.api.latency","c":"LatencyManager","l":"setEnabled(Boolean)","url":"com/theoplayer/android/api/latency/LatencyManager.html#setEnabled(java.lang.Boolean)"}, {"p":"com.theoplayer.android.api.latency","c":"LatencyManager","l":"isMonitoringLivePlayback()","url":"com/theoplayer/android/api/latency/LatencyManager.html#isMonitoringLivePlayback()"}, {"p":"com.theoplayer.android.api.latency","c":"LatencyManager","l":"getCurrentLatency()","url":"com/theoplayer/android/api/latency/LatencyManager.html#getCurrentLatency()"}, {"p":"com.theoplayer.android.api.latency","c":"LatencyManager","l":"getCurrentLatencyConfiguration()","url":"com/theoplayer/android/api/latency/LatencyManager.html#getCurrentLatencyConfiguration()"}, {"p":"com.theoplayer.android.api.network","c":"Network","l":"addHTTPInterceptor(HTTPInterceptor)","url":"com/theoplayer/android/api/network/Network.html#addHTTPInterceptor(com.theoplayer.android.api.network.http.HTTPInterceptor)"}, {"p":"com.theoplayer.android.api.network","c":"Network","l":"removeHTTPInterceptor(HTTPInterceptor)","url":"com/theoplayer/android/api/network/Network.html#removeHTTPInterceptor(com.theoplayer.android.api.network.http.HTTPInterceptor)"}, {"p":"com.theoplayer.android.api.network.http","c":"HTTPInterceptor","l":"onRequest(InterceptableHTTPRequest)","url":"com/theoplayer/android/api/network/http/HTTPInterceptor.html#onRequest(com.theoplayer.android.api.network.http.InterceptableHTTPRequest)"}, {"p":"com.theoplayer.android.api.network.http","c":"HTTPInterceptor","l":"onResponse(InterceptableHTTPResponse)","url":"com/theoplayer/android/api/network/http/HTTPInterceptor.html#onResponse(com.theoplayer.android.api.network.http.InterceptableHTTPResponse)"}, {"p":"com.theoplayer.android.api.network.http","c":"HTTPRequest","l":"getMethod()","url":"com/theoplayer/android/api/network/http/HTTPRequest.html#getMethod()"}, {"p":"com.theoplayer.android.api.network.http","c":"HTTPRequest","l":"getUrl()","url":"com/theoplayer/android/api/network/http/HTTPRequest.html#getUrl()"}, {"p":"com.theoplayer.android.api.network.http","c":"HTTPRequest","l":"getHeaders()","url":"com/theoplayer/android/api/network/http/HTTPRequest.html#getHeaders()"}, {"p":"com.theoplayer.android.api.network.http","c":"HTTPRequest","l":"getBody()","url":"com/theoplayer/android/api/network/http/HTTPRequest.html#getBody()"}, {"p":"com.theoplayer.android.api.network.http","c":"HTTPRequest","l":"getType()","url":"com/theoplayer/android/api/network/http/HTTPRequest.html#getType()"}, {"p":"com.theoplayer.android.api.network.http","c":"HTTPRequest","l":"getSubType()","url":"com/theoplayer/android/api/network/http/HTTPRequest.html#getSubType()"}, {"p":"com.theoplayer.android.api.network.http","c":"HTTPRequest","l":"getMediaType()","url":"com/theoplayer/android/api/network/http/HTTPRequest.html#getMediaType()"}, {"p":"com.theoplayer.android.api.network.http","c":"HTTPRequest","l":"getResponseType()","url":"com/theoplayer/android/api/network/http/HTTPRequest.html#getResponseType()"}, {"p":"com.theoplayer.android.api.network.http","c":"HTTPRequest","l":"getConnectTimeout()","url":"com/theoplayer/android/api/network/http/HTTPRequest.html#getConnectTimeout()"}, {"p":"com.theoplayer.android.api.network.http","c":"HTTPRequest","l":"getReadTimeout()","url":"com/theoplayer/android/api/network/http/HTTPRequest.html#getReadTimeout()"}, {"p":"com.theoplayer.android.api.network.http","c":"InterceptableHTTPRequest","l":"respondWith(CompleteHTTPResponse)","url":"com/theoplayer/android/api/network/http/InterceptableHTTPRequest.html#respondWith(com.theoplayer.android.api.network.http.CompleteHTTPResponse)"}, {"p":"com.theoplayer.android.api.network.http","c":"InterceptableHTTPRequest","l":"getMethod()","url":"com/theoplayer/android/api/network/http/InterceptableHTTPRequest.html#getMethod()"}, {"p":"com.theoplayer.android.api.network.http","c":"InterceptableHTTPRequest","l":"setMethod(String)","url":"com/theoplayer/android/api/network/http/InterceptableHTTPRequest.html#setMethod(java.lang.String)"}, {"p":"com.theoplayer.android.api.network.http","c":"InterceptableHTTPRequest","l":"getUrl()","url":"com/theoplayer/android/api/network/http/InterceptableHTTPRequest.html#getUrl()"}, {"p":"com.theoplayer.android.api.network.http","c":"InterceptableHTTPRequest","l":"setUrl(URL)","url":"com/theoplayer/android/api/network/http/InterceptableHTTPRequest.html#setUrl(java.net.URL)"}, {"p":"com.theoplayer.android.api.network.http","c":"InterceptableHTTPRequest","l":"getHeaders()","url":"com/theoplayer/android/api/network/http/InterceptableHTTPRequest.html#getHeaders()"}, {"p":"com.theoplayer.android.api.network.http","c":"InterceptableHTTPRequest","l":"setHeaders(Map)","url":"com/theoplayer/android/api/network/http/InterceptableHTTPRequest.html#setHeaders(java.util.Map)"}, {"p":"com.theoplayer.android.api.network.http","c":"InterceptableHTTPRequest","l":"getBody()","url":"com/theoplayer/android/api/network/http/InterceptableHTTPRequest.html#getBody()"}, {"p":"com.theoplayer.android.api.network.http","c":"InterceptableHTTPRequest","l":"setBody(ByteArray)","url":"com/theoplayer/android/api/network/http/InterceptableHTTPRequest.html#setBody(kotlin.ByteArray)"}, {"p":"com.theoplayer.android.api.network.http","c":"InterceptableHTTPRequest","l":"getConnectTimeout()","url":"com/theoplayer/android/api/network/http/InterceptableHTTPRequest.html#getConnectTimeout()"}, {"p":"com.theoplayer.android.api.network.http","c":"InterceptableHTTPRequest","l":"setConnectTimeout(Integer)","url":"com/theoplayer/android/api/network/http/InterceptableHTTPRequest.html#setConnectTimeout(java.lang.Integer)"}, {"p":"com.theoplayer.android.api.network.http","c":"InterceptableHTTPRequest","l":"getReadTimeout()","url":"com/theoplayer/android/api/network/http/InterceptableHTTPRequest.html#getReadTimeout()"}, {"p":"com.theoplayer.android.api.network.http","c":"InterceptableHTTPRequest","l":"setReadTimeout(Integer)","url":"com/theoplayer/android/api/network/http/InterceptableHTTPRequest.html#setReadTimeout(java.lang.Integer)"}, {"p":"com.theoplayer.android.api.network.http","c":"ChunkInterceptor","l":"onChunk(ByteArray)","url":"com/theoplayer/android/api/network/http/ChunkInterceptor.html#onChunk(kotlin.ByteArray)"}, {"p":"com.theoplayer.android.api.network.http","c":"BodyInterceptor","l":"onBody(ByteArray)","url":"com/theoplayer/android/api/network/http/BodyInterceptor.html#onBody(kotlin.ByteArray)"}, {"p":"com.theoplayer.android.api.network.http","c":"HTTPResponse","l":"getRequest()","url":"com/theoplayer/android/api/network/http/HTTPResponse.html#getRequest()"}, {"p":"com.theoplayer.android.api.network.http","c":"HTTPResponse","l":"getUrl()","url":"com/theoplayer/android/api/network/http/HTTPResponse.html#getUrl()"}, {"p":"com.theoplayer.android.api.network.http","c":"HTTPResponse","l":"getHeaders()","url":"com/theoplayer/android/api/network/http/HTTPResponse.html#getHeaders()"}, {"p":"com.theoplayer.android.api.network.http","c":"HTTPResponse","l":"getStatus()","url":"com/theoplayer/android/api/network/http/HTTPResponse.html#getStatus()"}, {"p":"com.theoplayer.android.api.network.http","c":"HTTPResponse","l":"getStatusText()","url":"com/theoplayer/android/api/network/http/HTTPResponse.html#getStatusText()"}, {"p":"com.theoplayer.android.api.network.http","c":"CompleteHTTPResponse","l":"CompleteHTTPResponse(HTTPRequest, URL, Map, Integer, String, ByteArray)","url":"com/theoplayer/android/api/network/http/CompleteHTTPResponse.html#CompleteHTTPResponse(com.theoplayer.android.api.network.http.HTTPRequest,java.net.URL,java.util.Map,java.lang.Integer,java.lang.String,kotlin.ByteArray)"}, {"p":"com.theoplayer.android.api.network.http","c":"CompleteHTTPResponse","l":"getRequest()","url":"com/theoplayer/android/api/network/http/CompleteHTTPResponse.html#getRequest()"}, {"p":"com.theoplayer.android.api.network.http","c":"CompleteHTTPResponse","l":"getUrl()","url":"com/theoplayer/android/api/network/http/CompleteHTTPResponse.html#getUrl()"}, {"p":"com.theoplayer.android.api.network.http","c":"CompleteHTTPResponse","l":"getHeaders()","url":"com/theoplayer/android/api/network/http/CompleteHTTPResponse.html#getHeaders()"}, {"p":"com.theoplayer.android.api.network.http","c":"CompleteHTTPResponse","l":"getStatus()","url":"com/theoplayer/android/api/network/http/CompleteHTTPResponse.html#getStatus()"}, {"p":"com.theoplayer.android.api.network.http","c":"CompleteHTTPResponse","l":"getStatusText()","url":"com/theoplayer/android/api/network/http/CompleteHTTPResponse.html#getStatusText()"}, {"p":"com.theoplayer.android.api.network.http","c":"CompleteHTTPResponse","l":"getBody()","url":"com/theoplayer/android/api/network/http/CompleteHTTPResponse.html#getBody()"}, {"p":"com.theoplayer.android.api.network.http","c":"InterceptableHTTPResponse","l":"onChunk(ChunkInterceptor)","url":"com/theoplayer/android/api/network/http/InterceptableHTTPResponse.html#onChunk(com.theoplayer.android.api.network.http.ChunkInterceptor)"}, {"p":"com.theoplayer.android.api.network.http","c":"InterceptableHTTPResponse","l":"onBody(BodyInterceptor)","url":"com/theoplayer/android/api/network/http/InterceptableHTTPResponse.html#onBody(com.theoplayer.android.api.network.http.BodyInterceptor)"}, {"p":"com.theoplayer.android.api.network.http","c":"InterceptableHTTPResponse","l":"getUrl()","url":"com/theoplayer/android/api/network/http/InterceptableHTTPResponse.html#getUrl()"}, {"p":"com.theoplayer.android.api.network.http","c":"InterceptableHTTPResponse","l":"setUrl(URL)","url":"com/theoplayer/android/api/network/http/InterceptableHTTPResponse.html#setUrl(java.net.URL)"}, {"p":"com.theoplayer.android.api.network.http","c":"InterceptableHTTPResponse","l":"getHeaders()","url":"com/theoplayer/android/api/network/http/InterceptableHTTPResponse.html#getHeaders()"}, {"p":"com.theoplayer.android.api.network.http","c":"InterceptableHTTPResponse","l":"setHeaders(Map)","url":"com/theoplayer/android/api/network/http/InterceptableHTTPResponse.html#setHeaders(java.util.Map)"}, {"p":"com.theoplayer.android.api.network.http","c":"InterceptableHTTPResponse","l":"getStatus()","url":"com/theoplayer/android/api/network/http/InterceptableHTTPResponse.html#getStatus()"}, {"p":"com.theoplayer.android.api.network.http","c":"InterceptableHTTPResponse","l":"setStatus(Integer)","url":"com/theoplayer/android/api/network/http/InterceptableHTTPResponse.html#setStatus(java.lang.Integer)"}, {"p":"com.theoplayer.android.api.network.http","c":"InterceptableHTTPResponse","l":"getStatusText()","url":"com/theoplayer/android/api/network/http/InterceptableHTTPResponse.html#getStatusText()"}, {"p":"com.theoplayer.android.api.network.http","c":"InterceptableHTTPResponse","l":"setStatusText(String)","url":"com/theoplayer/android/api/network/http/InterceptableHTTPResponse.html#setStatusText(java.lang.String)"}, {"p":"com.theoplayer.android.api.network.http","c":"JavaHTTPInterceptor","l":"onRequestAsync(InterceptableHTTPRequest, JavaCallback)","url":"com/theoplayer/android/api/network/http/JavaHTTPInterceptor.html#onRequestAsync(com.theoplayer.android.api.network.http.InterceptableHTTPRequest,com.theoplayer.android.api.util.JavaCallback)"}, {"p":"com.theoplayer.android.api.network.http","c":"JavaHTTPInterceptor","l":"onResponseAsync(InterceptableHTTPResponse, JavaCallback)","url":"com/theoplayer/android/api/network/http/JavaHTTPInterceptor.html#onResponseAsync(com.theoplayer.android.api.network.http.InterceptableHTTPResponse,com.theoplayer.android.api.util.JavaCallback)"}, {"p":"com.theoplayer.android.api.network.http","c":"JavaHTTPInterceptor","l":"onRequest(InterceptableHTTPRequest)","url":"com/theoplayer/android/api/network/http/JavaHTTPInterceptor.html#onRequest(com.theoplayer.android.api.network.http.InterceptableHTTPRequest)"}, {"p":"com.theoplayer.android.api.network.http","c":"JavaHTTPInterceptor","l":"onResponse(InterceptableHTTPResponse)","url":"com/theoplayer/android/api/network/http/JavaHTTPInterceptor.html#onResponse(com.theoplayer.android.api.network.http.InterceptableHTTPResponse)"}, {"p":"com.theoplayer.android.api.network.http","c":"JavaChunkInterceptor","l":"onChunkAsync(ByteArray, JavaCallback)","url":"com/theoplayer/android/api/network/http/JavaChunkInterceptor.html#onChunkAsync(kotlin.ByteArray,com.theoplayer.android.api.util.JavaCallback)"}, {"p":"com.theoplayer.android.api.network.http","c":"JavaChunkInterceptor","l":"onChunk(ByteArray)","url":"com/theoplayer/android/api/network/http/JavaChunkInterceptor.html#onChunk(kotlin.ByteArray)"}, {"p":"com.theoplayer.android.api.network.http","c":"JavaBodyInterceptor","l":"onBodyAsync(ByteArray, JavaCallback)","url":"com/theoplayer/android/api/network/http/JavaBodyInterceptor.html#onBodyAsync(kotlin.ByteArray,com.theoplayer.android.api.util.JavaCallback)"}, {"p":"com.theoplayer.android.api.network.http","c":"JavaBodyInterceptor","l":"onBody(ByteArray)","url":"com/theoplayer/android/api/network/http/JavaBodyInterceptor.html#onBody(kotlin.ByteArray)"}, {"p":"com.theoplayer.android.api.network.http","c":"RequestType","l":"valueOf(String)","url":"com/theoplayer/android/api/network/http/RequestType.html#valueOf(java.lang.String)"}, {"p":"com.theoplayer.android.api.network.http","c":"RequestType","l":"values()","url":"com/theoplayer/android/api/network/http/RequestType.html#values()"}, {"p":"com.theoplayer.android.api.network.http","c":"RequestType","l":"getEntries()","url":"com/theoplayer/android/api/network/http/RequestType.html#getEntries()"}, {"p":"com.theoplayer.android.api.network.http","c":"RequestSubType","l":"valueOf(String)","url":"com/theoplayer/android/api/network/http/RequestSubType.html#valueOf(java.lang.String)"}, {"p":"com.theoplayer.android.api.network.http","c":"RequestSubType","l":"values()","url":"com/theoplayer/android/api/network/http/RequestSubType.html#values()"}, {"p":"com.theoplayer.android.api.network.http","c":"RequestSubType","l":"getEntries()","url":"com/theoplayer/android/api/network/http/RequestSubType.html#getEntries()"}, {"p":"com.theoplayer.android.api.network.http","c":"RequestMediaType","l":"valueOf(String)","url":"com/theoplayer/android/api/network/http/RequestMediaType.html#valueOf(java.lang.String)"}, {"p":"com.theoplayer.android.api.network.http","c":"RequestMediaType","l":"values()","url":"com/theoplayer/android/api/network/http/RequestMediaType.html#values()"}, {"p":"com.theoplayer.android.api.network.http","c":"RequestMediaType","l":"getEntries()","url":"com/theoplayer/android/api/network/http/RequestMediaType.html#getEntries()"}, {"p":"com.theoplayer.android.api.network.http","c":"ResponseType","l":"valueOf(String)","url":"com/theoplayer/android/api/network/http/ResponseType.html#valueOf(java.lang.String)"}, {"p":"com.theoplayer.android.api.network.http","c":"ResponseType","l":"values()","url":"com/theoplayer/android/api/network/http/ResponseType.html#values()"}, {"p":"com.theoplayer.android.api.network.http","c":"ResponseType","l":"getEntries()","url":"com/theoplayer/android/api/network/http/ResponseType.html#getEntries()"}, {"p":"com.theoplayer.android.api.ads.ima","c":"GoogleImaAdBreak","l":"getImaAdPodInfo()","url":"com/theoplayer/android/api/ads/ima/GoogleImaAdBreak.html#getImaAdPodInfo()"}, {"p":"com.theoplayer.android.api.ads.ima","c":"GoogleImaAdErrorEvent","l":"getAdError()","url":"com/theoplayer/android/api/ads/ima/GoogleImaAdErrorEvent.html#getAdError()"}, {"p":"com.theoplayer.android.api.ads.ima","c":"GoogleImaAdEvent","l":"getType()","url":"com/theoplayer/android/api/ads/ima/GoogleImaAdEvent.html#getType()"}, {"p":"com.theoplayer.android.api.ads.ima","c":"GoogleImaAdEvent","l":"getAd()","url":"com/theoplayer/android/api/ads/ima/GoogleImaAdEvent.html#getAd()"}, {"p":"com.theoplayer.android.api.ads.ima","c":"GoogleImaAdEvent","l":"getAdData()","url":"com/theoplayer/android/api/ads/ima/GoogleImaAdEvent.html#getAdData()"}, {"p":"com.theoplayer.android.api.ads.ima","c":"GoogleImaAdEventType","l":"getName()","url":"com/theoplayer/android/api/ads/ima/GoogleImaAdEventType.html#getName()"}, {"p":"com.theoplayer.android.api.ads.ima","c":"GoogleImaAdEventType","l":"valueOf(String)","url":"com/theoplayer/android/api/ads/ima/GoogleImaAdEventType.html#valueOf(java.lang.String)"}, {"p":"com.theoplayer.android.api.ads.ima","c":"GoogleImaAdEventType","l":"values()","url":"com/theoplayer/android/api/ads/ima/GoogleImaAdEventType.html#values()"}, {"p":"com.theoplayer.android.api.ads.ima","c":"GoogleImaAdEventType","l":"getEntries()","url":"com/theoplayer/android/api/ads/ima/GoogleImaAdEventType.html#getEntries()"}, {"p":"com.theoplayer.android.api.ads.ima","c":"GoogleImaCompanionAd","l":"getImaCompanionAd()","url":"com/theoplayer/android/api/ads/ima/GoogleImaCompanionAd.html#getImaCompanionAd()"}, {"p":"com.theoplayer.android.api.ads.ima","c":"GoogleImaIntegration","l":"setAdsRenderingSettings(AdsRenderingSettings)","url":"com/theoplayer/android/api/ads/ima/GoogleImaIntegration.html#setAdsRenderingSettings(com.google.ads.interactivemedia.v3.api.AdsRenderingSettings)"}, {"p":"com.theoplayer.android.api.ads.ima","c":"GoogleImaIntegration","l":"getAdsRenderingSettings()","url":"com/theoplayer/android/api/ads/ima/GoogleImaIntegration.html#getAdsRenderingSettings()"}, {"p":"com.theoplayer.android.api.ads.ima","c":"GoogleImaIntegration","l":"requestAds(AdsRequest, AdsRenderingSettings)","url":"com/theoplayer/android/api/ads/ima/GoogleImaIntegration.html#requestAds(com.google.ads.interactivemedia.v3.api.AdsRequest,com.google.ads.interactivemedia.v3.api.AdsRenderingSettings)"}, {"p":"com.theoplayer.android.api.ads.ima","c":"GoogleImaIntegration","l":"schedule(GoogleImaAdDescription)","url":"com/theoplayer/android/api/ads/ima/GoogleImaIntegration.html#schedule(com.theoplayer.android.api.source.addescription.GoogleImaAdDescription)"}, {"p":"com.theoplayer.android.api.ads.ima","c":"GoogleImaIntegration","l":"focus()","url":"com/theoplayer/android/api/ads/ima/GoogleImaIntegration.html#focus()"}, {"p":"com.theoplayer.android.api.ads.ima","c":"GoogleImaIntegrationFactory","l":"createGoogleImaIntegration(THEOplayerView, ImaSdkSettings)","url":"com/theoplayer/android/api/ads/ima/GoogleImaIntegrationFactory.html#createGoogleImaIntegration(com.theoplayer.android.api.THEOplayerView,com.google.ads.interactivemedia.v3.api.ImaSdkSettings)"}, {"p":"com.theoplayer.android.api.ads.ima","c":"GoogleImaIntegrationFactory","l":"createGoogleImaIntegration(THEOplayerView)","url":"com/theoplayer/android/api/ads/ima/GoogleImaIntegrationFactory.html#createGoogleImaIntegration(com.theoplayer.android.api.THEOplayerView,com.google.ads.interactivemedia.v3.api.ImaSdkSettings)"}, {"p":"com.theoplayer.android.api.ads.ima","c":"GoogleImaUniversalAdId","l":"getImaUniversalAdId()","url":"com/theoplayer/android/api/ads/ima/GoogleImaUniversalAdId.html#getImaUniversalAdId()"}, {"p":"com.theoplayer.android.api.ads.mediatailor","c":"MediaTailorAd","l":"getDuration()","url":"com/theoplayer/android/api/ads/mediatailor/MediaTailorAd.html#getDuration()"}, {"p":"com.theoplayer.android.api.ads.mediatailor","c":"MediaTailorAd","l":"getStartTime()","url":"com/theoplayer/android/api/ads/mediatailor/MediaTailorAd.html#getStartTime()"}, {"p":"com.theoplayer.android.api.ads.mediatailor","c":"MediaTailorAd","l":"getTrackingEvents()","url":"com/theoplayer/android/api/ads/mediatailor/MediaTailorAd.html#getTrackingEvents()"}, {"p":"com.theoplayer.android.api.ads.mediatailor","c":"MediaTailorAdAvail","l":"getDuration()","url":"com/theoplayer/android/api/ads/mediatailor/MediaTailorAdAvail.html#getDuration()"}, {"p":"com.theoplayer.android.api.ads.mediatailor","c":"MediaTailorAdAvail","l":"getStartTime()","url":"com/theoplayer/android/api/ads/mediatailor/MediaTailorAdAvail.html#getStartTime()"}, {"p":"com.theoplayer.android.api.ads.mediatailor","c":"MediaTailorAdAvail","l":"getId()","url":"com/theoplayer/android/api/ads/mediatailor/MediaTailorAdAvail.html#getId()"}, {"p":"com.theoplayer.android.api.ads.mediatailor","c":"MediaTailorAdBreakEvent","l":"getType()","url":"com/theoplayer/android/api/ads/mediatailor/MediaTailorAdBreakEvent.html#getType()"}, {"p":"com.theoplayer.android.api.ads.mediatailor","c":"MediaTailorAdBreakEvent","l":"getAdAvail()","url":"com/theoplayer/android/api/ads/mediatailor/MediaTailorAdBreakEvent.html#getAdAvail()"}, {"p":"com.theoplayer.android.api.ads.mediatailor","c":"MediaTailorAdBreakEventType","l":"getName()","url":"com/theoplayer/android/api/ads/mediatailor/MediaTailorAdBreakEventType.html#getName()"}, {"p":"com.theoplayer.android.api.ads.mediatailor","c":"MediaTailorAdBreakEventType","l":"valueOf(String)","url":"com/theoplayer/android/api/ads/mediatailor/MediaTailorAdBreakEventType.html#valueOf(java.lang.String)"}, {"p":"com.theoplayer.android.api.ads.mediatailor","c":"MediaTailorAdBreakEventType","l":"values()","url":"com/theoplayer/android/api/ads/mediatailor/MediaTailorAdBreakEventType.html#values()"}, {"p":"com.theoplayer.android.api.ads.mediatailor","c":"MediaTailorAdBreakEventType","l":"getEntries()","url":"com/theoplayer/android/api/ads/mediatailor/MediaTailorAdBreakEventType.html#getEntries()"}, {"p":"com.theoplayer.android.api.ads.mediatailor","c":"MediaTailorAdEvent","l":"getType()","url":"com/theoplayer/android/api/ads/mediatailor/MediaTailorAdEvent.html#getType()"}, {"p":"com.theoplayer.android.api.ads.mediatailor","c":"MediaTailorAdEvent","l":"getAd()","url":"com/theoplayer/android/api/ads/mediatailor/MediaTailorAdEvent.html#getAd()"}, {"p":"com.theoplayer.android.api.ads.mediatailor","c":"MediaTailorAdEventType","l":"getName()","url":"com/theoplayer/android/api/ads/mediatailor/MediaTailorAdEventType.html#getName()"}, {"p":"com.theoplayer.android.api.ads.mediatailor","c":"MediaTailorAdEventType","l":"valueOf(String)","url":"com/theoplayer/android/api/ads/mediatailor/MediaTailorAdEventType.html#valueOf(java.lang.String)"}, {"p":"com.theoplayer.android.api.ads.mediatailor","c":"MediaTailorAdEventType","l":"values()","url":"com/theoplayer/android/api/ads/mediatailor/MediaTailorAdEventType.html#values()"}, {"p":"com.theoplayer.android.api.ads.mediatailor","c":"MediaTailorAdEventType","l":"getEntries()","url":"com/theoplayer/android/api/ads/mediatailor/MediaTailorAdEventType.html#getEntries()"}, {"p":"com.theoplayer.android.api.ads.mediatailor","c":"MediaTailorIntegrationFactory","l":"createMediaTailorIntegration(THEOplayerView)","url":"com/theoplayer/android/api/ads/mediatailor/MediaTailorIntegrationFactory.html#createMediaTailorIntegration(com.theoplayer.android.api.THEOplayerView)"}, {"p":"com.theoplayer.android.api.ads.theoads","c":"TheoAdDescription","l":"TheoAdDescription(String, String, String, String, TheoAdsLayoutOverride, Boolean)","url":"com/theoplayer/android/api/ads/theoads/TheoAdDescription.html#TheoAdDescription(java.lang.String,java.lang.String,java.lang.String,java.lang.String,com.theoplayer.android.api.ads.theoads.TheoAdsLayoutOverride,java.lang.Boolean)"}, {"p":"com.theoplayer.android.api.ads.theoads","c":"TheoAdDescription","l":"getNetworkCode()","url":"com/theoplayer/android/api/ads/theoads/TheoAdDescription.html#getNetworkCode()"}, {"p":"com.theoplayer.android.api.ads.theoads","c":"TheoAdDescription","l":"getCustomAssetKey()","url":"com/theoplayer/android/api/ads/theoads/TheoAdDescription.html#getCustomAssetKey()"}, {"p":"com.theoplayer.android.api.ads.theoads","c":"TheoAdDescription","l":"getBackdropDoubleBox()","url":"com/theoplayer/android/api/ads/theoads/TheoAdDescription.html#getBackdropDoubleBox()"}, {"p":"com.theoplayer.android.api.ads.theoads","c":"TheoAdDescription","l":"getBackdropLShape()","url":"com/theoplayer/android/api/ads/theoads/TheoAdDescription.html#getBackdropLShape()"}, {"p":"com.theoplayer.android.api.ads.theoads","c":"TheoAdDescription","l":"getOverrideLayout()","url":"com/theoplayer/android/api/ads/theoads/TheoAdDescription.html#getOverrideLayout()"}, {"p":"com.theoplayer.android.api.ads.theoads","c":"TheoAdDescription","l":"getUseId3()","url":"com/theoplayer/android/api/ads/theoads/TheoAdDescription.html#getUseId3()"}, {"p":"com.theoplayer.android.api.ads.theoads","c":"TheoAdsLayoutOverride","l":"valueOf(String)","url":"com/theoplayer/android/api/ads/theoads/TheoAdsLayoutOverride.html#valueOf(java.lang.String)"}, {"p":"com.theoplayer.android.api.ads.theoads","c":"TheoAdsLayoutOverride","l":"values()","url":"com/theoplayer/android/api/ads/theoads/TheoAdsLayoutOverride.html#values()"}, {"p":"com.theoplayer.android.api.ads.theoads","c":"TheoAdsLayoutOverride","l":"getEntries()","url":"com/theoplayer/android/api/ads/theoads/TheoAdsLayoutOverride.html#getEntries()"}, {"p":"com.theoplayer.android.api.ads.theoads","c":"TheoAdsIntegrationFactory","l":"createTheoAdsIntegration(THEOplayerView)","url":"com/theoplayer/android/api/ads/theoads/TheoAdsIntegrationFactory.html#createTheoAdsIntegration(com.theoplayer.android.api.THEOplayerView)"}, {"p":"com.theoplayer.android.api.ads.dai","c":"GoogleDaiIntegration","l":"setAdsRenderingSettings(AdsRenderingSettings)","url":"com/theoplayer/android/api/ads/dai/GoogleDaiIntegration.html#setAdsRenderingSettings(com.google.ads.interactivemedia.v3.api.AdsRenderingSettings)"}, {"p":"com.theoplayer.android.api.ads.dai","c":"GoogleDaiIntegration","l":"getAdsRenderingSettings()","url":"com/theoplayer/android/api/ads/dai/GoogleDaiIntegration.html#getAdsRenderingSettings()"}, {"p":"com.theoplayer.android.api.ads.dai","c":"GoogleDaiIntegration","l":"requestStream(StreamRequest, AdsRenderingSettings)","url":"com/theoplayer/android/api/ads/dai/GoogleDaiIntegration.html#requestStream(com.google.ads.interactivemedia.v3.api.StreamRequest,com.google.ads.interactivemedia.v3.api.AdsRenderingSettings)"}, {"p":"com.theoplayer.android.api.ads.dai","c":"GoogleDaiIntegration","l":"contentTimeForStreamTime(Double)","url":"com/theoplayer/android/api/ads/dai/GoogleDaiIntegration.html#contentTimeForStreamTime(java.lang.Double)"}, {"p":"com.theoplayer.android.api.ads.dai","c":"GoogleDaiIntegration","l":"streamTimeForContentTime(Double)","url":"com/theoplayer/android/api/ads/dai/GoogleDaiIntegration.html#streamTimeForContentTime(java.lang.Double)"}, {"p":"com.theoplayer.android.api.ads.dai","c":"GoogleDaiIntegration","l":"getCuePoints()","url":"com/theoplayer/android/api/ads/dai/GoogleDaiIntegration.html#getCuePoints()"}, {"p":"com.theoplayer.android.api.ads.dai","c":"GoogleDaiIntegration","l":"focus()","url":"com/theoplayer/android/api/ads/dai/GoogleDaiIntegration.html#focus()"}, {"p":"com.theoplayer.android.api.ads.dai","c":"GoogleDaiIntegration","l":"getEnableSnapback()","url":"com/theoplayer/android/api/ads/dai/GoogleDaiIntegration.html#getEnableSnapback()"}, {"p":"com.theoplayer.android.api.ads.dai","c":"GoogleDaiIntegration","l":"setEnableSnapback(Boolean)","url":"com/theoplayer/android/api/ads/dai/GoogleDaiIntegration.html#setEnableSnapback(java.lang.Boolean)"}, {"p":"com.theoplayer.android.api.ads.dai","c":"GoogleDaiIntegrationFactory","l":"createGoogleDaiIntegration(THEOplayerView, ImaSdkSettings)","url":"com/theoplayer/android/api/ads/dai/GoogleDaiIntegrationFactory.html#createGoogleDaiIntegration(com.theoplayer.android.api.THEOplayerView,com.google.ads.interactivemedia.v3.api.ImaSdkSettings)"}, {"p":"com.theoplayer.android.api.ads.dai","c":"GoogleDaiIntegrationFactory","l":"createGoogleDaiIntegration(THEOplayerView)","url":"com/theoplayer/android/api/ads/dai/GoogleDaiIntegrationFactory.html#createGoogleDaiIntegration(com.theoplayer.android.api.THEOplayerView,com.google.ads.interactivemedia.v3.api.ImaSdkSettings)"}, {"p":"com.theoplayer.android.api.cast","c":"CastConfiguration","l":"castStrategy","url":"com/theoplayer/android/api/cast/CastConfiguration.html#castStrategy"}, {"p":"com.theoplayer.android.api.cast","c":"CastIntegrationFactory","l":"INSTANCE","url":"com/theoplayer/android/api/cast/CastIntegrationFactory.html#INSTANCE"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"LAYOUT_PARAMS_MATCH","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#LAYOUT_PARAMS_MATCH"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"DEFAULT_KEYS_DIALER","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#DEFAULT_KEYS_DIALER"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"DEFAULT_KEYS_DISABLE","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#DEFAULT_KEYS_DISABLE"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"DEFAULT_KEYS_SEARCH_GLOBAL","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#DEFAULT_KEYS_SEARCH_GLOBAL"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"DEFAULT_KEYS_SEARCH_LOCAL","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#DEFAULT_KEYS_SEARCH_LOCAL"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"DEFAULT_KEYS_SHORTCUT","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#DEFAULT_KEYS_SHORTCUT"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"FOCUSED_STATE_SET","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#FOCUSED_STATE_SET"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"FULLSCREEN_MODE_REQUEST_ENTER","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#FULLSCREEN_MODE_REQUEST_ENTER"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"FULLSCREEN_MODE_REQUEST_EXIT","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#FULLSCREEN_MODE_REQUEST_EXIT"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"OVERRIDE_TRANSITION_CLOSE","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#OVERRIDE_TRANSITION_CLOSE"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"OVERRIDE_TRANSITION_OPEN","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#OVERRIDE_TRANSITION_OPEN"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"RESULT_CANCELED","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#RESULT_CANCELED"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"RESULT_FIRST_USER","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#RESULT_FIRST_USER"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"RESULT_OK","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#RESULT_OK"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"TRIM_MEMORY_BACKGROUND","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#TRIM_MEMORY_BACKGROUND"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"TRIM_MEMORY_COMPLETE","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#TRIM_MEMORY_COMPLETE"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"TRIM_MEMORY_MODERATE","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#TRIM_MEMORY_MODERATE"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"TRIM_MEMORY_RUNNING_CRITICAL","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#TRIM_MEMORY_RUNNING_CRITICAL"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"TRIM_MEMORY_RUNNING_LOW","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#TRIM_MEMORY_RUNNING_LOW"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"TRIM_MEMORY_RUNNING_MODERATE","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#TRIM_MEMORY_RUNNING_MODERATE"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"TRIM_MEMORY_UI_HIDDEN","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#TRIM_MEMORY_UI_HIDDEN"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"ACCESSIBILITY_SERVICE","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#ACCESSIBILITY_SERVICE"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"ACCOUNT_SERVICE","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#ACCOUNT_SERVICE"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"ACTIVITY_SERVICE","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#ACTIVITY_SERVICE"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"ALARM_SERVICE","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#ALARM_SERVICE"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"APPWIDGET_SERVICE","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#APPWIDGET_SERVICE"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"APP_OPS_SERVICE","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#APP_OPS_SERVICE"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"APP_SEARCH_SERVICE","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#APP_SEARCH_SERVICE"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"AUDIO_SERVICE","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#AUDIO_SERVICE"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"BATTERY_SERVICE","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#BATTERY_SERVICE"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"BIND_ABOVE_CLIENT","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#BIND_ABOVE_CLIENT"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"BIND_ADJUST_WITH_ACTIVITY","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#BIND_ADJUST_WITH_ACTIVITY"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"BIND_ALLOW_ACTIVITY_STARTS","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#BIND_ALLOW_ACTIVITY_STARTS"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"BIND_ALLOW_OOM_MANAGEMENT","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#BIND_ALLOW_OOM_MANAGEMENT"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"BIND_AUTO_CREATE","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#BIND_AUTO_CREATE"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"BIND_DEBUG_UNBIND","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#BIND_DEBUG_UNBIND"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"BIND_EXTERNAL_SERVICE","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#BIND_EXTERNAL_SERVICE"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"BIND_EXTERNAL_SERVICE_LONG","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#BIND_EXTERNAL_SERVICE_LONG"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"BIND_IMPORTANT","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#BIND_IMPORTANT"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"BIND_INCLUDE_CAPABILITIES","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#BIND_INCLUDE_CAPABILITIES"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"BIND_NOT_FOREGROUND","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#BIND_NOT_FOREGROUND"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"BIND_NOT_PERCEPTIBLE","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#BIND_NOT_PERCEPTIBLE"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"BIND_SHARED_ISOLATED_PROCESS","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#BIND_SHARED_ISOLATED_PROCESS"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"BIND_WAIVE_PRIORITY","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#BIND_WAIVE_PRIORITY"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"BIOMETRIC_SERVICE","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#BIOMETRIC_SERVICE"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"BLOB_STORE_SERVICE","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#BLOB_STORE_SERVICE"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"BLUETOOTH_SERVICE","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#BLUETOOTH_SERVICE"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"BUGREPORT_SERVICE","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#BUGREPORT_SERVICE"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"CAMERA_SERVICE","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#CAMERA_SERVICE"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"CAPTIONING_SERVICE","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#CAPTIONING_SERVICE"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"CARRIER_CONFIG_SERVICE","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#CARRIER_CONFIG_SERVICE"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"CLIPBOARD_SERVICE","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#CLIPBOARD_SERVICE"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"COMPANION_DEVICE_SERVICE","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#COMPANION_DEVICE_SERVICE"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"CONNECTIVITY_DIAGNOSTICS_SERVICE","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#CONNECTIVITY_DIAGNOSTICS_SERVICE"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"CONNECTIVITY_SERVICE","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#CONNECTIVITY_SERVICE"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"CONSUMER_IR_SERVICE","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#CONSUMER_IR_SERVICE"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"CONTEXT_IGNORE_SECURITY","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#CONTEXT_IGNORE_SECURITY"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"CONTEXT_INCLUDE_CODE","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#CONTEXT_INCLUDE_CODE"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"CONTEXT_RESTRICTED","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#CONTEXT_RESTRICTED"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"CREDENTIAL_SERVICE","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#CREDENTIAL_SERVICE"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"CROSS_PROFILE_APPS_SERVICE","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#CROSS_PROFILE_APPS_SERVICE"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"DEVICE_ID_DEFAULT","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#DEVICE_ID_DEFAULT"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"DEVICE_ID_INVALID","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#DEVICE_ID_INVALID"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"DEVICE_LOCK_SERVICE","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#DEVICE_LOCK_SERVICE"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"DEVICE_POLICY_SERVICE","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#DEVICE_POLICY_SERVICE"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"DISPLAY_HASH_SERVICE","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#DISPLAY_HASH_SERVICE"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"DISPLAY_SERVICE","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#DISPLAY_SERVICE"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"DOMAIN_VERIFICATION_SERVICE","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#DOMAIN_VERIFICATION_SERVICE"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"DOWNLOAD_SERVICE","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#DOWNLOAD_SERVICE"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"DROPBOX_SERVICE","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#DROPBOX_SERVICE"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"EUICC_SERVICE","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#EUICC_SERVICE"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"FILE_INTEGRITY_SERVICE","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#FILE_INTEGRITY_SERVICE"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"FINGERPRINT_SERVICE","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#FINGERPRINT_SERVICE"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"GAME_SERVICE","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#GAME_SERVICE"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"GRAMMATICAL_INFLECTION_SERVICE","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#GRAMMATICAL_INFLECTION_SERVICE"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"HARDWARE_PROPERTIES_SERVICE","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#HARDWARE_PROPERTIES_SERVICE"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"HEALTHCONNECT_SERVICE","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#HEALTHCONNECT_SERVICE"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"INPUT_METHOD_SERVICE","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#INPUT_METHOD_SERVICE"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"INPUT_SERVICE","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#INPUT_SERVICE"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"IPSEC_SERVICE","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#IPSEC_SERVICE"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"JOB_SCHEDULER_SERVICE","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#JOB_SCHEDULER_SERVICE"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"KEYGUARD_SERVICE","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#KEYGUARD_SERVICE"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"LAUNCHER_APPS_SERVICE","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#LAUNCHER_APPS_SERVICE"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"LAYOUT_INFLATER_SERVICE","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#LAYOUT_INFLATER_SERVICE"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"LOCALE_SERVICE","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#LOCALE_SERVICE"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"LOCATION_SERVICE","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#LOCATION_SERVICE"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"MEDIA_COMMUNICATION_SERVICE","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#MEDIA_COMMUNICATION_SERVICE"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"MEDIA_METRICS_SERVICE","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#MEDIA_METRICS_SERVICE"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"MEDIA_PROJECTION_SERVICE","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#MEDIA_PROJECTION_SERVICE"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"MEDIA_ROUTER_SERVICE","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#MEDIA_ROUTER_SERVICE"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"MEDIA_SESSION_SERVICE","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#MEDIA_SESSION_SERVICE"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"MIDI_SERVICE","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#MIDI_SERVICE"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"MODE_APPEND","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#MODE_APPEND"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"MODE_ENABLE_WRITE_AHEAD_LOGGING","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#MODE_ENABLE_WRITE_AHEAD_LOGGING"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"MODE_MULTI_PROCESS","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#MODE_MULTI_PROCESS"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"MODE_NO_LOCALIZED_COLLATORS","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#MODE_NO_LOCALIZED_COLLATORS"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"MODE_PRIVATE","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#MODE_PRIVATE"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"MODE_WORLD_READABLE","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#MODE_WORLD_READABLE"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"MODE_WORLD_WRITEABLE","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#MODE_WORLD_WRITEABLE"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"NETWORK_STATS_SERVICE","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#NETWORK_STATS_SERVICE"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"NFC_SERVICE","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#NFC_SERVICE"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"NOTIFICATION_SERVICE","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#NOTIFICATION_SERVICE"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"NSD_SERVICE","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#NSD_SERVICE"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"OVERLAY_SERVICE","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#OVERLAY_SERVICE"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"PEOPLE_SERVICE","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#PEOPLE_SERVICE"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"PERFORMANCE_HINT_SERVICE","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#PERFORMANCE_HINT_SERVICE"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"POWER_SERVICE","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#POWER_SERVICE"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"PRINT_SERVICE","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#PRINT_SERVICE"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"RECEIVER_EXPORTED","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#RECEIVER_EXPORTED"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"RECEIVER_NOT_EXPORTED","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#RECEIVER_NOT_EXPORTED"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"RECEIVER_VISIBLE_TO_INSTANT_APPS","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#RECEIVER_VISIBLE_TO_INSTANT_APPS"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"RESTRICTIONS_SERVICE","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#RESTRICTIONS_SERVICE"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"ROLE_SERVICE","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#ROLE_SERVICE"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"SEARCH_SERVICE","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#SEARCH_SERVICE"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"SENSOR_SERVICE","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#SENSOR_SERVICE"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"SHORTCUT_SERVICE","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#SHORTCUT_SERVICE"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"STATUS_BAR_SERVICE","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#STATUS_BAR_SERVICE"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"STORAGE_SERVICE","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#STORAGE_SERVICE"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"STORAGE_STATS_SERVICE","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#STORAGE_STATS_SERVICE"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"SYSTEM_HEALTH_SERVICE","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#SYSTEM_HEALTH_SERVICE"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"TELECOM_SERVICE","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#TELECOM_SERVICE"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"TELEPHONY_IMS_SERVICE","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#TELEPHONY_IMS_SERVICE"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"TELEPHONY_SERVICE","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#TELEPHONY_SERVICE"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"TELEPHONY_SUBSCRIPTION_SERVICE","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#TELEPHONY_SUBSCRIPTION_SERVICE"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"TEXT_CLASSIFICATION_SERVICE","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#TEXT_CLASSIFICATION_SERVICE"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"TEXT_SERVICES_MANAGER_SERVICE","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#TEXT_SERVICES_MANAGER_SERVICE"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"TV_INPUT_SERVICE","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#TV_INPUT_SERVICE"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"TV_INTERACTIVE_APP_SERVICE","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#TV_INTERACTIVE_APP_SERVICE"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"UI_MODE_SERVICE","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#UI_MODE_SERVICE"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"USAGE_STATS_SERVICE","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#USAGE_STATS_SERVICE"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"USB_SERVICE","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#USB_SERVICE"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"USER_SERVICE","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#USER_SERVICE"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"VIBRATOR_MANAGER_SERVICE","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#VIBRATOR_MANAGER_SERVICE"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"VIBRATOR_SERVICE","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#VIBRATOR_SERVICE"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"VIRTUAL_DEVICE_SERVICE","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#VIRTUAL_DEVICE_SERVICE"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"VPN_MANAGEMENT_SERVICE","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#VPN_MANAGEMENT_SERVICE"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"WALLPAPER_SERVICE","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#WALLPAPER_SERVICE"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"WIFI_AWARE_SERVICE","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#WIFI_AWARE_SERVICE"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"WIFI_P2P_SERVICE","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#WIFI_P2P_SERVICE"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"WIFI_RTT_RANGING_SERVICE","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#WIFI_RTT_RANGING_SERVICE"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"WIFI_SERVICE","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#WIFI_SERVICE"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"WINDOW_SERVICE","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#WINDOW_SERVICE"}, {"p":"com.theoplayer.android.api.event.cache.task","c":"CachingTaskEventTypes","l":"CACHING_TASK_STATE_CHANGE","url":"com/theoplayer/android/api/event/cache/task/CachingTaskEventTypes.html#CACHING_TASK_STATE_CHANGE"}, {"p":"com.theoplayer.android.api.event.cache.task","c":"CachingTaskEventTypes","l":"CACHING_TASK_PROGRESS","url":"com/theoplayer/android/api/event/cache/task/CachingTaskEventTypes.html#CACHING_TASK_PROGRESS"}, {"p":"com.theoplayer.android.api.event.cache.task","c":"CachingTaskEventTypes","l":"CACHING_TASK_ERROR","url":"com/theoplayer/android/api/event/cache/task/CachingTaskEventTypes.html#CACHING_TASK_ERROR"}, {"p":"com.theoplayer.android.api.event.cache.task","c":"CachingTaskEventTypes","l":"name","url":"com/theoplayer/android/api/event/cache/task/CachingTaskEventTypes.html#name"}, {"p":"com.theoplayer.android.api.event.cache","c":"CacheEventTypes","l":"CACHE_STATE_CHANGE","url":"com/theoplayer/android/api/event/cache/CacheEventTypes.html#CACHE_STATE_CHANGE"}, {"p":"com.theoplayer.android.api.event.cache","c":"CacheEventTypes","l":"name","url":"com/theoplayer/android/api/event/cache/CacheEventTypes.html#name"}, {"p":"com.theoplayer.android.api.event.cache.tasklist","c":"CachingTaskListEventTypes","l":"ADD_TASK","url":"com/theoplayer/android/api/event/cache/tasklist/CachingTaskListEventTypes.html#ADD_TASK"}, {"p":"com.theoplayer.android.api.event.cache.tasklist","c":"CachingTaskListEventTypes","l":"REMOVE_TASK","url":"com/theoplayer/android/api/event/cache/tasklist/CachingTaskListEventTypes.html#REMOVE_TASK"}, {"p":"com.theoplayer.android.api.event.cache.tasklist","c":"CachingTaskListEventTypes","l":"name","url":"com/theoplayer/android/api/event/cache/tasklist/CachingTaskListEventTypes.html#name"}, {"p":"com.theoplayer.android.api.event.chromecast","c":"ChromecastEventTypes","l":"STATECHANGE","url":"com/theoplayer/android/api/event/chromecast/ChromecastEventTypes.html#STATECHANGE"}, {"p":"com.theoplayer.android.api.event.chromecast","c":"ChromecastEventTypes","l":"ERROR","url":"com/theoplayer/android/api/event/chromecast/ChromecastEventTypes.html#ERROR"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"THEOPLAYERVIEW_TAG","url":"com/theoplayer/android/api/THEOplayerView.html#THEOPLAYERVIEW_TAG"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"CLIP_TO_PADDING_MASK","url":"com/theoplayer/android/api/THEOplayerView.html#CLIP_TO_PADDING_MASK"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"FOCUS_AFTER_DESCENDANTS","url":"com/theoplayer/android/api/THEOplayerView.html#FOCUS_AFTER_DESCENDANTS"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"FOCUS_BEFORE_DESCENDANTS","url":"com/theoplayer/android/api/THEOplayerView.html#FOCUS_BEFORE_DESCENDANTS"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"FOCUS_BLOCK_DESCENDANTS","url":"com/theoplayer/android/api/THEOplayerView.html#FOCUS_BLOCK_DESCENDANTS"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"LAYOUT_MODE_CLIP_BOUNDS","url":"com/theoplayer/android/api/THEOplayerView.html#LAYOUT_MODE_CLIP_BOUNDS"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"LAYOUT_MODE_OPTICAL_BOUNDS","url":"com/theoplayer/android/api/THEOplayerView.html#LAYOUT_MODE_OPTICAL_BOUNDS"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"PERSISTENT_ALL_CACHES","url":"com/theoplayer/android/api/THEOplayerView.html#PERSISTENT_ALL_CACHES"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"PERSISTENT_ANIMATION_CACHE","url":"com/theoplayer/android/api/THEOplayerView.html#PERSISTENT_ANIMATION_CACHE"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"PERSISTENT_NO_CACHE","url":"com/theoplayer/android/api/THEOplayerView.html#PERSISTENT_NO_CACHE"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"PERSISTENT_SCROLLING_CACHE","url":"com/theoplayer/android/api/THEOplayerView.html#PERSISTENT_SCROLLING_CACHE"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"ACCESSIBILITY_DATA_SENSITIVE_AUTO","url":"com/theoplayer/android/api/THEOplayerView.html#ACCESSIBILITY_DATA_SENSITIVE_AUTO"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"ACCESSIBILITY_DATA_SENSITIVE_NO","url":"com/theoplayer/android/api/THEOplayerView.html#ACCESSIBILITY_DATA_SENSITIVE_NO"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"ACCESSIBILITY_DATA_SENSITIVE_YES","url":"com/theoplayer/android/api/THEOplayerView.html#ACCESSIBILITY_DATA_SENSITIVE_YES"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"ACCESSIBILITY_LIVE_REGION_ASSERTIVE","url":"com/theoplayer/android/api/THEOplayerView.html#ACCESSIBILITY_LIVE_REGION_ASSERTIVE"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"ACCESSIBILITY_LIVE_REGION_NONE","url":"com/theoplayer/android/api/THEOplayerView.html#ACCESSIBILITY_LIVE_REGION_NONE"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"ACCESSIBILITY_LIVE_REGION_POLITE","url":"com/theoplayer/android/api/THEOplayerView.html#ACCESSIBILITY_LIVE_REGION_POLITE"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"ALPHA","url":"com/theoplayer/android/api/THEOplayerView.html#ALPHA"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"AUTOFILL_FLAG_INCLUDE_NOT_IMPORTANT_VIEWS","url":"com/theoplayer/android/api/THEOplayerView.html#AUTOFILL_FLAG_INCLUDE_NOT_IMPORTANT_VIEWS"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"AUTOFILL_HINT_CREDIT_CARD_EXPIRATION_DATE","url":"com/theoplayer/android/api/THEOplayerView.html#AUTOFILL_HINT_CREDIT_CARD_EXPIRATION_DATE"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"AUTOFILL_HINT_CREDIT_CARD_EXPIRATION_DAY","url":"com/theoplayer/android/api/THEOplayerView.html#AUTOFILL_HINT_CREDIT_CARD_EXPIRATION_DAY"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"AUTOFILL_HINT_CREDIT_CARD_EXPIRATION_MONTH","url":"com/theoplayer/android/api/THEOplayerView.html#AUTOFILL_HINT_CREDIT_CARD_EXPIRATION_MONTH"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"AUTOFILL_HINT_CREDIT_CARD_EXPIRATION_YEAR","url":"com/theoplayer/android/api/THEOplayerView.html#AUTOFILL_HINT_CREDIT_CARD_EXPIRATION_YEAR"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"AUTOFILL_HINT_CREDIT_CARD_NUMBER","url":"com/theoplayer/android/api/THEOplayerView.html#AUTOFILL_HINT_CREDIT_CARD_NUMBER"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"AUTOFILL_HINT_CREDIT_CARD_SECURITY_CODE","url":"com/theoplayer/android/api/THEOplayerView.html#AUTOFILL_HINT_CREDIT_CARD_SECURITY_CODE"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"AUTOFILL_HINT_EMAIL_ADDRESS","url":"com/theoplayer/android/api/THEOplayerView.html#AUTOFILL_HINT_EMAIL_ADDRESS"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"AUTOFILL_HINT_NAME","url":"com/theoplayer/android/api/THEOplayerView.html#AUTOFILL_HINT_NAME"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"AUTOFILL_HINT_PASSWORD","url":"com/theoplayer/android/api/THEOplayerView.html#AUTOFILL_HINT_PASSWORD"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"AUTOFILL_HINT_PHONE","url":"com/theoplayer/android/api/THEOplayerView.html#AUTOFILL_HINT_PHONE"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"AUTOFILL_HINT_POSTAL_ADDRESS","url":"com/theoplayer/android/api/THEOplayerView.html#AUTOFILL_HINT_POSTAL_ADDRESS"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"AUTOFILL_HINT_POSTAL_CODE","url":"com/theoplayer/android/api/THEOplayerView.html#AUTOFILL_HINT_POSTAL_CODE"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"AUTOFILL_HINT_USERNAME","url":"com/theoplayer/android/api/THEOplayerView.html#AUTOFILL_HINT_USERNAME"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"AUTOFILL_TYPE_DATE","url":"com/theoplayer/android/api/THEOplayerView.html#AUTOFILL_TYPE_DATE"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"AUTOFILL_TYPE_LIST","url":"com/theoplayer/android/api/THEOplayerView.html#AUTOFILL_TYPE_LIST"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"AUTOFILL_TYPE_NONE","url":"com/theoplayer/android/api/THEOplayerView.html#AUTOFILL_TYPE_NONE"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"AUTOFILL_TYPE_TEXT","url":"com/theoplayer/android/api/THEOplayerView.html#AUTOFILL_TYPE_TEXT"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"AUTOFILL_TYPE_TOGGLE","url":"com/theoplayer/android/api/THEOplayerView.html#AUTOFILL_TYPE_TOGGLE"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"DRAG_FLAG_ACCESSIBILITY_ACTION","url":"com/theoplayer/android/api/THEOplayerView.html#DRAG_FLAG_ACCESSIBILITY_ACTION"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"DRAG_FLAG_GLOBAL","url":"com/theoplayer/android/api/THEOplayerView.html#DRAG_FLAG_GLOBAL"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"DRAG_FLAG_GLOBAL_PERSISTABLE_URI_PERMISSION","url":"com/theoplayer/android/api/THEOplayerView.html#DRAG_FLAG_GLOBAL_PERSISTABLE_URI_PERMISSION"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"DRAG_FLAG_GLOBAL_PREFIX_URI_PERMISSION","url":"com/theoplayer/android/api/THEOplayerView.html#DRAG_FLAG_GLOBAL_PREFIX_URI_PERMISSION"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"DRAG_FLAG_GLOBAL_URI_READ","url":"com/theoplayer/android/api/THEOplayerView.html#DRAG_FLAG_GLOBAL_URI_READ"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"DRAG_FLAG_GLOBAL_URI_WRITE","url":"com/theoplayer/android/api/THEOplayerView.html#DRAG_FLAG_GLOBAL_URI_WRITE"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"DRAG_FLAG_OPAQUE","url":"com/theoplayer/android/api/THEOplayerView.html#DRAG_FLAG_OPAQUE"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"DRAWING_CACHE_QUALITY_AUTO","url":"com/theoplayer/android/api/THEOplayerView.html#DRAWING_CACHE_QUALITY_AUTO"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"DRAWING_CACHE_QUALITY_HIGH","url":"com/theoplayer/android/api/THEOplayerView.html#DRAWING_CACHE_QUALITY_HIGH"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"DRAWING_CACHE_QUALITY_LOW","url":"com/theoplayer/android/api/THEOplayerView.html#DRAWING_CACHE_QUALITY_LOW"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"EMPTY_STATE_SET","url":"com/theoplayer/android/api/THEOplayerView.html#EMPTY_STATE_SET"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"ENABLED_FOCUSED_SELECTED_STATE_SET","url":"com/theoplayer/android/api/THEOplayerView.html#ENABLED_FOCUSED_SELECTED_STATE_SET"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"ENABLED_FOCUSED_SELECTED_WINDOW_FOCUSED_STATE_SET","url":"com/theoplayer/android/api/THEOplayerView.html#ENABLED_FOCUSED_SELECTED_WINDOW_FOCUSED_STATE_SET"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"ENABLED_FOCUSED_STATE_SET","url":"com/theoplayer/android/api/THEOplayerView.html#ENABLED_FOCUSED_STATE_SET"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"ENABLED_FOCUSED_WINDOW_FOCUSED_STATE_SET","url":"com/theoplayer/android/api/THEOplayerView.html#ENABLED_FOCUSED_WINDOW_FOCUSED_STATE_SET"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"ENABLED_SELECTED_STATE_SET","url":"com/theoplayer/android/api/THEOplayerView.html#ENABLED_SELECTED_STATE_SET"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"ENABLED_SELECTED_WINDOW_FOCUSED_STATE_SET","url":"com/theoplayer/android/api/THEOplayerView.html#ENABLED_SELECTED_WINDOW_FOCUSED_STATE_SET"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"ENABLED_STATE_SET","url":"com/theoplayer/android/api/THEOplayerView.html#ENABLED_STATE_SET"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"ENABLED_WINDOW_FOCUSED_STATE_SET","url":"com/theoplayer/android/api/THEOplayerView.html#ENABLED_WINDOW_FOCUSED_STATE_SET"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"FIND_VIEWS_WITH_CONTENT_DESCRIPTION","url":"com/theoplayer/android/api/THEOplayerView.html#FIND_VIEWS_WITH_CONTENT_DESCRIPTION"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"FIND_VIEWS_WITH_TEXT","url":"com/theoplayer/android/api/THEOplayerView.html#FIND_VIEWS_WITH_TEXT"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"FOCUSABLE","url":"com/theoplayer/android/api/THEOplayerView.html#FOCUSABLE"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"FOCUSABLES_ALL","url":"com/theoplayer/android/api/THEOplayerView.html#FOCUSABLES_ALL"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"FOCUSABLES_TOUCH_MODE","url":"com/theoplayer/android/api/THEOplayerView.html#FOCUSABLES_TOUCH_MODE"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"FOCUSABLE_AUTO","url":"com/theoplayer/android/api/THEOplayerView.html#FOCUSABLE_AUTO"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"FOCUSED_SELECTED_STATE_SET","url":"com/theoplayer/android/api/THEOplayerView.html#FOCUSED_SELECTED_STATE_SET"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"FOCUSED_SELECTED_WINDOW_FOCUSED_STATE_SET","url":"com/theoplayer/android/api/THEOplayerView.html#FOCUSED_SELECTED_WINDOW_FOCUSED_STATE_SET"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"FOCUSED_STATE_SET","url":"com/theoplayer/android/api/THEOplayerView.html#FOCUSED_STATE_SET"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"FOCUSED_WINDOW_FOCUSED_STATE_SET","url":"com/theoplayer/android/api/THEOplayerView.html#FOCUSED_WINDOW_FOCUSED_STATE_SET"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"FOCUS_BACKWARD","url":"com/theoplayer/android/api/THEOplayerView.html#FOCUS_BACKWARD"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"FOCUS_DOWN","url":"com/theoplayer/android/api/THEOplayerView.html#FOCUS_DOWN"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"FOCUS_FORWARD","url":"com/theoplayer/android/api/THEOplayerView.html#FOCUS_FORWARD"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"FOCUS_LEFT","url":"com/theoplayer/android/api/THEOplayerView.html#FOCUS_LEFT"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"FOCUS_RIGHT","url":"com/theoplayer/android/api/THEOplayerView.html#FOCUS_RIGHT"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"FOCUS_UP","url":"com/theoplayer/android/api/THEOplayerView.html#FOCUS_UP"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"GONE","url":"com/theoplayer/android/api/THEOplayerView.html#GONE"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"HAPTIC_FEEDBACK_ENABLED","url":"com/theoplayer/android/api/THEOplayerView.html#HAPTIC_FEEDBACK_ENABLED"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"IMPORTANT_FOR_ACCESSIBILITY_AUTO","url":"com/theoplayer/android/api/THEOplayerView.html#IMPORTANT_FOR_ACCESSIBILITY_AUTO"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"IMPORTANT_FOR_ACCESSIBILITY_NO","url":"com/theoplayer/android/api/THEOplayerView.html#IMPORTANT_FOR_ACCESSIBILITY_NO"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"IMPORTANT_FOR_ACCESSIBILITY_NO_HIDE_DESCENDANTS","url":"com/theoplayer/android/api/THEOplayerView.html#IMPORTANT_FOR_ACCESSIBILITY_NO_HIDE_DESCENDANTS"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"IMPORTANT_FOR_ACCESSIBILITY_YES","url":"com/theoplayer/android/api/THEOplayerView.html#IMPORTANT_FOR_ACCESSIBILITY_YES"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"IMPORTANT_FOR_AUTOFILL_AUTO","url":"com/theoplayer/android/api/THEOplayerView.html#IMPORTANT_FOR_AUTOFILL_AUTO"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"IMPORTANT_FOR_AUTOFILL_NO","url":"com/theoplayer/android/api/THEOplayerView.html#IMPORTANT_FOR_AUTOFILL_NO"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"IMPORTANT_FOR_AUTOFILL_NO_EXCLUDE_DESCENDANTS","url":"com/theoplayer/android/api/THEOplayerView.html#IMPORTANT_FOR_AUTOFILL_NO_EXCLUDE_DESCENDANTS"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"IMPORTANT_FOR_AUTOFILL_YES","url":"com/theoplayer/android/api/THEOplayerView.html#IMPORTANT_FOR_AUTOFILL_YES"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"IMPORTANT_FOR_AUTOFILL_YES_EXCLUDE_DESCENDANTS","url":"com/theoplayer/android/api/THEOplayerView.html#IMPORTANT_FOR_AUTOFILL_YES_EXCLUDE_DESCENDANTS"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"IMPORTANT_FOR_CONTENT_CAPTURE_AUTO","url":"com/theoplayer/android/api/THEOplayerView.html#IMPORTANT_FOR_CONTENT_CAPTURE_AUTO"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"IMPORTANT_FOR_CONTENT_CAPTURE_NO","url":"com/theoplayer/android/api/THEOplayerView.html#IMPORTANT_FOR_CONTENT_CAPTURE_NO"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"IMPORTANT_FOR_CONTENT_CAPTURE_NO_EXCLUDE_DESCENDANTS","url":"com/theoplayer/android/api/THEOplayerView.html#IMPORTANT_FOR_CONTENT_CAPTURE_NO_EXCLUDE_DESCENDANTS"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"IMPORTANT_FOR_CONTENT_CAPTURE_YES","url":"com/theoplayer/android/api/THEOplayerView.html#IMPORTANT_FOR_CONTENT_CAPTURE_YES"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"IMPORTANT_FOR_CONTENT_CAPTURE_YES_EXCLUDE_DESCENDANTS","url":"com/theoplayer/android/api/THEOplayerView.html#IMPORTANT_FOR_CONTENT_CAPTURE_YES_EXCLUDE_DESCENDANTS"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"INVISIBLE","url":"com/theoplayer/android/api/THEOplayerView.html#INVISIBLE"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"KEEP_SCREEN_ON","url":"com/theoplayer/android/api/THEOplayerView.html#KEEP_SCREEN_ON"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"LAYER_TYPE_HARDWARE","url":"com/theoplayer/android/api/THEOplayerView.html#LAYER_TYPE_HARDWARE"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"LAYER_TYPE_NONE","url":"com/theoplayer/android/api/THEOplayerView.html#LAYER_TYPE_NONE"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"LAYER_TYPE_SOFTWARE","url":"com/theoplayer/android/api/THEOplayerView.html#LAYER_TYPE_SOFTWARE"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"LAYOUT_DIRECTION_INHERIT","url":"com/theoplayer/android/api/THEOplayerView.html#LAYOUT_DIRECTION_INHERIT"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"LAYOUT_DIRECTION_LOCALE","url":"com/theoplayer/android/api/THEOplayerView.html#LAYOUT_DIRECTION_LOCALE"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"LAYOUT_DIRECTION_LTR","url":"com/theoplayer/android/api/THEOplayerView.html#LAYOUT_DIRECTION_LTR"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"LAYOUT_DIRECTION_RTL","url":"com/theoplayer/android/api/THEOplayerView.html#LAYOUT_DIRECTION_RTL"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"MEASURED_HEIGHT_STATE_SHIFT","url":"com/theoplayer/android/api/THEOplayerView.html#MEASURED_HEIGHT_STATE_SHIFT"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"MEASURED_SIZE_MASK","url":"com/theoplayer/android/api/THEOplayerView.html#MEASURED_SIZE_MASK"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"MEASURED_STATE_MASK","url":"com/theoplayer/android/api/THEOplayerView.html#MEASURED_STATE_MASK"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"MEASURED_STATE_TOO_SMALL","url":"com/theoplayer/android/api/THEOplayerView.html#MEASURED_STATE_TOO_SMALL"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"NOT_FOCUSABLE","url":"com/theoplayer/android/api/THEOplayerView.html#NOT_FOCUSABLE"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"NO_ID","url":"com/theoplayer/android/api/THEOplayerView.html#NO_ID"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"OVER_SCROLL_ALWAYS","url":"com/theoplayer/android/api/THEOplayerView.html#OVER_SCROLL_ALWAYS"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"OVER_SCROLL_IF_CONTENT_SCROLLS","url":"com/theoplayer/android/api/THEOplayerView.html#OVER_SCROLL_IF_CONTENT_SCROLLS"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"OVER_SCROLL_NEVER","url":"com/theoplayer/android/api/THEOplayerView.html#OVER_SCROLL_NEVER"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"PRESSED_ENABLED_FOCUSED_SELECTED_STATE_SET","url":"com/theoplayer/android/api/THEOplayerView.html#PRESSED_ENABLED_FOCUSED_SELECTED_STATE_SET"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"PRESSED_ENABLED_FOCUSED_SELECTED_WINDOW_FOCUSED_STATE_SET","url":"com/theoplayer/android/api/THEOplayerView.html#PRESSED_ENABLED_FOCUSED_SELECTED_WINDOW_FOCUSED_STATE_SET"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"PRESSED_ENABLED_FOCUSED_STATE_SET","url":"com/theoplayer/android/api/THEOplayerView.html#PRESSED_ENABLED_FOCUSED_STATE_SET"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"PRESSED_ENABLED_FOCUSED_WINDOW_FOCUSED_STATE_SET","url":"com/theoplayer/android/api/THEOplayerView.html#PRESSED_ENABLED_FOCUSED_WINDOW_FOCUSED_STATE_SET"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"PRESSED_ENABLED_SELECTED_STATE_SET","url":"com/theoplayer/android/api/THEOplayerView.html#PRESSED_ENABLED_SELECTED_STATE_SET"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"PRESSED_ENABLED_SELECTED_WINDOW_FOCUSED_STATE_SET","url":"com/theoplayer/android/api/THEOplayerView.html#PRESSED_ENABLED_SELECTED_WINDOW_FOCUSED_STATE_SET"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"PRESSED_ENABLED_STATE_SET","url":"com/theoplayer/android/api/THEOplayerView.html#PRESSED_ENABLED_STATE_SET"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"PRESSED_ENABLED_WINDOW_FOCUSED_STATE_SET","url":"com/theoplayer/android/api/THEOplayerView.html#PRESSED_ENABLED_WINDOW_FOCUSED_STATE_SET"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"PRESSED_FOCUSED_SELECTED_STATE_SET","url":"com/theoplayer/android/api/THEOplayerView.html#PRESSED_FOCUSED_SELECTED_STATE_SET"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"PRESSED_FOCUSED_SELECTED_WINDOW_FOCUSED_STATE_SET","url":"com/theoplayer/android/api/THEOplayerView.html#PRESSED_FOCUSED_SELECTED_WINDOW_FOCUSED_STATE_SET"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"PRESSED_FOCUSED_STATE_SET","url":"com/theoplayer/android/api/THEOplayerView.html#PRESSED_FOCUSED_STATE_SET"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"PRESSED_FOCUSED_WINDOW_FOCUSED_STATE_SET","url":"com/theoplayer/android/api/THEOplayerView.html#PRESSED_FOCUSED_WINDOW_FOCUSED_STATE_SET"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"PRESSED_SELECTED_STATE_SET","url":"com/theoplayer/android/api/THEOplayerView.html#PRESSED_SELECTED_STATE_SET"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"PRESSED_SELECTED_WINDOW_FOCUSED_STATE_SET","url":"com/theoplayer/android/api/THEOplayerView.html#PRESSED_SELECTED_WINDOW_FOCUSED_STATE_SET"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"PRESSED_STATE_SET","url":"com/theoplayer/android/api/THEOplayerView.html#PRESSED_STATE_SET"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"PRESSED_WINDOW_FOCUSED_STATE_SET","url":"com/theoplayer/android/api/THEOplayerView.html#PRESSED_WINDOW_FOCUSED_STATE_SET"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"ROTATION","url":"com/theoplayer/android/api/THEOplayerView.html#ROTATION"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"ROTATION_X","url":"com/theoplayer/android/api/THEOplayerView.html#ROTATION_X"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"ROTATION_Y","url":"com/theoplayer/android/api/THEOplayerView.html#ROTATION_Y"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"SCALE_X","url":"com/theoplayer/android/api/THEOplayerView.html#SCALE_X"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"SCALE_Y","url":"com/theoplayer/android/api/THEOplayerView.html#SCALE_Y"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"SCREEN_STATE_OFF","url":"com/theoplayer/android/api/THEOplayerView.html#SCREEN_STATE_OFF"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"SCREEN_STATE_ON","url":"com/theoplayer/android/api/THEOplayerView.html#SCREEN_STATE_ON"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"SCROLLBARS_INSIDE_INSET","url":"com/theoplayer/android/api/THEOplayerView.html#SCROLLBARS_INSIDE_INSET"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"SCROLLBARS_INSIDE_OVERLAY","url":"com/theoplayer/android/api/THEOplayerView.html#SCROLLBARS_INSIDE_OVERLAY"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"SCROLLBARS_OUTSIDE_INSET","url":"com/theoplayer/android/api/THEOplayerView.html#SCROLLBARS_OUTSIDE_INSET"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"SCROLLBARS_OUTSIDE_OVERLAY","url":"com/theoplayer/android/api/THEOplayerView.html#SCROLLBARS_OUTSIDE_OVERLAY"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"SCROLLBAR_POSITION_DEFAULT","url":"com/theoplayer/android/api/THEOplayerView.html#SCROLLBAR_POSITION_DEFAULT"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"SCROLLBAR_POSITION_LEFT","url":"com/theoplayer/android/api/THEOplayerView.html#SCROLLBAR_POSITION_LEFT"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"SCROLLBAR_POSITION_RIGHT","url":"com/theoplayer/android/api/THEOplayerView.html#SCROLLBAR_POSITION_RIGHT"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"SCROLL_AXIS_HORIZONTAL","url":"com/theoplayer/android/api/THEOplayerView.html#SCROLL_AXIS_HORIZONTAL"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"SCROLL_AXIS_NONE","url":"com/theoplayer/android/api/THEOplayerView.html#SCROLL_AXIS_NONE"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"SCROLL_AXIS_VERTICAL","url":"com/theoplayer/android/api/THEOplayerView.html#SCROLL_AXIS_VERTICAL"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"SCROLL_CAPTURE_HINT_AUTO","url":"com/theoplayer/android/api/THEOplayerView.html#SCROLL_CAPTURE_HINT_AUTO"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"SCROLL_CAPTURE_HINT_EXCLUDE","url":"com/theoplayer/android/api/THEOplayerView.html#SCROLL_CAPTURE_HINT_EXCLUDE"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"SCROLL_CAPTURE_HINT_EXCLUDE_DESCENDANTS","url":"com/theoplayer/android/api/THEOplayerView.html#SCROLL_CAPTURE_HINT_EXCLUDE_DESCENDANTS"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"SCROLL_CAPTURE_HINT_INCLUDE","url":"com/theoplayer/android/api/THEOplayerView.html#SCROLL_CAPTURE_HINT_INCLUDE"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"SCROLL_INDICATOR_BOTTOM","url":"com/theoplayer/android/api/THEOplayerView.html#SCROLL_INDICATOR_BOTTOM"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"SCROLL_INDICATOR_END","url":"com/theoplayer/android/api/THEOplayerView.html#SCROLL_INDICATOR_END"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"SCROLL_INDICATOR_LEFT","url":"com/theoplayer/android/api/THEOplayerView.html#SCROLL_INDICATOR_LEFT"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"SCROLL_INDICATOR_RIGHT","url":"com/theoplayer/android/api/THEOplayerView.html#SCROLL_INDICATOR_RIGHT"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"SCROLL_INDICATOR_START","url":"com/theoplayer/android/api/THEOplayerView.html#SCROLL_INDICATOR_START"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"SCROLL_INDICATOR_TOP","url":"com/theoplayer/android/api/THEOplayerView.html#SCROLL_INDICATOR_TOP"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"SELECTED_STATE_SET","url":"com/theoplayer/android/api/THEOplayerView.html#SELECTED_STATE_SET"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"SELECTED_WINDOW_FOCUSED_STATE_SET","url":"com/theoplayer/android/api/THEOplayerView.html#SELECTED_WINDOW_FOCUSED_STATE_SET"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"SOUND_EFFECTS_ENABLED","url":"com/theoplayer/android/api/THEOplayerView.html#SOUND_EFFECTS_ENABLED"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"STATUS_BAR_HIDDEN","url":"com/theoplayer/android/api/THEOplayerView.html#STATUS_BAR_HIDDEN"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"STATUS_BAR_VISIBLE","url":"com/theoplayer/android/api/THEOplayerView.html#STATUS_BAR_VISIBLE"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"SYSTEM_UI_FLAG_FULLSCREEN","url":"com/theoplayer/android/api/THEOplayerView.html#SYSTEM_UI_FLAG_FULLSCREEN"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"SYSTEM_UI_FLAG_HIDE_NAVIGATION","url":"com/theoplayer/android/api/THEOplayerView.html#SYSTEM_UI_FLAG_HIDE_NAVIGATION"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"SYSTEM_UI_FLAG_IMMERSIVE","url":"com/theoplayer/android/api/THEOplayerView.html#SYSTEM_UI_FLAG_IMMERSIVE"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"SYSTEM_UI_FLAG_IMMERSIVE_STICKY","url":"com/theoplayer/android/api/THEOplayerView.html#SYSTEM_UI_FLAG_IMMERSIVE_STICKY"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN","url":"com/theoplayer/android/api/THEOplayerView.html#SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION","url":"com/theoplayer/android/api/THEOplayerView.html#SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"SYSTEM_UI_FLAG_LAYOUT_STABLE","url":"com/theoplayer/android/api/THEOplayerView.html#SYSTEM_UI_FLAG_LAYOUT_STABLE"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"SYSTEM_UI_FLAG_LIGHT_NAVIGATION_BAR","url":"com/theoplayer/android/api/THEOplayerView.html#SYSTEM_UI_FLAG_LIGHT_NAVIGATION_BAR"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"SYSTEM_UI_FLAG_LIGHT_STATUS_BAR","url":"com/theoplayer/android/api/THEOplayerView.html#SYSTEM_UI_FLAG_LIGHT_STATUS_BAR"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"SYSTEM_UI_FLAG_LOW_PROFILE","url":"com/theoplayer/android/api/THEOplayerView.html#SYSTEM_UI_FLAG_LOW_PROFILE"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"SYSTEM_UI_FLAG_VISIBLE","url":"com/theoplayer/android/api/THEOplayerView.html#SYSTEM_UI_FLAG_VISIBLE"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"SYSTEM_UI_LAYOUT_FLAGS","url":"com/theoplayer/android/api/THEOplayerView.html#SYSTEM_UI_LAYOUT_FLAGS"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"TEXT_ALIGNMENT_CENTER","url":"com/theoplayer/android/api/THEOplayerView.html#TEXT_ALIGNMENT_CENTER"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"TEXT_ALIGNMENT_GRAVITY","url":"com/theoplayer/android/api/THEOplayerView.html#TEXT_ALIGNMENT_GRAVITY"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"TEXT_ALIGNMENT_INHERIT","url":"com/theoplayer/android/api/THEOplayerView.html#TEXT_ALIGNMENT_INHERIT"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"TEXT_ALIGNMENT_TEXT_END","url":"com/theoplayer/android/api/THEOplayerView.html#TEXT_ALIGNMENT_TEXT_END"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"TEXT_ALIGNMENT_TEXT_START","url":"com/theoplayer/android/api/THEOplayerView.html#TEXT_ALIGNMENT_TEXT_START"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"TEXT_ALIGNMENT_VIEW_END","url":"com/theoplayer/android/api/THEOplayerView.html#TEXT_ALIGNMENT_VIEW_END"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"TEXT_ALIGNMENT_VIEW_START","url":"com/theoplayer/android/api/THEOplayerView.html#TEXT_ALIGNMENT_VIEW_START"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"TEXT_DIRECTION_ANY_RTL","url":"com/theoplayer/android/api/THEOplayerView.html#TEXT_DIRECTION_ANY_RTL"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"TEXT_DIRECTION_FIRST_STRONG","url":"com/theoplayer/android/api/THEOplayerView.html#TEXT_DIRECTION_FIRST_STRONG"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"TEXT_DIRECTION_FIRST_STRONG_LTR","url":"com/theoplayer/android/api/THEOplayerView.html#TEXT_DIRECTION_FIRST_STRONG_LTR"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"TEXT_DIRECTION_FIRST_STRONG_RTL","url":"com/theoplayer/android/api/THEOplayerView.html#TEXT_DIRECTION_FIRST_STRONG_RTL"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"TEXT_DIRECTION_INHERIT","url":"com/theoplayer/android/api/THEOplayerView.html#TEXT_DIRECTION_INHERIT"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"TEXT_DIRECTION_LOCALE","url":"com/theoplayer/android/api/THEOplayerView.html#TEXT_DIRECTION_LOCALE"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"TEXT_DIRECTION_LTR","url":"com/theoplayer/android/api/THEOplayerView.html#TEXT_DIRECTION_LTR"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"TEXT_DIRECTION_RTL","url":"com/theoplayer/android/api/THEOplayerView.html#TEXT_DIRECTION_RTL"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"TRANSLATION_X","url":"com/theoplayer/android/api/THEOplayerView.html#TRANSLATION_X"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"TRANSLATION_Y","url":"com/theoplayer/android/api/THEOplayerView.html#TRANSLATION_Y"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"TRANSLATION_Z","url":"com/theoplayer/android/api/THEOplayerView.html#TRANSLATION_Z"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"VIEW_LOG_TAG","url":"com/theoplayer/android/api/THEOplayerView.html#VIEW_LOG_TAG"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"VISIBLE","url":"com/theoplayer/android/api/THEOplayerView.html#VISIBLE"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"WINDOW_FOCUSED_STATE_SET","url":"com/theoplayer/android/api/THEOplayerView.html#WINDOW_FOCUSED_STATE_SET"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"X","url":"com/theoplayer/android/api/THEOplayerView.html#X"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"Y","url":"com/theoplayer/android/api/THEOplayerView.html#Y"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"Z","url":"com/theoplayer/android/api/THEOplayerView.html#Z"}, {"p":"com.theoplayer.android.api.cast.chromecast","c":"DefaultCastOptionsProvider","l":"DEFAULT_APP_ID","url":"com/theoplayer/android/api/cast/chromecast/DefaultCastOptionsProvider.html#DEFAULT_APP_ID"}, {"p":"com.theoplayer.android.api.cast.chromecast","c":"CastError","l":"errorCode","url":"com/theoplayer/android/api/cast/chromecast/CastError.html#errorCode"}, {"p":"com.theoplayer.android.api.cast.chromecast","c":"CastError","l":"description","url":"com/theoplayer/android/api/cast/chromecast/CastError.html#description"}, {"p":"com.theoplayer.android.api.ads","c":"OmidFriendlyObstruction","l":"view","url":"com/theoplayer/android/api/ads/OmidFriendlyObstruction.html#view"}, {"p":"com.theoplayer.android.api.ads","c":"OmidFriendlyObstruction","l":"purpose","url":"com/theoplayer/android/api/ads/OmidFriendlyObstruction.html#purpose"}, {"p":"com.theoplayer.android.api.ads","c":"AdInit","l":"type","url":"com/theoplayer/android/api/ads/AdInit.html#type"}, {"p":"com.theoplayer.android.api.ads","c":"AdInit","l":"timeOffset","url":"com/theoplayer/android/api/ads/AdInit.html#timeOffset"}, {"p":"com.theoplayer.android.api.ads","c":"AdInit","l":"skipOffset","url":"com/theoplayer/android/api/ads/AdInit.html#skipOffset"}, {"p":"com.theoplayer.android.api.ads","c":"AdInit","l":"id","url":"com/theoplayer/android/api/ads/AdInit.html#id"}, {"p":"com.theoplayer.android.api.ads","c":"AdInit","l":"duration","url":"com/theoplayer/android/api/ads/AdInit.html#duration"}, {"p":"com.theoplayer.android.api.ads","c":"AdInit","l":"clickThrough","url":"com/theoplayer/android/api/ads/AdInit.html#clickThrough"}, {"p":"com.theoplayer.android.api.ads","c":"AdInit","l":"resourceURI","url":"com/theoplayer/android/api/ads/AdInit.html#resourceURI"}, {"p":"com.theoplayer.android.api.ads","c":"AdInit","l":"mediaFiles","url":"com/theoplayer/android/api/ads/AdInit.html#mediaFiles"}, {"p":"com.theoplayer.android.api.ads","c":"AdInit","l":"customData","url":"com/theoplayer/android/api/ads/AdInit.html#customData"}, {"p":"com.theoplayer.android.api.ads","c":"AdBreakInit","l":"timeOffset","url":"com/theoplayer/android/api/ads/AdBreakInit.html#timeOffset"}, {"p":"com.theoplayer.android.api.ads","c":"AdBreakInit","l":"maxDuration","url":"com/theoplayer/android/api/ads/AdBreakInit.html#maxDuration"}, {"p":"com.theoplayer.android.api.ads","c":"AdBreakInit","l":"customData","url":"com/theoplayer/android/api/ads/AdBreakInit.html#customData"}, {"p":"com.theoplayer.android.api.source","c":"GoogleDaiTypedSource.Builder","l":"src","url":"com/theoplayer/android/api/source/mediatailor/MediaTailorSource.Builder.html#src"}, {"p":"com.theoplayer.android.api.source","c":"GoogleDaiTypedSource.Builder","l":"drm","url":"com/theoplayer/android/api/source/mediatailor/MediaTailorSource.Builder.html#drm"}, {"p":"com.theoplayer.android.api.source","c":"GoogleDaiTypedSource.Builder","l":"type","url":"com/theoplayer/android/api/source/mediatailor/MediaTailorSource.Builder.html#type"}, {"p":"com.theoplayer.android.api.source","c":"GoogleDaiTypedSource.Builder","l":"headers","url":"com/theoplayer/android/api/source/mediatailor/MediaTailorSource.Builder.html#headers"}, {"p":"com.theoplayer.android.api.source","c":"GoogleDaiTypedSource.Builder","l":"liveOffset","url":"com/theoplayer/android/api/source/mediatailor/MediaTailorSource.Builder.html#liveOffset"}, {"p":"com.theoplayer.android.api.source","c":"GoogleDaiTypedSource.Builder","l":"ssai","url":"com/theoplayer/android/api/source/mediatailor/MediaTailorSource.Builder.html#ssai"}, {"p":"com.theoplayer.android.api.source","c":"GoogleDaiTypedSource.Builder","l":"hlsDateRange","url":"com/theoplayer/android/api/source/mediatailor/MediaTailorSource.Builder.html#hlsDateRange"}, {"p":"com.theoplayer.android.api.source","c":"GoogleDaiTypedSource.Builder","l":"timeServer","url":"com/theoplayer/android/api/source/mediatailor/MediaTailorSource.Builder.html#timeServer"}, {"p":"com.theoplayer.android.api.source","c":"GoogleDaiTypedSource.Builder","l":"lowLatency","url":"com/theoplayer/android/api/source/mediatailor/MediaTailorSource.Builder.html#lowLatency"}, {"p":"com.theoplayer.android.api.source","c":"GoogleDaiTypedSource.Builder","l":"latencyConfiguration","url":"com/theoplayer/android/api/source/mediatailor/MediaTailorSource.Builder.html#latencyConfiguration"}, {"p":"com.theoplayer.android.api.source","c":"GoogleDaiTypedSource.Builder","l":"hls","url":"com/theoplayer/android/api/source/mediatailor/MediaTailorSource.Builder.html#hls"}, {"p":"com.theoplayer.android.api.source","c":"GoogleDaiTypedSource.Builder","l":"dash","url":"com/theoplayer/android/api/source/mediatailor/MediaTailorSource.Builder.html#dash"}, {"p":"com.theoplayer.android.api.source","c":"GoogleDaiTypedSource","l":"src","url":"com/theoplayer/android/api/source/mediatailor/MediaTailorSource.html#src"}, {"p":"com.theoplayer.android.api.source","c":"GoogleDaiTypedSource","l":"drm","url":"com/theoplayer/android/api/source/mediatailor/MediaTailorSource.html#drm"}, {"p":"com.theoplayer.android.api.source","c":"GoogleDaiTypedSource","l":"type","url":"com/theoplayer/android/api/source/mediatailor/MediaTailorSource.html#type"}, {"p":"com.theoplayer.android.api.source","c":"GoogleDaiTypedSource","l":"headers","url":"com/theoplayer/android/api/source/mediatailor/MediaTailorSource.html#headers"}, {"p":"com.theoplayer.android.api.source","c":"GoogleDaiTypedSource","l":"liveOffset","url":"com/theoplayer/android/api/source/mediatailor/MediaTailorSource.html#liveOffset"}, {"p":"com.theoplayer.android.api.source","c":"GoogleDaiTypedSource","l":"ssai","url":"com/theoplayer/android/api/source/mediatailor/MediaTailorSource.html#ssai"}, {"p":"com.theoplayer.android.api.source","c":"GoogleDaiTypedSource","l":"timeServer","url":"com/theoplayer/android/api/source/mediatailor/MediaTailorSource.html#timeServer"}, {"p":"com.theoplayer.android.api.source","c":"GoogleDaiTypedSource","l":"latencyConfiguration","url":"com/theoplayer/android/api/source/mediatailor/MediaTailorSource.html#latencyConfiguration"}, {"p":"com.theoplayer.android.api.source","c":"GoogleDaiTypedSource","l":"hls","url":"com/theoplayer/android/api/source/mediatailor/MediaTailorSource.html#hls"}, {"p":"com.theoplayer.android.api.source","c":"GoogleDaiTypedSource","l":"dash","url":"com/theoplayer/android/api/source/mediatailor/MediaTailorSource.html#dash"}, {"p":"com.theoplayer.android.api.source","c":"AdIntegration","l":"adIntegration","url":"com/theoplayer/android/api/source/AdIntegration.html#adIntegration"}, {"p":"com.theoplayer.android.api.source","c":"SourceDescription","l":"sources","url":"com/theoplayer/android/api/source/SourceDescription.html#sources"}, {"p":"com.theoplayer.android.api.source","c":"SourceDescription","l":"ads","url":"com/theoplayer/android/api/source/SourceDescription.html#ads"}, {"p":"com.theoplayer.android.api.source","c":"SourceDescription","l":"textTracks","url":"com/theoplayer/android/api/source/SourceDescription.html#textTracks"}, {"p":"com.theoplayer.android.api.source","c":"SourceDescription","l":"poster","url":"com/theoplayer/android/api/source/SourceDescription.html#poster"}, {"p":"com.theoplayer.android.api.source","c":"SourceDescription","l":"metadata","url":"com/theoplayer/android/api/source/SourceDescription.html#metadata"}, {"p":"com.theoplayer.android.api.source","c":"SourceDescription","l":"timeServer","url":"com/theoplayer/android/api/source/SourceDescription.html#timeServer"}, {"p":"com.theoplayer.android.api.source","c":"TypedSource.Builder","l":"src","url":"com/theoplayer/android/api/source/mediatailor/MediaTailorSource.Builder.html#src"}, {"p":"com.theoplayer.android.api.source","c":"TypedSource.Builder","l":"drm","url":"com/theoplayer/android/api/source/mediatailor/MediaTailorSource.Builder.html#drm"}, {"p":"com.theoplayer.android.api.source","c":"TypedSource.Builder","l":"type","url":"com/theoplayer/android/api/source/mediatailor/MediaTailorSource.Builder.html#type"}, {"p":"com.theoplayer.android.api.source","c":"TypedSource.Builder","l":"headers","url":"com/theoplayer/android/api/source/mediatailor/MediaTailorSource.Builder.html#headers"}, {"p":"com.theoplayer.android.api.source","c":"TypedSource.Builder","l":"liveOffset","url":"com/theoplayer/android/api/source/mediatailor/MediaTailorSource.Builder.html#liveOffset"}, {"p":"com.theoplayer.android.api.source","c":"TypedSource.Builder","l":"ssai","url":"com/theoplayer/android/api/source/mediatailor/MediaTailorSource.Builder.html#ssai"}, {"p":"com.theoplayer.android.api.source","c":"TypedSource.Builder","l":"hlsDateRange","url":"com/theoplayer/android/api/source/mediatailor/MediaTailorSource.Builder.html#hlsDateRange"}, {"p":"com.theoplayer.android.api.source","c":"TypedSource.Builder","l":"timeServer","url":"com/theoplayer/android/api/source/mediatailor/MediaTailorSource.Builder.html#timeServer"}, {"p":"com.theoplayer.android.api.source","c":"TypedSource.Builder","l":"lowLatency","url":"com/theoplayer/android/api/source/mediatailor/MediaTailorSource.Builder.html#lowLatency"}, {"p":"com.theoplayer.android.api.source","c":"TypedSource.Builder","l":"latencyConfiguration","url":"com/theoplayer/android/api/source/mediatailor/MediaTailorSource.Builder.html#latencyConfiguration"}, {"p":"com.theoplayer.android.api.source","c":"TypedSource.Builder","l":"hls","url":"com/theoplayer/android/api/source/mediatailor/MediaTailorSource.Builder.html#hls"}, {"p":"com.theoplayer.android.api.source","c":"TypedSource.Builder","l":"dash","url":"com/theoplayer/android/api/source/mediatailor/MediaTailorSource.Builder.html#dash"}, {"p":"com.theoplayer.android.api.source","c":"TypedSource","l":"src","url":"com/theoplayer/android/api/source/mediatailor/MediaTailorSource.html#src"}, {"p":"com.theoplayer.android.api.source","c":"TypedSource","l":"drm","url":"com/theoplayer/android/api/source/mediatailor/MediaTailorSource.html#drm"}, {"p":"com.theoplayer.android.api.source","c":"TypedSource","l":"type","url":"com/theoplayer/android/api/source/mediatailor/MediaTailorSource.html#type"}, {"p":"com.theoplayer.android.api.source","c":"TypedSource","l":"headers","url":"com/theoplayer/android/api/source/mediatailor/MediaTailorSource.html#headers"}, {"p":"com.theoplayer.android.api.source","c":"TypedSource","l":"liveOffset","url":"com/theoplayer/android/api/source/mediatailor/MediaTailorSource.html#liveOffset"}, {"p":"com.theoplayer.android.api.source","c":"TypedSource","l":"ssai","url":"com/theoplayer/android/api/source/mediatailor/MediaTailorSource.html#ssai"}, {"p":"com.theoplayer.android.api.source","c":"TypedSource","l":"timeServer","url":"com/theoplayer/android/api/source/mediatailor/MediaTailorSource.html#timeServer"}, {"p":"com.theoplayer.android.api.source","c":"TypedSource","l":"latencyConfiguration","url":"com/theoplayer/android/api/source/mediatailor/MediaTailorSource.html#latencyConfiguration"}, {"p":"com.theoplayer.android.api.source","c":"TypedSource","l":"hls","url":"com/theoplayer/android/api/source/mediatailor/MediaTailorSource.html#hls"}, {"p":"com.theoplayer.android.api.source","c":"TypedSource","l":"dash","url":"com/theoplayer/android/api/source/mediatailor/MediaTailorSource.html#dash"}, {"p":"com.theoplayer.android.api.source","c":"TextTrackDescription","l":"src","url":"com/theoplayer/android/api/source/TextTrackDescription.html#src"}, {"p":"com.theoplayer.android.api.source","c":"TextTrackDescription","l":"isDefault","url":"com/theoplayer/android/api/source/TextTrackDescription.html#isDefault()"}, {"p":"com.theoplayer.android.api.source","c":"TextTrackDescription","l":"kind","url":"com/theoplayer/android/api/source/TextTrackDescription.html#kind"}, {"p":"com.theoplayer.android.api.source","c":"TextTrackDescription","l":"srclang","url":"com/theoplayer/android/api/source/TextTrackDescription.html#srclang"}, {"p":"com.theoplayer.android.api.source","c":"TextTrackDescription","l":"label","url":"com/theoplayer/android/api/source/TextTrackDescription.html#label"}, {"p":"com.theoplayer.android.api.source.mediatailor","c":"MediaTailorSource.Builder","l":"src","url":"com/theoplayer/android/api/source/mediatailor/MediaTailorSource.Builder.html#src"}, {"p":"com.theoplayer.android.api.source.mediatailor","c":"MediaTailorSource.Builder","l":"drm","url":"com/theoplayer/android/api/source/mediatailor/MediaTailorSource.Builder.html#drm"}, {"p":"com.theoplayer.android.api.source.mediatailor","c":"MediaTailorSource.Builder","l":"type","url":"com/theoplayer/android/api/source/mediatailor/MediaTailorSource.Builder.html#type"}, {"p":"com.theoplayer.android.api.source.mediatailor","c":"MediaTailorSource.Builder","l":"headers","url":"com/theoplayer/android/api/source/mediatailor/MediaTailorSource.Builder.html#headers"}, {"p":"com.theoplayer.android.api.source.mediatailor","c":"MediaTailorSource.Builder","l":"liveOffset","url":"com/theoplayer/android/api/source/mediatailor/MediaTailorSource.Builder.html#liveOffset"}, {"p":"com.theoplayer.android.api.source.mediatailor","c":"MediaTailorSource.Builder","l":"ssai","url":"com/theoplayer/android/api/source/mediatailor/MediaTailorSource.Builder.html#ssai"}, {"p":"com.theoplayer.android.api.source.mediatailor","c":"MediaTailorSource.Builder","l":"hlsDateRange","url":"com/theoplayer/android/api/source/mediatailor/MediaTailorSource.Builder.html#hlsDateRange"}, {"p":"com.theoplayer.android.api.source.mediatailor","c":"MediaTailorSource.Builder","l":"timeServer","url":"com/theoplayer/android/api/source/mediatailor/MediaTailorSource.Builder.html#timeServer"}, {"p":"com.theoplayer.android.api.source.mediatailor","c":"MediaTailorSource.Builder","l":"lowLatency","url":"com/theoplayer/android/api/source/mediatailor/MediaTailorSource.Builder.html#lowLatency"}, {"p":"com.theoplayer.android.api.source.mediatailor","c":"MediaTailorSource.Builder","l":"latencyConfiguration","url":"com/theoplayer/android/api/source/mediatailor/MediaTailorSource.Builder.html#latencyConfiguration"}, {"p":"com.theoplayer.android.api.source.mediatailor","c":"MediaTailorSource.Builder","l":"hls","url":"com/theoplayer/android/api/source/mediatailor/MediaTailorSource.Builder.html#hls"}, {"p":"com.theoplayer.android.api.source.mediatailor","c":"MediaTailorSource.Builder","l":"dash","url":"com/theoplayer/android/api/source/mediatailor/MediaTailorSource.Builder.html#dash"}, {"p":"com.theoplayer.android.api.source.mediatailor","c":"MediaTailorSource","l":"adParams","url":"com/theoplayer/android/api/source/mediatailor/MediaTailorSource.html#adParams"}, {"p":"com.theoplayer.android.api.source.mediatailor","c":"MediaTailorSource","l":"src","url":"com/theoplayer/android/api/source/mediatailor/MediaTailorSource.html#src"}, {"p":"com.theoplayer.android.api.source.mediatailor","c":"MediaTailorSource","l":"drm","url":"com/theoplayer/android/api/source/mediatailor/MediaTailorSource.html#drm"}, {"p":"com.theoplayer.android.api.source.mediatailor","c":"MediaTailorSource","l":"type","url":"com/theoplayer/android/api/source/mediatailor/MediaTailorSource.html#type"}, {"p":"com.theoplayer.android.api.source.mediatailor","c":"MediaTailorSource","l":"headers","url":"com/theoplayer/android/api/source/mediatailor/MediaTailorSource.html#headers"}, {"p":"com.theoplayer.android.api.source.mediatailor","c":"MediaTailorSource","l":"liveOffset","url":"com/theoplayer/android/api/source/mediatailor/MediaTailorSource.html#liveOffset"}, {"p":"com.theoplayer.android.api.source.mediatailor","c":"MediaTailorSource","l":"ssai","url":"com/theoplayer/android/api/source/mediatailor/MediaTailorSource.html#ssai"}, {"p":"com.theoplayer.android.api.source.mediatailor","c":"MediaTailorSource","l":"timeServer","url":"com/theoplayer/android/api/source/mediatailor/MediaTailorSource.html#timeServer"}, {"p":"com.theoplayer.android.api.source.mediatailor","c":"MediaTailorSource","l":"latencyConfiguration","url":"com/theoplayer/android/api/source/mediatailor/MediaTailorSource.html#latencyConfiguration"}, {"p":"com.theoplayer.android.api.source.mediatailor","c":"MediaTailorSource","l":"hls","url":"com/theoplayer/android/api/source/mediatailor/MediaTailorSource.html#hls"}, {"p":"com.theoplayer.android.api.source.mediatailor","c":"MediaTailorSource","l":"dash","url":"com/theoplayer/android/api/source/mediatailor/MediaTailorSource.html#dash"}, {"p":"com.theoplayer.android.api.source.metadata","c":"ChromecastMetadataImage","l":"src","url":"com/theoplayer/android/api/source/metadata/ChromecastMetadataImage.html#src"}, {"p":"com.theoplayer.android.api.source.metadata","c":"ChromecastMetadataImage","l":"width","url":"com/theoplayer/android/api/source/metadata/ChromecastMetadataImage.html#width"}, {"p":"com.theoplayer.android.api.source.metadata","c":"ChromecastMetadataImage","l":"height","url":"com/theoplayer/android/api/source/metadata/ChromecastMetadataImage.html#height"}, {"p":"com.theoplayer.android.api.source.metadata","c":"ChromecastMetadataType","l":"type","url":"com/theoplayer/android/api/source/metadata/ChromecastMetadataType.html#type"}, {"p":"com.theoplayer.android.api.source.metadata","c":"ChromecastMetadataType","l":"nativeType","url":"com/theoplayer/android/api/source/metadata/ChromecastMetadataType.html#nativeType"}, {"p":"com.theoplayer.android.api.cache","c":"CachingParameters","l":"amount","url":"com/theoplayer/android/api/cache/CachingParameters.html#amount"}, {"p":"com.theoplayer.android.api.cache","c":"CachingParameters","l":"expirationDate","url":"com/theoplayer/android/api/cache/CachingParameters.html#expirationDate"}, {"p":"com.theoplayer.android.api.cache","c":"CachingParameters","l":"bandwidth","url":"com/theoplayer/android/api/cache/CachingParameters.html#bandwidth"}, {"p":"com.theoplayer.android.api.cache","c":"CachingParameters","l":"preferredTrackSelection","url":"com/theoplayer/android/api/cache/CachingParameters.html#preferredTrackSelection"}, {"p":"com.theoplayer.android.api.cache","c":"CachingPreferredTrackSelection","l":"audioTrackSelection","url":"com/theoplayer/android/api/cache/CachingPreferredTrackSelection.html#audioTrackSelection"}, {"p":"com.theoplayer.android.api.cache","c":"CachingPreferredTrackSelection","l":"textTrackSelection","url":"com/theoplayer/android/api/cache/CachingPreferredTrackSelection.html#textTrackSelection"}, {"p":"com.theoplayer.android.api.cache","c":"CachingTaskError","l":"errorCode","url":"com/theoplayer/android/api/cache/CachingTaskError.html#errorCode"}, {"p":"com.theoplayer.android.api.cache","c":"CachingTaskError","l":"description","url":"com/theoplayer/android/api/cache/CachingTaskError.html#description"}, {"p":"com.theoplayer.android.api.cache","c":"NoChangeBuilder","l":"INSTANCE","url":"com/theoplayer/android/api/cache/NoChangeBuilder.html#INSTANCE"}, {"p":"com.theoplayer.android.api.player","c":"PresentationMode","l":"mode","url":"com/theoplayer/android/api/player/PresentationMode.html#mode"}, {"p":"com.theoplayer.android.api.player","c":"PreloadType","l":"type","url":"com/theoplayer/android/api/player/PreloadType.html#type"}, {"p":"com.theoplayer.android.api.player","c":"NetworkConfiguration","l":"maxRetries","url":"com/theoplayer/android/api/player/NetworkConfiguration.html#maxRetries"}, {"p":"com.theoplayer.android.api.player","c":"NetworkConfiguration","l":"minimumBackOff","url":"com/theoplayer/android/api/player/NetworkConfiguration.html#minimumBackOff"}, {"p":"com.theoplayer.android.api.player","c":"NetworkConfiguration","l":"maximumBackOff","url":"com/theoplayer/android/api/player/NetworkConfiguration.html#maximumBackOff"}, {"p":"com.theoplayer.android.api.player.track.texttrack","c":"TextTrackType","l":"type","url":"com/theoplayer/android/api/player/track/texttrack/TextTrackType.html#type"}, {"p":"com.theoplayer.android.api.player.track.texttrack","c":"TextTrackMode","l":"mode","url":"com/theoplayer/android/api/player/track/texttrack/TextTrackMode.html#mode"}, {"p":"com.theoplayer.android.api.player.track.texttrack","c":"TextTrackKind","l":"type","url":"com/theoplayer/android/api/player/track/texttrack/TextTrackKind.html#type"}, {"p":"com.theoplayer.android.api.abr","c":"AbrStrategyConfiguration","l":"type","url":"com/theoplayer/android/api/abr/AbrStrategyConfiguration.html#type"}, {"p":"com.theoplayer.android.api.abr","c":"AbrStrategyConfiguration","l":"metadata","url":"com/theoplayer/android/api/abr/AbrStrategyConfiguration.html#metadata"}, {"p":"com.theoplayer.android.api.abr","c":"AbrStrategyMetadata","l":"bitrate","url":"com/theoplayer/android/api/abr/AbrStrategyMetadata.html#bitrate"}, {"p":"com.theoplayer.android.api.event.player","c":"PlayerEventTypes.Identifiers","l":"PLAY","url":"com/theoplayer/android/api/event/player/PlayerEventTypes.Identifiers.html#PLAY"}, {"p":"com.theoplayer.android.api.event.player","c":"PlayerEventTypes.Identifiers","l":"PAUSE","url":"com/theoplayer/android/api/event/player/PlayerEventTypes.Identifiers.html#PAUSE"}, {"p":"com.theoplayer.android.api.event.player","c":"PlayerEventTypes.Identifiers","l":"RATECHANGE","url":"com/theoplayer/android/api/event/player/PlayerEventTypes.Identifiers.html#RATECHANGE"}, {"p":"com.theoplayer.android.api.event.player","c":"PlayerEventTypes.Identifiers","l":"VOLUMECHANGE","url":"com/theoplayer/android/api/event/player/PlayerEventTypes.Identifiers.html#VOLUMECHANGE"}, {"p":"com.theoplayer.android.api.event.player","c":"PlayerEventTypes.Identifiers","l":"PROGRESS","url":"com/theoplayer/android/api/event/player/PlayerEventTypes.Identifiers.html#PROGRESS"}, {"p":"com.theoplayer.android.api.event.player","c":"PlayerEventTypes.Identifiers","l":"DURATIONCHANGE","url":"com/theoplayer/android/api/event/player/PlayerEventTypes.Identifiers.html#DURATIONCHANGE"}, {"p":"com.theoplayer.android.api.event.player","c":"PlayerEventTypes.Identifiers","l":"SOURCECHANGE","url":"com/theoplayer/android/api/event/player/PlayerEventTypes.Identifiers.html#SOURCECHANGE"}, {"p":"com.theoplayer.android.api.event.player","c":"PlayerEventTypes.Identifiers","l":"READYSTATECHANGE","url":"com/theoplayer/android/api/event/player/PlayerEventTypes.Identifiers.html#READYSTATECHANGE"}, {"p":"com.theoplayer.android.api.event.player","c":"PlayerEventTypes.Identifiers","l":"TIMEUPDATE","url":"com/theoplayer/android/api/event/player/PlayerEventTypes.Identifiers.html#TIMEUPDATE"}, {"p":"com.theoplayer.android.api.event.player","c":"PlayerEventTypes.Identifiers","l":"WAITING","url":"com/theoplayer/android/api/event/player/PlayerEventTypes.Identifiers.html#WAITING"}, {"p":"com.theoplayer.android.api.event.player","c":"PlayerEventTypes.Identifiers","l":"PLAYING","url":"com/theoplayer/android/api/event/player/PlayerEventTypes.Identifiers.html#PLAYING"}, {"p":"com.theoplayer.android.api.event.player","c":"PlayerEventTypes.Identifiers","l":"ENDED","url":"com/theoplayer/android/api/event/player/PlayerEventTypes.Identifiers.html#ENDED"}, {"p":"com.theoplayer.android.api.event.player","c":"PlayerEventTypes.Identifiers","l":"LOADEDMETADATA","url":"com/theoplayer/android/api/event/player/PlayerEventTypes.Identifiers.html#LOADEDMETADATA"}, {"p":"com.theoplayer.android.api.event.player","c":"PlayerEventTypes.Identifiers","l":"LOADEDDATA","url":"com/theoplayer/android/api/event/player/PlayerEventTypes.Identifiers.html#LOADEDDATA"}, {"p":"com.theoplayer.android.api.event.player","c":"PlayerEventTypes.Identifiers","l":"CANPLAY","url":"com/theoplayer/android/api/event/player/PlayerEventTypes.Identifiers.html#CANPLAY"}, {"p":"com.theoplayer.android.api.event.player","c":"PlayerEventTypes.Identifiers","l":"CANPLAYTHROUGH","url":"com/theoplayer/android/api/event/player/PlayerEventTypes.Identifiers.html#CANPLAYTHROUGH"}, {"p":"com.theoplayer.android.api.event.player","c":"PlayerEventTypes.Identifiers","l":"SEGMENTNOTFOUND","url":"com/theoplayer/android/api/event/player/PlayerEventTypes.Identifiers.html#SEGMENTNOTFOUND"}, {"p":"com.theoplayer.android.api.event.player","c":"PlayerEventTypes.Identifiers","l":"ERROR","url":"com/theoplayer/android/api/event/player/PlayerEventTypes.Identifiers.html#ERROR"}, {"p":"com.theoplayer.android.api.event.player","c":"PlayerEventTypes.Identifiers","l":"ENCRYPTED","url":"com/theoplayer/android/api/event/player/PlayerEventTypes.Identifiers.html#ENCRYPTED"}, {"p":"com.theoplayer.android.api.event.player","c":"PlayerEventTypes.Identifiers","l":"CONTENTPROTECTIONERROR","url":"com/theoplayer/android/api/event/player/PlayerEventTypes.Identifiers.html#CONTENTPROTECTIONERROR"}, {"p":"com.theoplayer.android.api.event.player","c":"PlayerEventTypes.Identifiers","l":"CONTENTPROTECTIONSUCCESS","url":"com/theoplayer/android/api/event/player/PlayerEventTypes.Identifiers.html#CONTENTPROTECTIONSUCCESS"}, {"p":"com.theoplayer.android.api.event.player","c":"PlayerEventTypes.Identifiers","l":"NOSUPPORTEDREPRESENTATIONFOUND","url":"com/theoplayer/android/api/event/player/PlayerEventTypes.Identifiers.html#NOSUPPORTEDREPRESENTATIONFOUND"}, {"p":"com.theoplayer.android.api.event.player","c":"PlayerEventTypes.Identifiers","l":"SEEKING","url":"com/theoplayer/android/api/event/player/PlayerEventTypes.Identifiers.html#SEEKING"}, {"p":"com.theoplayer.android.api.event.player","c":"PlayerEventTypes.Identifiers","l":"SEEKED","url":"com/theoplayer/android/api/event/player/PlayerEventTypes.Identifiers.html#SEEKED"}, {"p":"com.theoplayer.android.api.event.player","c":"PlayerEventTypes.Identifiers","l":"PRESENTATIONMODECHANGE","url":"com/theoplayer/android/api/event/player/PlayerEventTypes.Identifiers.html#PRESENTATIONMODECHANGE"}, {"p":"com.theoplayer.android.api.event.player","c":"PlayerEventTypes.Identifiers","l":"DESTROY","url":"com/theoplayer/android/api/event/player/PlayerEventTypes.Identifiers.html#DESTROY"}, {"p":"com.theoplayer.android.api.event.player","c":"PlayerEventTypes.Identifiers","l":"LOADSTART","url":"com/theoplayer/android/api/event/player/PlayerEventTypes.Identifiers.html#LOADSTART"}, {"p":"com.theoplayer.android.api.event.player","c":"PlayerEventTypes.Identifiers","l":"RESIZE","url":"com/theoplayer/android/api/event/player/PlayerEventTypes.Identifiers.html#RESIZE"}, {"p":"com.theoplayer.android.api.event.player","c":"PlayerEventTypes","l":"PLAY","url":"com/theoplayer/android/api/event/player/PlayerEventTypes.html#PLAY"}, {"p":"com.theoplayer.android.api.event.player","c":"PlayerEventTypes","l":"PAUSE","url":"com/theoplayer/android/api/event/player/PlayerEventTypes.html#PAUSE"}, {"p":"com.theoplayer.android.api.event.player","c":"PlayerEventTypes","l":"RATECHANGE","url":"com/theoplayer/android/api/event/player/PlayerEventTypes.html#RATECHANGE"}, {"p":"com.theoplayer.android.api.event.player","c":"PlayerEventTypes","l":"VOLUMECHANGE","url":"com/theoplayer/android/api/event/player/PlayerEventTypes.html#VOLUMECHANGE"}, {"p":"com.theoplayer.android.api.event.player","c":"PlayerEventTypes","l":"PROGRESS","url":"com/theoplayer/android/api/event/player/PlayerEventTypes.html#PROGRESS"}, {"p":"com.theoplayer.android.api.event.player","c":"PlayerEventTypes","l":"DURATIONCHANGE","url":"com/theoplayer/android/api/event/player/PlayerEventTypes.html#DURATIONCHANGE"}, {"p":"com.theoplayer.android.api.event.player","c":"PlayerEventTypes","l":"SOURCECHANGE","url":"com/theoplayer/android/api/event/player/PlayerEventTypes.html#SOURCECHANGE"}, {"p":"com.theoplayer.android.api.event.player","c":"PlayerEventTypes","l":"READYSTATECHANGE","url":"com/theoplayer/android/api/event/player/PlayerEventTypes.html#READYSTATECHANGE"}, {"p":"com.theoplayer.android.api.event.player","c":"PlayerEventTypes","l":"TIMEUPDATE","url":"com/theoplayer/android/api/event/player/PlayerEventTypes.html#TIMEUPDATE"}, {"p":"com.theoplayer.android.api.event.player","c":"PlayerEventTypes","l":"WAITING","url":"com/theoplayer/android/api/event/player/PlayerEventTypes.html#WAITING"}, {"p":"com.theoplayer.android.api.event.player","c":"PlayerEventTypes","l":"PLAYING","url":"com/theoplayer/android/api/event/player/PlayerEventTypes.html#PLAYING"}, {"p":"com.theoplayer.android.api.event.player","c":"PlayerEventTypes","l":"ENDED","url":"com/theoplayer/android/api/event/player/PlayerEventTypes.html#ENDED"}, {"p":"com.theoplayer.android.api.event.player","c":"PlayerEventTypes","l":"LOADEDMETADATA","url":"com/theoplayer/android/api/event/player/PlayerEventTypes.html#LOADEDMETADATA"}, {"p":"com.theoplayer.android.api.event.player","c":"PlayerEventTypes","l":"LOADEDDATA","url":"com/theoplayer/android/api/event/player/PlayerEventTypes.html#LOADEDDATA"}, {"p":"com.theoplayer.android.api.event.player","c":"PlayerEventTypes","l":"CANPLAY","url":"com/theoplayer/android/api/event/player/PlayerEventTypes.html#CANPLAY"}, {"p":"com.theoplayer.android.api.event.player","c":"PlayerEventTypes","l":"CANPLAYTHROUGH","url":"com/theoplayer/android/api/event/player/PlayerEventTypes.html#CANPLAYTHROUGH"}, {"p":"com.theoplayer.android.api.event.player","c":"PlayerEventTypes","l":"SEGMENTNOTFOUND","url":"com/theoplayer/android/api/event/player/PlayerEventTypes.html#SEGMENTNOTFOUND"}, {"p":"com.theoplayer.android.api.event.player","c":"PlayerEventTypes","l":"ERROR","url":"com/theoplayer/android/api/event/player/PlayerEventTypes.html#ERROR"}, {"p":"com.theoplayer.android.api.event.player","c":"PlayerEventTypes","l":"ENCRYPTED","url":"com/theoplayer/android/api/event/player/PlayerEventTypes.html#ENCRYPTED"}, {"p":"com.theoplayer.android.api.event.player","c":"PlayerEventTypes","l":"CONTENTPROTECTIONERROR","url":"com/theoplayer/android/api/event/player/PlayerEventTypes.html#CONTENTPROTECTIONERROR"}, {"p":"com.theoplayer.android.api.event.player","c":"PlayerEventTypes","l":"CONTENTPROTECTIONSUCCESS","url":"com/theoplayer/android/api/event/player/PlayerEventTypes.html#CONTENTPROTECTIONSUCCESS"}, {"p":"com.theoplayer.android.api.event.player","c":"PlayerEventTypes","l":"NOSUPPORTEDREPRESENTATIONFOUND","url":"com/theoplayer/android/api/event/player/PlayerEventTypes.html#NOSUPPORTEDREPRESENTATIONFOUND"}, {"p":"com.theoplayer.android.api.event.player","c":"PlayerEventTypes","l":"SEEKING","url":"com/theoplayer/android/api/event/player/PlayerEventTypes.html#SEEKING"}, {"p":"com.theoplayer.android.api.event.player","c":"PlayerEventTypes","l":"SEEKED","url":"com/theoplayer/android/api/event/player/PlayerEventTypes.html#SEEKED"}, {"p":"com.theoplayer.android.api.event.player","c":"PlayerEventTypes","l":"PRESENTATIONMODECHANGE","url":"com/theoplayer/android/api/event/player/PlayerEventTypes.html#PRESENTATIONMODECHANGE"}, {"p":"com.theoplayer.android.api.event.player","c":"PlayerEventTypes","l":"DESTROY","url":"com/theoplayer/android/api/event/player/PlayerEventTypes.html#DESTROY"}, {"p":"com.theoplayer.android.api.event.player","c":"PlayerEventTypes","l":"LOADSTART","url":"com/theoplayer/android/api/event/player/PlayerEventTypes.html#LOADSTART"}, {"p":"com.theoplayer.android.api.event.player","c":"PlayerEventTypes","l":"RESIZE","url":"com/theoplayer/android/api/event/player/PlayerEventTypes.html#RESIZE"}, {"p":"com.theoplayer.android.api.event.track.texttrack","c":"TextTrackEventTypes","l":"CUECHANGE","url":"com/theoplayer/android/api/event/track/texttrack/TextTrackEventTypes.html#CUECHANGE"}, {"p":"com.theoplayer.android.api.event.track.texttrack","c":"TextTrackEventTypes","l":"CHANGE","url":"com/theoplayer/android/api/event/track/texttrack/TextTrackEventTypes.html#CHANGE"}, {"p":"com.theoplayer.android.api.event.track.texttrack","c":"TextTrackEventTypes","l":"ADDCUE","url":"com/theoplayer/android/api/event/track/texttrack/TextTrackEventTypes.html#ADDCUE"}, {"p":"com.theoplayer.android.api.event.track.texttrack","c":"TextTrackEventTypes","l":"REMOVECUE","url":"com/theoplayer/android/api/event/track/texttrack/TextTrackEventTypes.html#REMOVECUE"}, {"p":"com.theoplayer.android.api.event.track.texttrack","c":"TextTrackEventTypes","l":"UPDATECUE","url":"com/theoplayer/android/api/event/track/texttrack/TextTrackEventTypes.html#UPDATECUE"}, {"p":"com.theoplayer.android.api.event.track.texttrack","c":"TextTrackEventTypes","l":"ENTERCUE","url":"com/theoplayer/android/api/event/track/texttrack/TextTrackEventTypes.html#ENTERCUE"}, {"p":"com.theoplayer.android.api.event.track.texttrack","c":"TextTrackEventTypes","l":"EXITCUE","url":"com/theoplayer/android/api/event/track/texttrack/TextTrackEventTypes.html#EXITCUE"}, {"p":"com.theoplayer.android.api.event.track.texttrack.list","c":"TextTrackListEventTypes","l":"ADDTRACK","url":"com/theoplayer/android/api/event/track/texttrack/list/TextTrackListEventTypes.html#ADDTRACK"}, {"p":"com.theoplayer.android.api.event.track.texttrack.list","c":"TextTrackListEventTypes","l":"REMOVETRACK","url":"com/theoplayer/android/api/event/track/texttrack/list/TextTrackListEventTypes.html#REMOVETRACK"}, {"p":"com.theoplayer.android.api.event.track.texttrack.list","c":"TextTrackListEventTypes","l":"TRACKLISTCHANGE","url":"com/theoplayer/android/api/event/track/texttrack/list/TextTrackListEventTypes.html#TRACKLISTCHANGE"}, {"p":"com.theoplayer.android.api.event.track.texttrack.texttrackcue","c":"TextTrackCueEventTypes","l":"ENTER","url":"com/theoplayer/android/api/event/track/texttrack/texttrackcue/TextTrackCueEventTypes.html#ENTER"}, {"p":"com.theoplayer.android.api.event.track.texttrack.texttrackcue","c":"TextTrackCueEventTypes","l":"EXIT","url":"com/theoplayer/android/api/event/track/texttrack/texttrackcue/TextTrackCueEventTypes.html#EXIT"}, {"p":"com.theoplayer.android.api.event.track.texttrack.texttrackcue","c":"TextTrackCueEventTypes","l":"UPDATE","url":"com/theoplayer/android/api/event/track/texttrack/texttrackcue/TextTrackCueEventTypes.html#UPDATE"}, {"p":"com.theoplayer.android.api.event.track.mediatrack.video","c":"VideoTrackEventTypes","l":"TARGETQUALITYCHANGEDEVENT","url":"com/theoplayer/android/api/event/track/mediatrack/video/VideoTrackEventTypes.html#TARGETQUALITYCHANGEDEVENT"}, {"p":"com.theoplayer.android.api.event.track.mediatrack.video","c":"VideoTrackEventTypes","l":"ACTIVEQUALITYCHANGEDEVENT","url":"com/theoplayer/android/api/event/track/mediatrack/video/VideoTrackEventTypes.html#ACTIVEQUALITYCHANGEDEVENT"}, {"p":"com.theoplayer.android.api.event.track.mediatrack.video.list","c":"VideoTrackListEventTypes","l":"ADDTRACK","url":"com/theoplayer/android/api/event/track/mediatrack/video/list/VideoTrackListEventTypes.html#ADDTRACK"}, {"p":"com.theoplayer.android.api.event.track.mediatrack.video.list","c":"VideoTrackListEventTypes","l":"REMOVETRACK","url":"com/theoplayer/android/api/event/track/mediatrack/video/list/VideoTrackListEventTypes.html#REMOVETRACK"}, {"p":"com.theoplayer.android.api.event.track.mediatrack.video.list","c":"VideoTrackListEventTypes","l":"TRACKLISTCHANGE","url":"com/theoplayer/android/api/event/track/mediatrack/video/list/VideoTrackListEventTypes.html#TRACKLISTCHANGE"}, {"p":"com.theoplayer.android.api.event.track.mediatrack.audio","c":"AudioTrackEventTypes","l":"TARGETQUALITYCHANGEDEVENT","url":"com/theoplayer/android/api/event/track/mediatrack/audio/AudioTrackEventTypes.html#TARGETQUALITYCHANGEDEVENT"}, {"p":"com.theoplayer.android.api.event.track.mediatrack.audio","c":"AudioTrackEventTypes","l":"ACTIVEQUALITYCHANGEDEVENT","url":"com/theoplayer/android/api/event/track/mediatrack/audio/AudioTrackEventTypes.html#ACTIVEQUALITYCHANGEDEVENT"}, {"p":"com.theoplayer.android.api.event.track.mediatrack.audio.list","c":"AudioTrackListEventTypes","l":"ADDTRACK","url":"com/theoplayer/android/api/event/track/mediatrack/audio/list/AudioTrackListEventTypes.html#ADDTRACK"}, {"p":"com.theoplayer.android.api.event.track.mediatrack.audio.list","c":"AudioTrackListEventTypes","l":"REMOVETRACK","url":"com/theoplayer/android/api/event/track/mediatrack/audio/list/AudioTrackListEventTypes.html#REMOVETRACK"}, {"p":"com.theoplayer.android.api.event.track.mediatrack.audio.list","c":"AudioTrackListEventTypes","l":"TRACKLISTCHANGE","url":"com/theoplayer/android/api/event/track/mediatrack/audio/list/AudioTrackListEventTypes.html#TRACKLISTCHANGE"}, {"p":"com.theoplayer.android.api.event.track.mediatrack.quality","c":"QualityEventTypes","l":"UPDATE","url":"com/theoplayer/android/api/event/track/mediatrack/quality/QualityEventTypes.html#UPDATE"}, {"p":"com.theoplayer.android.api.event.ads","c":"AdIntegrationKind","l":"type","url":"com/theoplayer/android/api/event/ads/AdIntegrationKind.html#type"}, {"p":"com.theoplayer.android.api.event.ads","c":"AdsEventTypes.Identifiers","l":"AD_BEGIN","url":"com/theoplayer/android/api/event/ads/AdsEventTypes.Identifiers.html#AD_BEGIN"}, {"p":"com.theoplayer.android.api.event.ads","c":"AdsEventTypes.Identifiers","l":"AD_END","url":"com/theoplayer/android/api/event/ads/AdsEventTypes.Identifiers.html#AD_END"}, {"p":"com.theoplayer.android.api.event.ads","c":"AdsEventTypes.Identifiers","l":"AD_SKIP","url":"com/theoplayer/android/api/event/ads/AdsEventTypes.Identifiers.html#AD_SKIP"}, {"p":"com.theoplayer.android.api.event.ads","c":"AdsEventTypes.Identifiers","l":"AD_ERROR","url":"com/theoplayer/android/api/event/ads/AdsEventTypes.Identifiers.html#AD_ERROR"}, {"p":"com.theoplayer.android.api.event.ads","c":"AdsEventTypes.Identifiers","l":"AD_BREAK_BEGIN","url":"com/theoplayer/android/api/event/ads/AdsEventTypes.Identifiers.html#AD_BREAK_BEGIN"}, {"p":"com.theoplayer.android.api.event.ads","c":"AdsEventTypes.Identifiers","l":"AD_BREAK_END","url":"com/theoplayer/android/api/event/ads/AdsEventTypes.Identifiers.html#AD_BREAK_END"}, {"p":"com.theoplayer.android.api.event.ads","c":"AdsEventTypes.Identifiers","l":"AD_LOADED","url":"com/theoplayer/android/api/event/ads/AdsEventTypes.Identifiers.html#AD_LOADED"}, {"p":"com.theoplayer.android.api.event.ads","c":"AdsEventTypes.Identifiers","l":"AD_IMPRESSION","url":"com/theoplayer/android/api/event/ads/AdsEventTypes.Identifiers.html#AD_IMPRESSION"}, {"p":"com.theoplayer.android.api.event.ads","c":"AdsEventTypes.Identifiers","l":"AD_FIRST_QUARTILE","url":"com/theoplayer/android/api/event/ads/AdsEventTypes.Identifiers.html#AD_FIRST_QUARTILE"}, {"p":"com.theoplayer.android.api.event.ads","c":"AdsEventTypes.Identifiers","l":"AD_THIRD_QUARTILE","url":"com/theoplayer/android/api/event/ads/AdsEventTypes.Identifiers.html#AD_THIRD_QUARTILE"}, {"p":"com.theoplayer.android.api.event.ads","c":"AdsEventTypes.Identifiers","l":"AD_MIDPOINT","url":"com/theoplayer/android/api/event/ads/AdsEventTypes.Identifiers.html#AD_MIDPOINT"}, {"p":"com.theoplayer.android.api.event.ads","c":"AdsEventTypes.Identifiers","l":"ADD_AD","url":"com/theoplayer/android/api/event/ads/AdsEventTypes.Identifiers.html#ADD_AD"}, {"p":"com.theoplayer.android.api.event.ads","c":"AdsEventTypes.Identifiers","l":"ADD_AD_BREAK","url":"com/theoplayer/android/api/event/ads/AdsEventTypes.Identifiers.html#ADD_AD_BREAK"}, {"p":"com.theoplayer.android.api.event.ads","c":"AdsEventTypes.Identifiers","l":"AD_BREAK_CHANGE","url":"com/theoplayer/android/api/event/ads/AdsEventTypes.Identifiers.html#AD_BREAK_CHANGE"}, {"p":"com.theoplayer.android.api.event.ads","c":"AdsEventTypes.Identifiers","l":"REMOVE_AD_BREAK","url":"com/theoplayer/android/api/event/ads/AdsEventTypes.Identifiers.html#REMOVE_AD_BREAK"}, {"p":"com.theoplayer.android.api.event.ads","c":"AdsEventTypes","l":"AD_BEGIN","url":"com/theoplayer/android/api/event/ads/AdsEventTypes.html#AD_BEGIN"}, {"p":"com.theoplayer.android.api.event.ads","c":"AdsEventTypes","l":"AD_END","url":"com/theoplayer/android/api/event/ads/AdsEventTypes.html#AD_END"}, {"p":"com.theoplayer.android.api.event.ads","c":"AdsEventTypes","l":"AD_SKIP","url":"com/theoplayer/android/api/event/ads/AdsEventTypes.html#AD_SKIP"}, {"p":"com.theoplayer.android.api.event.ads","c":"AdsEventTypes","l":"AD_ERROR","url":"com/theoplayer/android/api/event/ads/AdsEventTypes.html#AD_ERROR"}, {"p":"com.theoplayer.android.api.event.ads","c":"AdsEventTypes","l":"AD_BREAK_BEGIN","url":"com/theoplayer/android/api/event/ads/AdsEventTypes.html#AD_BREAK_BEGIN"}, {"p":"com.theoplayer.android.api.event.ads","c":"AdsEventTypes","l":"AD_BREAK_END","url":"com/theoplayer/android/api/event/ads/AdsEventTypes.html#AD_BREAK_END"}, {"p":"com.theoplayer.android.api.event.ads","c":"AdsEventTypes","l":"AD_LOADED","url":"com/theoplayer/android/api/event/ads/AdsEventTypes.html#AD_LOADED"}, {"p":"com.theoplayer.android.api.event.ads","c":"AdsEventTypes","l":"AD_IMPRESSION","url":"com/theoplayer/android/api/event/ads/AdsEventTypes.html#AD_IMPRESSION"}, {"p":"com.theoplayer.android.api.event.ads","c":"AdsEventTypes","l":"AD_FIRST_QUARTILE","url":"com/theoplayer/android/api/event/ads/AdsEventTypes.html#AD_FIRST_QUARTILE"}, {"p":"com.theoplayer.android.api.event.ads","c":"AdsEventTypes","l":"AD_THIRD_QUARTILE","url":"com/theoplayer/android/api/event/ads/AdsEventTypes.html#AD_THIRD_QUARTILE"}, {"p":"com.theoplayer.android.api.event.ads","c":"AdsEventTypes","l":"AD_MIDPOINT","url":"com/theoplayer/android/api/event/ads/AdsEventTypes.html#AD_MIDPOINT"}, {"p":"com.theoplayer.android.api.event.ads","c":"AdsEventTypes","l":"ADD_AD","url":"com/theoplayer/android/api/event/ads/AdsEventTypes.html#ADD_AD"}, {"p":"com.theoplayer.android.api.event.ads","c":"AdsEventTypes","l":"ADD_AD_BREAK","url":"com/theoplayer/android/api/event/ads/AdsEventTypes.html#ADD_AD_BREAK"}, {"p":"com.theoplayer.android.api.event.ads","c":"AdsEventTypes","l":"AD_BREAK_CHANGE","url":"com/theoplayer/android/api/event/ads/AdsEventTypes.html#AD_BREAK_CHANGE"}, {"p":"com.theoplayer.android.api.event.ads","c":"AdsEventTypes","l":"REMOVE_AD_BREAK","url":"com/theoplayer/android/api/event/ads/AdsEventTypes.html#REMOVE_AD_BREAK"}, {"p":"com.theoplayer.android.api.error","c":"ErrorCode","l":"id","url":"com/theoplayer/android/api/error/ErrorCode.html#id"}, {"p":"com.theoplayer.android.api.error","c":"ContentProtectionException","l":"url","url":"com/theoplayer/android/api/error/ContentProtectionException.html#url"}, {"p":"com.theoplayer.android.api.error","c":"ContentProtectionException","l":"status","url":"com/theoplayer/android/api/error/ContentProtectionException.html#status"}, {"p":"com.theoplayer.android.api.error","c":"ContentProtectionException","l":"statusText","url":"com/theoplayer/android/api/error/ContentProtectionException.html#statusText"}, {"p":"com.theoplayer.android.api.error","c":"ContentProtectionException","l":"response","url":"com/theoplayer/android/api/error/ContentProtectionException.html#response"}, {"p":"com.theoplayer.android.api.error","c":"ContentProtectionException","l":"code","url":"com/theoplayer/android/api/error/THEOplayerException.html#code"}, {"p":"com.theoplayer.android.api.error","c":"ErrorCategory","l":"id","url":"com/theoplayer/android/api/error/ErrorCategory.html#id"}, {"p":"com.theoplayer.android.api.error","c":"THEOplayerException","l":"code","url":"com/theoplayer/android/api/error/THEOplayerException.html#code"}, {"p":"com.theoplayer.android.api.contentprotection","c":"Request","l":"url","url":"com/theoplayer/android/api/contentprotection/Request.html#url"}, {"p":"com.theoplayer.android.api.contentprotection","c":"Request","l":"method","url":"com/theoplayer/android/api/contentprotection/Request.html#method"}, {"p":"com.theoplayer.android.api.contentprotection","c":"Request","l":"headers","url":"com/theoplayer/android/api/contentprotection/Request.html#headers"}, {"p":"com.theoplayer.android.api.contentprotection","c":"Request","l":"body","url":"com/theoplayer/android/api/contentprotection/Request.html#body"}, {"p":"com.theoplayer.android.api.source.addescription","c":"GoogleImaAdDescription","l":"sources","url":"com/theoplayer/android/api/source/addescription/GoogleImaAdDescription.html#sources"}, {"p":"com.theoplayer.android.api.source.addescription","c":"GoogleImaAdDescription","l":"timeOffset","url":"com/theoplayer/android/api/source/addescription/GoogleImaAdDescription.html#timeOffset"}, {"p":"com.theoplayer.android.api.source.addescription","c":"GoogleImaAdDescription","l":"integration","url":"com/theoplayer/android/api/source/addescription/AdDescription.html#integration"}, {"p":"com.theoplayer.android.api.source.addescription","c":"AdDescription","l":"integration","url":"com/theoplayer/android/api/source/addescription/AdDescription.html#integration"}, {"p":"com.theoplayer.android.api.source.drm","c":"KeySystemConfiguration","l":"licenseAcquisitionURL","url":"com/theoplayer/android/api/source/drm/preintegration/KeyOSKeySystemConfiguration.html#licenseAcquisitionURL"}, {"p":"com.theoplayer.android.api.source.drm","c":"KeySystemConfiguration","l":"headers","url":"com/theoplayer/android/api/source/drm/preintegration/KeyOSKeySystemConfiguration.html#headers"}, {"p":"com.theoplayer.android.api.source.drm","c":"KeySystemConfiguration","l":"queryParameters","url":"com/theoplayer/android/api/source/drm/preintegration/KeyOSKeySystemConfiguration.html#queryParameters"}, {"p":"com.theoplayer.android.api.source.drm","c":"KeySystemConfiguration","l":"licenseType","url":"com/theoplayer/android/api/source/drm/preintegration/KeyOSKeySystemConfiguration.html#licenseType"}, {"p":"com.theoplayer.android.api.source.drm","c":"ClearkeyKeySystemConfiguration.ClearkeyDecryptionKey","l":"id","url":"com/theoplayer/android/api/source/drm/ClearkeyKeySystemConfiguration.ClearkeyDecryptionKey.html#id"}, {"p":"com.theoplayer.android.api.source.drm","c":"ClearkeyKeySystemConfiguration.ClearkeyDecryptionKey","l":"value","url":"com/theoplayer/android/api/source/drm/ClearkeyKeySystemConfiguration.ClearkeyDecryptionKey.html#value"}, {"p":"com.theoplayer.android.api.source.drm","c":"ClearkeyKeySystemConfiguration","l":"keys","url":"com/theoplayer/android/api/source/drm/ClearkeyKeySystemConfiguration.html#keys"}, {"p":"com.theoplayer.android.api.source.drm","c":"ClearkeyKeySystemConfiguration","l":"licenseAcquisitionURL","url":"com/theoplayer/android/api/source/drm/preintegration/KeyOSKeySystemConfiguration.html#licenseAcquisitionURL"}, {"p":"com.theoplayer.android.api.source.drm","c":"ClearkeyKeySystemConfiguration","l":"headers","url":"com/theoplayer/android/api/source/drm/preintegration/KeyOSKeySystemConfiguration.html#headers"}, {"p":"com.theoplayer.android.api.source.drm","c":"ClearkeyKeySystemConfiguration","l":"queryParameters","url":"com/theoplayer/android/api/source/drm/preintegration/KeyOSKeySystemConfiguration.html#queryParameters"}, {"p":"com.theoplayer.android.api.source.drm","c":"ClearkeyKeySystemConfiguration","l":"licenseType","url":"com/theoplayer/android/api/source/drm/preintegration/KeyOSKeySystemConfiguration.html#licenseType"}, {"p":"com.theoplayer.android.api.source.drm","c":"DRMConfiguration","l":"fairplay","url":"com/theoplayer/android/api/source/drm/preintegration/XstreamConfiguration.html#fairplay"}, {"p":"com.theoplayer.android.api.source.drm","c":"DRMConfiguration","l":"playready","url":"com/theoplayer/android/api/source/drm/preintegration/XstreamConfiguration.html#playready"}, {"p":"com.theoplayer.android.api.source.drm","c":"DRMConfiguration","l":"widevine","url":"com/theoplayer/android/api/source/drm/preintegration/XstreamConfiguration.html#widevine"}, {"p":"com.theoplayer.android.api.source.drm","c":"DRMConfiguration","l":"clearkey","url":"com/theoplayer/android/api/source/drm/preintegration/XstreamConfiguration.html#clearkey"}, {"p":"com.theoplayer.android.api.source.drm","c":"DRMConfiguration","l":"integrationParameters","url":"com/theoplayer/android/api/source/drm/preintegration/XstreamConfiguration.html#integrationParameters"}, {"p":"com.theoplayer.android.api.source.drm","c":"DRMConfiguration","l":"integration","url":"com/theoplayer/android/api/source/drm/preintegration/XstreamConfiguration.html#integration"}, {"p":"com.theoplayer.android.api.source.drm","c":"DRMConfiguration","l":"customIntegrationId","url":"com/theoplayer/android/api/source/drm/preintegration/XstreamConfiguration.html#customIntegrationId"}, {"p":"com.theoplayer.android.api.source.drm","c":"DRMIntegrationId","l":"integrationId","url":"com/theoplayer/android/api/source/drm/DRMIntegrationId.html#integrationId"}, {"p":"com.theoplayer.android.api.source.drm","c":"FairPlayKeySystemConfiguration","l":"certificateURL","url":"com/theoplayer/android/api/source/drm/FairPlayKeySystemConfiguration.html#certificateURL"}, {"p":"com.theoplayer.android.api.source.drm","c":"FairPlayKeySystemConfiguration","l":"licenseAcquisitionURL","url":"com/theoplayer/android/api/source/drm/preintegration/KeyOSKeySystemConfiguration.html#licenseAcquisitionURL"}, {"p":"com.theoplayer.android.api.source.drm","c":"FairPlayKeySystemConfiguration","l":"headers","url":"com/theoplayer/android/api/source/drm/preintegration/KeyOSKeySystemConfiguration.html#headers"}, {"p":"com.theoplayer.android.api.source.drm","c":"FairPlayKeySystemConfiguration","l":"queryParameters","url":"com/theoplayer/android/api/source/drm/preintegration/KeyOSKeySystemConfiguration.html#queryParameters"}, {"p":"com.theoplayer.android.api.source.drm","c":"FairPlayKeySystemConfiguration","l":"licenseType","url":"com/theoplayer/android/api/source/drm/preintegration/KeyOSKeySystemConfiguration.html#licenseType"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"DRMPreIntegrationConfiguration","l":"fairplay","url":"com/theoplayer/android/api/source/drm/preintegration/XstreamConfiguration.html#fairplay"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"DRMPreIntegrationConfiguration","l":"playready","url":"com/theoplayer/android/api/source/drm/preintegration/XstreamConfiguration.html#playready"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"DRMPreIntegrationConfiguration","l":"widevine","url":"com/theoplayer/android/api/source/drm/preintegration/XstreamConfiguration.html#widevine"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"DRMPreIntegrationConfiguration","l":"clearkey","url":"com/theoplayer/android/api/source/drm/preintegration/XstreamConfiguration.html#clearkey"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"DRMPreIntegrationConfiguration","l":"integrationParameters","url":"com/theoplayer/android/api/source/drm/preintegration/XstreamConfiguration.html#integrationParameters"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"DRMPreIntegrationConfiguration","l":"integration","url":"com/theoplayer/android/api/source/drm/preintegration/XstreamConfiguration.html#integration"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"DRMPreIntegrationConfiguration","l":"customIntegrationId","url":"com/theoplayer/android/api/source/drm/preintegration/XstreamConfiguration.html#customIntegrationId"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"VudrmDRMConfiguration","l":"token","url":"com/theoplayer/android/api/source/drm/preintegration/VudrmDRMConfiguration.html#token"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"VudrmDRMConfiguration","l":"fairplay","url":"com/theoplayer/android/api/source/drm/preintegration/XstreamConfiguration.html#fairplay"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"VudrmDRMConfiguration","l":"playready","url":"com/theoplayer/android/api/source/drm/preintegration/XstreamConfiguration.html#playready"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"VudrmDRMConfiguration","l":"widevine","url":"com/theoplayer/android/api/source/drm/preintegration/XstreamConfiguration.html#widevine"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"VudrmDRMConfiguration","l":"clearkey","url":"com/theoplayer/android/api/source/drm/preintegration/XstreamConfiguration.html#clearkey"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"VudrmDRMConfiguration","l":"integrationParameters","url":"com/theoplayer/android/api/source/drm/preintegration/XstreamConfiguration.html#integrationParameters"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"VudrmDRMConfiguration","l":"integration","url":"com/theoplayer/android/api/source/drm/preintegration/XstreamConfiguration.html#integration"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"VudrmDRMConfiguration","l":"customIntegrationId","url":"com/theoplayer/android/api/source/drm/preintegration/XstreamConfiguration.html#customIntegrationId"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"KeyOSDRMConfiguration","l":"customdata","url":"com/theoplayer/android/api/source/drm/preintegration/KeyOSDRMConfiguration.html#customdata"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"KeyOSDRMConfiguration","l":"fairplay","url":"com/theoplayer/android/api/source/drm/preintegration/XstreamConfiguration.html#fairplay"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"KeyOSDRMConfiguration","l":"playready","url":"com/theoplayer/android/api/source/drm/preintegration/XstreamConfiguration.html#playready"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"KeyOSDRMConfiguration","l":"widevine","url":"com/theoplayer/android/api/source/drm/preintegration/XstreamConfiguration.html#widevine"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"KeyOSDRMConfiguration","l":"clearkey","url":"com/theoplayer/android/api/source/drm/preintegration/XstreamConfiguration.html#clearkey"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"KeyOSDRMConfiguration","l":"integrationParameters","url":"com/theoplayer/android/api/source/drm/preintegration/XstreamConfiguration.html#integrationParameters"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"KeyOSDRMConfiguration","l":"integration","url":"com/theoplayer/android/api/source/drm/preintegration/XstreamConfiguration.html#integration"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"KeyOSDRMConfiguration","l":"customIntegrationId","url":"com/theoplayer/android/api/source/drm/preintegration/XstreamConfiguration.html#customIntegrationId"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"ConaxDRMConfiguration","l":"deviceId","url":"com/theoplayer/android/api/source/drm/preintegration/ConaxDRMConfiguration.html#deviceId"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"ConaxDRMConfiguration","l":"token","url":"com/theoplayer/android/api/source/drm/preintegration/ConaxDRMConfiguration.html#token"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"ConaxDRMConfiguration","l":"fairplay","url":"com/theoplayer/android/api/source/drm/preintegration/XstreamConfiguration.html#fairplay"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"ConaxDRMConfiguration","l":"playready","url":"com/theoplayer/android/api/source/drm/preintegration/XstreamConfiguration.html#playready"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"ConaxDRMConfiguration","l":"widevine","url":"com/theoplayer/android/api/source/drm/preintegration/XstreamConfiguration.html#widevine"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"ConaxDRMConfiguration","l":"clearkey","url":"com/theoplayer/android/api/source/drm/preintegration/XstreamConfiguration.html#clearkey"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"ConaxDRMConfiguration","l":"integrationParameters","url":"com/theoplayer/android/api/source/drm/preintegration/XstreamConfiguration.html#integrationParameters"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"ConaxDRMConfiguration","l":"integration","url":"com/theoplayer/android/api/source/drm/preintegration/XstreamConfiguration.html#integration"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"ConaxDRMConfiguration","l":"customIntegrationId","url":"com/theoplayer/android/api/source/drm/preintegration/XstreamConfiguration.html#customIntegrationId"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"KeyOSKeySystemConfiguration","l":"customdata","url":"com/theoplayer/android/api/source/drm/preintegration/KeyOSKeySystemConfiguration.html#customdata"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"KeyOSKeySystemConfiguration","l":"licenseAcquisitionURL","url":"com/theoplayer/android/api/source/drm/preintegration/KeyOSKeySystemConfiguration.html#licenseAcquisitionURL"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"KeyOSKeySystemConfiguration","l":"headers","url":"com/theoplayer/android/api/source/drm/preintegration/KeyOSKeySystemConfiguration.html#headers"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"KeyOSKeySystemConfiguration","l":"queryParameters","url":"com/theoplayer/android/api/source/drm/preintegration/KeyOSKeySystemConfiguration.html#queryParameters"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"KeyOSKeySystemConfiguration","l":"licenseType","url":"com/theoplayer/android/api/source/drm/preintegration/KeyOSKeySystemConfiguration.html#licenseType"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"AxinomDRMConfiguration","l":"token","url":"com/theoplayer/android/api/source/drm/preintegration/AxinomDRMConfiguration.html#token"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"AxinomDRMConfiguration","l":"fairplay","url":"com/theoplayer/android/api/source/drm/preintegration/XstreamConfiguration.html#fairplay"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"AxinomDRMConfiguration","l":"playready","url":"com/theoplayer/android/api/source/drm/preintegration/XstreamConfiguration.html#playready"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"AxinomDRMConfiguration","l":"widevine","url":"com/theoplayer/android/api/source/drm/preintegration/XstreamConfiguration.html#widevine"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"AxinomDRMConfiguration","l":"clearkey","url":"com/theoplayer/android/api/source/drm/preintegration/XstreamConfiguration.html#clearkey"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"AxinomDRMConfiguration","l":"integrationParameters","url":"com/theoplayer/android/api/source/drm/preintegration/XstreamConfiguration.html#integrationParameters"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"AxinomDRMConfiguration","l":"integration","url":"com/theoplayer/android/api/source/drm/preintegration/XstreamConfiguration.html#integration"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"AxinomDRMConfiguration","l":"customIntegrationId","url":"com/theoplayer/android/api/source/drm/preintegration/XstreamConfiguration.html#customIntegrationId"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"AzureDRMConfiguration","l":"certificateURL","url":"com/theoplayer/android/api/source/drm/preintegration/AzureDRMConfiguration.html#certificateURL"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"AzureDRMConfiguration","l":"token","url":"com/theoplayer/android/api/source/drm/preintegration/AzureDRMConfiguration.html#token"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"AzureDRMConfiguration","l":"fairplay","url":"com/theoplayer/android/api/source/drm/preintegration/XstreamConfiguration.html#fairplay"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"AzureDRMConfiguration","l":"playready","url":"com/theoplayer/android/api/source/drm/preintegration/XstreamConfiguration.html#playready"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"AzureDRMConfiguration","l":"widevine","url":"com/theoplayer/android/api/source/drm/preintegration/XstreamConfiguration.html#widevine"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"AzureDRMConfiguration","l":"clearkey","url":"com/theoplayer/android/api/source/drm/preintegration/XstreamConfiguration.html#clearkey"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"AzureDRMConfiguration","l":"integrationParameters","url":"com/theoplayer/android/api/source/drm/preintegration/XstreamConfiguration.html#integrationParameters"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"AzureDRMConfiguration","l":"integration","url":"com/theoplayer/android/api/source/drm/preintegration/XstreamConfiguration.html#integration"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"AzureDRMConfiguration","l":"customIntegrationId","url":"com/theoplayer/android/api/source/drm/preintegration/XstreamConfiguration.html#customIntegrationId"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"DRMTodayConfiguration","l":"token","url":"com/theoplayer/android/api/source/drm/preintegration/DRMTodayConfiguration.html#token"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"DRMTodayConfiguration","l":"userId","url":"com/theoplayer/android/api/source/drm/preintegration/DRMTodayConfiguration.html#userId"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"DRMTodayConfiguration","l":"sessionId","url":"com/theoplayer/android/api/source/drm/preintegration/DRMTodayConfiguration.html#sessionId"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"DRMTodayConfiguration","l":"merchant","url":"com/theoplayer/android/api/source/drm/preintegration/DRMTodayConfiguration.html#merchant"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"DRMTodayConfiguration","l":"fairplay","url":"com/theoplayer/android/api/source/drm/preintegration/XstreamConfiguration.html#fairplay"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"DRMTodayConfiguration","l":"playready","url":"com/theoplayer/android/api/source/drm/preintegration/XstreamConfiguration.html#playready"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"DRMTodayConfiguration","l":"widevine","url":"com/theoplayer/android/api/source/drm/preintegration/XstreamConfiguration.html#widevine"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"DRMTodayConfiguration","l":"clearkey","url":"com/theoplayer/android/api/source/drm/preintegration/XstreamConfiguration.html#clearkey"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"DRMTodayConfiguration","l":"integrationParameters","url":"com/theoplayer/android/api/source/drm/preintegration/XstreamConfiguration.html#integrationParameters"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"DRMTodayConfiguration","l":"integration","url":"com/theoplayer/android/api/source/drm/preintegration/XstreamConfiguration.html#integration"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"DRMTodayConfiguration","l":"customIntegrationId","url":"com/theoplayer/android/api/source/drm/preintegration/XstreamConfiguration.html#customIntegrationId"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"TitaniumDRMConfiguration","l":"accountName","url":"com/theoplayer/android/api/source/drm/preintegration/TitaniumDRMConfiguration.html#accountName"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"TitaniumDRMConfiguration","l":"customerName","url":"com/theoplayer/android/api/source/drm/preintegration/TitaniumDRMConfiguration.html#customerName"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"TitaniumDRMConfiguration","l":"portalId","url":"com/theoplayer/android/api/source/drm/preintegration/TitaniumDRMConfiguration.html#portalId"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"TitaniumDRMConfiguration","l":"friendlyName","url":"com/theoplayer/android/api/source/drm/preintegration/TitaniumDRMConfiguration.html#friendlyName"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"TitaniumDRMConfiguration","l":"authToken","url":"com/theoplayer/android/api/source/drm/preintegration/TitaniumDRMConfiguration.html#authToken"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"TitaniumDRMConfiguration","l":"version","url":"com/theoplayer/android/api/source/drm/preintegration/TitaniumDRMConfiguration.html#version"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"TitaniumDRMConfiguration","l":"fairplay","url":"com/theoplayer/android/api/source/drm/preintegration/XstreamConfiguration.html#fairplay"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"TitaniumDRMConfiguration","l":"playready","url":"com/theoplayer/android/api/source/drm/preintegration/XstreamConfiguration.html#playready"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"TitaniumDRMConfiguration","l":"widevine","url":"com/theoplayer/android/api/source/drm/preintegration/XstreamConfiguration.html#widevine"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"TitaniumDRMConfiguration","l":"clearkey","url":"com/theoplayer/android/api/source/drm/preintegration/XstreamConfiguration.html#clearkey"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"TitaniumDRMConfiguration","l":"integrationParameters","url":"com/theoplayer/android/api/source/drm/preintegration/XstreamConfiguration.html#integrationParameters"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"TitaniumDRMConfiguration","l":"integration","url":"com/theoplayer/android/api/source/drm/preintegration/XstreamConfiguration.html#integration"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"TitaniumDRMConfiguration","l":"customIntegrationId","url":"com/theoplayer/android/api/source/drm/preintegration/XstreamConfiguration.html#customIntegrationId"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"IrdetoConfiguration","l":"crmId","url":"com/theoplayer/android/api/source/drm/preintegration/IrdetoConfiguration.html#crmId"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"IrdetoConfiguration","l":"ticket","url":"com/theoplayer/android/api/source/drm/preintegration/IrdetoConfiguration.html#ticket"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"IrdetoConfiguration","l":"accountId","url":"com/theoplayer/android/api/source/drm/preintegration/IrdetoConfiguration.html#accountId"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"IrdetoConfiguration","l":"contentId","url":"com/theoplayer/android/api/source/drm/preintegration/IrdetoConfiguration.html#contentId"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"IrdetoConfiguration","l":"sessionId","url":"com/theoplayer/android/api/source/drm/preintegration/IrdetoConfiguration.html#sessionId"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"IrdetoConfiguration","l":"fairplay","url":"com/theoplayer/android/api/source/drm/preintegration/XstreamConfiguration.html#fairplay"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"IrdetoConfiguration","l":"playready","url":"com/theoplayer/android/api/source/drm/preintegration/XstreamConfiguration.html#playready"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"IrdetoConfiguration","l":"widevine","url":"com/theoplayer/android/api/source/drm/preintegration/XstreamConfiguration.html#widevine"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"IrdetoConfiguration","l":"clearkey","url":"com/theoplayer/android/api/source/drm/preintegration/XstreamConfiguration.html#clearkey"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"IrdetoConfiguration","l":"integrationParameters","url":"com/theoplayer/android/api/source/drm/preintegration/XstreamConfiguration.html#integrationParameters"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"IrdetoConfiguration","l":"integration","url":"com/theoplayer/android/api/source/drm/preintegration/XstreamConfiguration.html#integration"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"IrdetoConfiguration","l":"customIntegrationId","url":"com/theoplayer/android/api/source/drm/preintegration/XstreamConfiguration.html#customIntegrationId"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"XstreamConfiguration","l":"sessionId","url":"com/theoplayer/android/api/source/drm/preintegration/XstreamConfiguration.html#sessionId"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"XstreamConfiguration","l":"streamId","url":"com/theoplayer/android/api/source/drm/preintegration/XstreamConfiguration.html#streamId"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"XstreamConfiguration","l":"fairplay","url":"com/theoplayer/android/api/source/drm/preintegration/XstreamConfiguration.html#fairplay"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"XstreamConfiguration","l":"playready","url":"com/theoplayer/android/api/source/drm/preintegration/XstreamConfiguration.html#playready"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"XstreamConfiguration","l":"widevine","url":"com/theoplayer/android/api/source/drm/preintegration/XstreamConfiguration.html#widevine"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"XstreamConfiguration","l":"clearkey","url":"com/theoplayer/android/api/source/drm/preintegration/XstreamConfiguration.html#clearkey"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"XstreamConfiguration","l":"integrationParameters","url":"com/theoplayer/android/api/source/drm/preintegration/XstreamConfiguration.html#integrationParameters"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"XstreamConfiguration","l":"integration","url":"com/theoplayer/android/api/source/drm/preintegration/XstreamConfiguration.html#integration"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"XstreamConfiguration","l":"customIntegrationId","url":"com/theoplayer/android/api/source/drm/preintegration/XstreamConfiguration.html#customIntegrationId"}, {"p":"com.theoplayer.android.api.source.ssai","c":"SsaiDescription","l":"integration","url":"com/theoplayer/android/api/source/ssai/dai/GoogleDaiVodConfiguration.html#integration"}, {"p":"com.theoplayer.android.api.source.ssai","c":"GoogleDaiConfiguration.Builder","l":"apiKey","url":"com/theoplayer/android/api/source/ssai/dai/GoogleDaiVodConfiguration.Builder.html#apiKey"}, {"p":"com.theoplayer.android.api.source.ssai","c":"GoogleDaiConfiguration.Builder","l":"authToken","url":"com/theoplayer/android/api/source/ssai/dai/GoogleDaiVodConfiguration.Builder.html#authToken"}, {"p":"com.theoplayer.android.api.source.ssai","c":"GoogleDaiConfiguration.Builder","l":"streamActivityMonitorID","url":"com/theoplayer/android/api/source/ssai/dai/GoogleDaiVodConfiguration.Builder.html#streamActivityMonitorID"}, {"p":"com.theoplayer.android.api.source.ssai","c":"GoogleDaiConfiguration.Builder","l":"adTagParameters","url":"com/theoplayer/android/api/source/ssai/dai/GoogleDaiVodConfiguration.Builder.html#adTagParameters"}, {"p":"com.theoplayer.android.api.source.ssai","c":"GoogleDaiConfiguration.Builder","l":"sourceType","url":"com/theoplayer/android/api/source/ssai/dai/GoogleDaiVodConfiguration.Builder.html#sourceType"}, {"p":"com.theoplayer.android.api.source.ssai","c":"GoogleDaiConfiguration","l":"availabilityType","url":"com/theoplayer/android/api/source/ssai/dai/GoogleDaiVodConfiguration.html#availabilityType"}, {"p":"com.theoplayer.android.api.source.ssai","c":"GoogleDaiConfiguration","l":"apiKey","url":"com/theoplayer/android/api/source/ssai/dai/GoogleDaiVodConfiguration.html#apiKey"}, {"p":"com.theoplayer.android.api.source.ssai","c":"GoogleDaiConfiguration","l":"authToken","url":"com/theoplayer/android/api/source/ssai/dai/GoogleDaiVodConfiguration.html#authToken"}, {"p":"com.theoplayer.android.api.source.ssai","c":"GoogleDaiConfiguration","l":"streamActivityMonitorID","url":"com/theoplayer/android/api/source/ssai/dai/GoogleDaiVodConfiguration.html#streamActivityMonitorID"}, {"p":"com.theoplayer.android.api.source.ssai","c":"GoogleDaiConfiguration","l":"adTagParameters","url":"com/theoplayer/android/api/source/ssai/dai/GoogleDaiVodConfiguration.html#adTagParameters"}, {"p":"com.theoplayer.android.api.source.ssai","c":"GoogleDaiConfiguration","l":"format","url":"com/theoplayer/android/api/source/ssai/dai/GoogleDaiVodConfiguration.html#format"}, {"p":"com.theoplayer.android.api.source.ssai","c":"GoogleDaiConfiguration","l":"integration","url":"com/theoplayer/android/api/source/ssai/dai/GoogleDaiVodConfiguration.html#integration"}, {"p":"com.theoplayer.android.api.source.ssai","c":"CustomSsaiDescription","l":"customIntegration","url":"com/theoplayer/android/api/source/ssai/CustomSsaiDescription.html#customIntegration"}, {"p":"com.theoplayer.android.api.source.ssai","c":"CustomSsaiDescriptionRegistry","l":"INSTANCE","url":"com/theoplayer/android/api/source/ssai/CustomSsaiDescriptionRegistry.html#INSTANCE"}, {"p":"com.theoplayer.android.api.source.ssai.dai","c":"GoogleDaiLiveConfiguration.Builder","l":"apiKey","url":"com/theoplayer/android/api/source/ssai/dai/GoogleDaiVodConfiguration.Builder.html#apiKey"}, {"p":"com.theoplayer.android.api.source.ssai.dai","c":"GoogleDaiLiveConfiguration.Builder","l":"authToken","url":"com/theoplayer/android/api/source/ssai/dai/GoogleDaiVodConfiguration.Builder.html#authToken"}, {"p":"com.theoplayer.android.api.source.ssai.dai","c":"GoogleDaiLiveConfiguration.Builder","l":"streamActivityMonitorID","url":"com/theoplayer/android/api/source/ssai/dai/GoogleDaiVodConfiguration.Builder.html#streamActivityMonitorID"}, {"p":"com.theoplayer.android.api.source.ssai.dai","c":"GoogleDaiLiveConfiguration.Builder","l":"adTagParameters","url":"com/theoplayer/android/api/source/ssai/dai/GoogleDaiVodConfiguration.Builder.html#adTagParameters"}, {"p":"com.theoplayer.android.api.source.ssai.dai","c":"GoogleDaiLiveConfiguration.Builder","l":"sourceType","url":"com/theoplayer/android/api/source/ssai/dai/GoogleDaiVodConfiguration.Builder.html#sourceType"}, {"p":"com.theoplayer.android.api.source.ssai.dai","c":"GoogleDaiLiveConfiguration","l":"assetKey","url":"com/theoplayer/android/api/source/ssai/dai/GoogleDaiLiveConfiguration.html#assetKey"}, {"p":"com.theoplayer.android.api.source.ssai.dai","c":"GoogleDaiLiveConfiguration","l":"availabilityType","url":"com/theoplayer/android/api/source/ssai/dai/GoogleDaiVodConfiguration.html#availabilityType"}, {"p":"com.theoplayer.android.api.source.ssai.dai","c":"GoogleDaiLiveConfiguration","l":"apiKey","url":"com/theoplayer/android/api/source/ssai/dai/GoogleDaiVodConfiguration.html#apiKey"}, {"p":"com.theoplayer.android.api.source.ssai.dai","c":"GoogleDaiLiveConfiguration","l":"authToken","url":"com/theoplayer/android/api/source/ssai/dai/GoogleDaiVodConfiguration.html#authToken"}, {"p":"com.theoplayer.android.api.source.ssai.dai","c":"GoogleDaiLiveConfiguration","l":"streamActivityMonitorID","url":"com/theoplayer/android/api/source/ssai/dai/GoogleDaiVodConfiguration.html#streamActivityMonitorID"}, {"p":"com.theoplayer.android.api.source.ssai.dai","c":"GoogleDaiLiveConfiguration","l":"adTagParameters","url":"com/theoplayer/android/api/source/ssai/dai/GoogleDaiVodConfiguration.html#adTagParameters"}, {"p":"com.theoplayer.android.api.source.ssai.dai","c":"GoogleDaiLiveConfiguration","l":"format","url":"com/theoplayer/android/api/source/ssai/dai/GoogleDaiVodConfiguration.html#format"}, {"p":"com.theoplayer.android.api.source.ssai.dai","c":"GoogleDaiLiveConfiguration","l":"integration","url":"com/theoplayer/android/api/source/ssai/dai/GoogleDaiVodConfiguration.html#integration"}, {"p":"com.theoplayer.android.api.source.ssai.dai","c":"GoogleDaiVodConfiguration.Builder","l":"apiKey","url":"com/theoplayer/android/api/source/ssai/dai/GoogleDaiVodConfiguration.Builder.html#apiKey"}, {"p":"com.theoplayer.android.api.source.ssai.dai","c":"GoogleDaiVodConfiguration.Builder","l":"authToken","url":"com/theoplayer/android/api/source/ssai/dai/GoogleDaiVodConfiguration.Builder.html#authToken"}, {"p":"com.theoplayer.android.api.source.ssai.dai","c":"GoogleDaiVodConfiguration.Builder","l":"streamActivityMonitorID","url":"com/theoplayer/android/api/source/ssai/dai/GoogleDaiVodConfiguration.Builder.html#streamActivityMonitorID"}, {"p":"com.theoplayer.android.api.source.ssai.dai","c":"GoogleDaiVodConfiguration.Builder","l":"adTagParameters","url":"com/theoplayer/android/api/source/ssai/dai/GoogleDaiVodConfiguration.Builder.html#adTagParameters"}, {"p":"com.theoplayer.android.api.source.ssai.dai","c":"GoogleDaiVodConfiguration.Builder","l":"sourceType","url":"com/theoplayer/android/api/source/ssai/dai/GoogleDaiVodConfiguration.Builder.html#sourceType"}, {"p":"com.theoplayer.android.api.source.ssai.dai","c":"GoogleDaiVodConfiguration","l":"contentSourceID","url":"com/theoplayer/android/api/source/ssai/dai/GoogleDaiVodConfiguration.html#contentSourceID"}, {"p":"com.theoplayer.android.api.source.ssai.dai","c":"GoogleDaiVodConfiguration","l":"videoID","url":"com/theoplayer/android/api/source/ssai/dai/GoogleDaiVodConfiguration.html#videoID"}, {"p":"com.theoplayer.android.api.source.ssai.dai","c":"GoogleDaiVodConfiguration","l":"availabilityType","url":"com/theoplayer/android/api/source/ssai/dai/GoogleDaiVodConfiguration.html#availabilityType"}, {"p":"com.theoplayer.android.api.source.ssai.dai","c":"GoogleDaiVodConfiguration","l":"apiKey","url":"com/theoplayer/android/api/source/ssai/dai/GoogleDaiVodConfiguration.html#apiKey"}, {"p":"com.theoplayer.android.api.source.ssai.dai","c":"GoogleDaiVodConfiguration","l":"authToken","url":"com/theoplayer/android/api/source/ssai/dai/GoogleDaiVodConfiguration.html#authToken"}, {"p":"com.theoplayer.android.api.source.ssai.dai","c":"GoogleDaiVodConfiguration","l":"streamActivityMonitorID","url":"com/theoplayer/android/api/source/ssai/dai/GoogleDaiVodConfiguration.html#streamActivityMonitorID"}, {"p":"com.theoplayer.android.api.source.ssai.dai","c":"GoogleDaiVodConfiguration","l":"adTagParameters","url":"com/theoplayer/android/api/source/ssai/dai/GoogleDaiVodConfiguration.html#adTagParameters"}, {"p":"com.theoplayer.android.api.source.ssai.dai","c":"GoogleDaiVodConfiguration","l":"format","url":"com/theoplayer/android/api/source/ssai/dai/GoogleDaiVodConfiguration.html#format"}, {"p":"com.theoplayer.android.api.source.ssai.dai","c":"GoogleDaiVodConfiguration","l":"integration","url":"com/theoplayer/android/api/source/ssai/dai/GoogleDaiVodConfiguration.html#integration"}, {"p":"com.theoplayer.android.api.latency","c":"LatencyConfiguration","l":"minimumOffset","url":"com/theoplayer/android/api/latency/LatencyConfiguration.html#minimumOffset"}, {"p":"com.theoplayer.android.api.latency","c":"LatencyConfiguration","l":"maximumOffset","url":"com/theoplayer/android/api/latency/LatencyConfiguration.html#maximumOffset"}, {"p":"com.theoplayer.android.api.latency","c":"LatencyConfiguration","l":"targetOffset","url":"com/theoplayer/android/api/latency/LatencyConfiguration.html#targetOffset"}, {"p":"com.theoplayer.android.api.latency","c":"LatencyConfiguration","l":"forceSeekOffset","url":"com/theoplayer/android/api/latency/LatencyConfiguration.html#forceSeekOffset"}, {"p":"com.theoplayer.android.api.latency","c":"LatencyConfiguration","l":"minimumPlaybackRate","url":"com/theoplayer/android/api/latency/LatencyConfiguration.html#minimumPlaybackRate"}, {"p":"com.theoplayer.android.api.latency","c":"LatencyConfiguration","l":"maximumPlaybackRate","url":"com/theoplayer/android/api/latency/LatencyConfiguration.html#maximumPlaybackRate"}, {"p":"com.theoplayer.android.api.network.http","c":"CompleteHTTPResponse","l":"request","url":"com/theoplayer/android/api/network/http/CompleteHTTPResponse.html#request"}, {"p":"com.theoplayer.android.api.network.http","c":"CompleteHTTPResponse","l":"url","url":"com/theoplayer/android/api/network/http/CompleteHTTPResponse.html#url"}, {"p":"com.theoplayer.android.api.network.http","c":"CompleteHTTPResponse","l":"headers","url":"com/theoplayer/android/api/network/http/CompleteHTTPResponse.html#headers"}, {"p":"com.theoplayer.android.api.network.http","c":"CompleteHTTPResponse","l":"status","url":"com/theoplayer/android/api/network/http/CompleteHTTPResponse.html#status"}, {"p":"com.theoplayer.android.api.network.http","c":"CompleteHTTPResponse","l":"statusText","url":"com/theoplayer/android/api/network/http/CompleteHTTPResponse.html#statusText"}, {"p":"com.theoplayer.android.api.network.http","c":"CompleteHTTPResponse","l":"body","url":"com/theoplayer/android/api/network/http/CompleteHTTPResponse.html#body"}, {"p":"com.theoplayer.android.api.network.http","c":"RequestType","l":"name","url":"com/theoplayer/android/api/ads/theoads/TheoAdsLayoutOverride.html#name"}, {"p":"com.theoplayer.android.api.network.http","c":"RequestType","l":"ordinal","url":"com/theoplayer/android/api/ads/theoads/TheoAdsLayoutOverride.html#ordinal"}, {"p":"com.theoplayer.android.api.network.http","c":"RequestType","l":"entries","url":"com/theoplayer/android/api/network/http/RequestType.html#entries"}, {"p":"com.theoplayer.android.api.network.http","c":"RequestSubType","l":"name","url":"com/theoplayer/android/api/ads/theoads/TheoAdsLayoutOverride.html#name"}, {"p":"com.theoplayer.android.api.network.http","c":"RequestSubType","l":"ordinal","url":"com/theoplayer/android/api/ads/theoads/TheoAdsLayoutOverride.html#ordinal"}, {"p":"com.theoplayer.android.api.network.http","c":"RequestSubType","l":"entries","url":"com/theoplayer/android/api/network/http/RequestSubType.html#entries"}, {"p":"com.theoplayer.android.api.network.http","c":"RequestMediaType","l":"name","url":"com/theoplayer/android/api/ads/theoads/TheoAdsLayoutOverride.html#name"}, {"p":"com.theoplayer.android.api.network.http","c":"RequestMediaType","l":"ordinal","url":"com/theoplayer/android/api/ads/theoads/TheoAdsLayoutOverride.html#ordinal"}, {"p":"com.theoplayer.android.api.network.http","c":"RequestMediaType","l":"entries","url":"com/theoplayer/android/api/network/http/RequestMediaType.html#entries"}, {"p":"com.theoplayer.android.api.network.http","c":"ResponseType","l":"name","url":"com/theoplayer/android/api/ads/theoads/TheoAdsLayoutOverride.html#name"}, {"p":"com.theoplayer.android.api.network.http","c":"ResponseType","l":"ordinal","url":"com/theoplayer/android/api/ads/theoads/TheoAdsLayoutOverride.html#ordinal"}, {"p":"com.theoplayer.android.api.network.http","c":"ResponseType","l":"entries","url":"com/theoplayer/android/api/network/http/ResponseType.html#entries"}, {"p":"com.theoplayer.android.api.ads.ima","c":"GoogleImaAdEventType","l":"name","url":"com/theoplayer/android/api/ads/theoads/TheoAdsLayoutOverride.html#name"}, {"p":"com.theoplayer.android.api.ads.ima","c":"GoogleImaAdEventType","l":"ordinal","url":"com/theoplayer/android/api/ads/theoads/TheoAdsLayoutOverride.html#ordinal"}, {"p":"com.theoplayer.android.api.ads.ima","c":"GoogleImaAdEventType","l":"entries","url":"com/theoplayer/android/api/ads/ima/GoogleImaAdEventType.html#entries"}, {"p":"com.theoplayer.android.api.ads.ima","c":"GoogleImaIntegrationFactory","l":"INSTANCE","url":"com/theoplayer/android/api/ads/ima/GoogleImaIntegrationFactory.html#INSTANCE"}, {"p":"com.theoplayer.android.api.ads.mediatailor","c":"MediaTailorAdBreakEventType","l":"name","url":"com/theoplayer/android/api/ads/theoads/TheoAdsLayoutOverride.html#name"}, {"p":"com.theoplayer.android.api.ads.mediatailor","c":"MediaTailorAdBreakEventType","l":"ordinal","url":"com/theoplayer/android/api/ads/theoads/TheoAdsLayoutOverride.html#ordinal"}, {"p":"com.theoplayer.android.api.ads.mediatailor","c":"MediaTailorAdBreakEventType","l":"entries","url":"com/theoplayer/android/api/ads/mediatailor/MediaTailorAdBreakEventType.html#entries"}, {"p":"com.theoplayer.android.api.ads.mediatailor","c":"MediaTailorAdEventType","l":"name","url":"com/theoplayer/android/api/ads/theoads/TheoAdsLayoutOverride.html#name"}, {"p":"com.theoplayer.android.api.ads.mediatailor","c":"MediaTailorAdEventType","l":"ordinal","url":"com/theoplayer/android/api/ads/theoads/TheoAdsLayoutOverride.html#ordinal"}, {"p":"com.theoplayer.android.api.ads.mediatailor","c":"MediaTailorAdEventType","l":"entries","url":"com/theoplayer/android/api/ads/mediatailor/MediaTailorAdEventType.html#entries"}, {"p":"com.theoplayer.android.api.ads.mediatailor","c":"MediaTailorIntegrationFactory","l":"INSTANCE","url":"com/theoplayer/android/api/ads/mediatailor/MediaTailorIntegrationFactory.html#INSTANCE"}, {"p":"com.theoplayer.android.api.ads.theoads","c":"TheoAdDescription","l":"networkCode","url":"com/theoplayer/android/api/ads/theoads/TheoAdDescription.html#networkCode"}, {"p":"com.theoplayer.android.api.ads.theoads","c":"TheoAdDescription","l":"customAssetKey","url":"com/theoplayer/android/api/ads/theoads/TheoAdDescription.html#customAssetKey"}, {"p":"com.theoplayer.android.api.ads.theoads","c":"TheoAdDescription","l":"backdropDoubleBox","url":"com/theoplayer/android/api/ads/theoads/TheoAdDescription.html#backdropDoubleBox"}, {"p":"com.theoplayer.android.api.ads.theoads","c":"TheoAdDescription","l":"backdropLShape","url":"com/theoplayer/android/api/ads/theoads/TheoAdDescription.html#backdropLShape"}, {"p":"com.theoplayer.android.api.ads.theoads","c":"TheoAdDescription","l":"overrideLayout","url":"com/theoplayer/android/api/ads/theoads/TheoAdDescription.html#overrideLayout"}, {"p":"com.theoplayer.android.api.ads.theoads","c":"TheoAdDescription","l":"useId3","url":"com/theoplayer/android/api/ads/theoads/TheoAdDescription.html#useId3"}, {"p":"com.theoplayer.android.api.ads.theoads","c":"TheoAdsLayoutOverride","l":"name","url":"com/theoplayer/android/api/ads/theoads/TheoAdsLayoutOverride.html#name"}, {"p":"com.theoplayer.android.api.ads.theoads","c":"TheoAdsLayoutOverride","l":"ordinal","url":"com/theoplayer/android/api/ads/theoads/TheoAdsLayoutOverride.html#ordinal"}, {"p":"com.theoplayer.android.api.ads.theoads","c":"TheoAdsLayoutOverride","l":"entries","url":"com/theoplayer/android/api/ads/theoads/TheoAdsLayoutOverride.html#entries"}, {"p":"com.theoplayer.android.api.ads.theoads","c":"TheoAdsIntegrationFactory","l":"INSTANCE","url":"com/theoplayer/android/api/ads/theoads/TheoAdsIntegrationFactory.html#INSTANCE"}, {"p":"com.theoplayer.android.api.ads.dai","c":"GoogleDaiIntegrationFactory","l":"INSTANCE","url":"com/theoplayer/android/api/ads/dai/GoogleDaiIntegrationFactory.html#INSTANCE"}, {"p":"com.theoplayer.android.api.cast","c":"CastStrategy","l":"MANUAL","url":"com/theoplayer/android/api/cast/CastStrategy.html#MANUAL"}, {"p":"com.theoplayer.android.api.cast","c":"CastStrategy","l":"DISABLED","url":"com/theoplayer/android/api/cast/CastStrategy.html#DISABLED"}, {"p":"com.theoplayer.android.api.cast","c":"CastStrategy","l":"AUTO","url":"com/theoplayer/android/api/cast/CastStrategy.html#AUTO"}, {"p":"com.theoplayer.android.api.pip","c":"PiPType","l":"ACTIVITY","url":"com/theoplayer/android/api/pip/PiPType.html#ACTIVITY"}, {"p":"com.theoplayer.android.api.pip","c":"PiPType","l":"DIALOG","url":"com/theoplayer/android/api/pip/PiPType.html#DIALOG"}, {"p":"com.theoplayer.android.api.pip","c":"PiPType","l":"CUSTOM","url":"com/theoplayer/android/api/pip/PiPType.html#CUSTOM"}, {"p":"com.theoplayer.android.api","c":"IntegrationType","l":"GOOGLE_IMA","url":"com/theoplayer/android/api/IntegrationType.html#GOOGLE_IMA"}, {"p":"com.theoplayer.android.api","c":"IntegrationType","l":"GOOGLE_DAI","url":"com/theoplayer/android/api/IntegrationType.html#GOOGLE_DAI"}, {"p":"com.theoplayer.android.api","c":"IntegrationType","l":"AWS_MEDIATAILOR","url":"com/theoplayer/android/api/IntegrationType.html#AWS_MEDIATAILOR"}, {"p":"com.theoplayer.android.api","c":"IntegrationType","l":"ANALYTICS","url":"com/theoplayer/android/api/IntegrationType.html#ANALYTICS"}, {"p":"com.theoplayer.android.api","c":"IntegrationType","l":"CAST","url":"com/theoplayer/android/api/IntegrationType.html#CAST"}, {"p":"com.theoplayer.android.api","c":"IntegrationType","l":"THEO_ADS","url":"com/theoplayer/android/api/IntegrationType.html#THEO_ADS"}, {"p":"com.theoplayer.android.api.cast.chromecast","c":"ErrorCode","l":"CANCEL","url":"com/theoplayer/android/api/cast/chromecast/ErrorCode.html#CANCEL"}, {"p":"com.theoplayer.android.api.cast.chromecast","c":"ErrorCode","l":"TIMEOUT","url":"com/theoplayer/android/api/cast/chromecast/ErrorCode.html#TIMEOUT"}, {"p":"com.theoplayer.android.api.cast.chromecast","c":"ErrorCode","l":"API_NOT_INITIALIZED","url":"com/theoplayer/android/api/cast/chromecast/ErrorCode.html#API_NOT_INITIALIZED"}, {"p":"com.theoplayer.android.api.cast.chromecast","c":"ErrorCode","l":"INVALID_PARAMETER","url":"com/theoplayer/android/api/cast/chromecast/ErrorCode.html#INVALID_PARAMETER"}, {"p":"com.theoplayer.android.api.cast.chromecast","c":"ErrorCode","l":"EXTENSION_NOT_COMPATIBLE","url":"com/theoplayer/android/api/cast/chromecast/ErrorCode.html#EXTENSION_NOT_COMPATIBLE"}, {"p":"com.theoplayer.android.api.cast.chromecast","c":"ErrorCode","l":"EXTENSION_MISSING","url":"com/theoplayer/android/api/cast/chromecast/ErrorCode.html#EXTENSION_MISSING"}, {"p":"com.theoplayer.android.api.cast.chromecast","c":"ErrorCode","l":"RECEIVER_UNAVAILABLE","url":"com/theoplayer/android/api/cast/chromecast/ErrorCode.html#RECEIVER_UNAVAILABLE"}, {"p":"com.theoplayer.android.api.cast.chromecast","c":"ErrorCode","l":"SESSION_ERROR","url":"com/theoplayer/android/api/cast/chromecast/ErrorCode.html#SESSION_ERROR"}, {"p":"com.theoplayer.android.api.cast.chromecast","c":"ErrorCode","l":"CHANNEL_ERROR","url":"com/theoplayer/android/api/cast/chromecast/ErrorCode.html#CHANNEL_ERROR"}, {"p":"com.theoplayer.android.api.cast.chromecast","c":"ErrorCode","l":"LOAD_MEDIA_FAILED","url":"com/theoplayer/android/api/cast/chromecast/ErrorCode.html#LOAD_MEDIA_FAILED"}, {"p":"com.theoplayer.android.api.cast.chromecast","c":"PlayerCastState","l":"UNAVAILABLE","url":"com/theoplayer/android/api/cast/chromecast/PlayerCastState.html#UNAVAILABLE"}, {"p":"com.theoplayer.android.api.cast.chromecast","c":"PlayerCastState","l":"AVAILABLE","url":"com/theoplayer/android/api/cast/chromecast/PlayerCastState.html#AVAILABLE"}, {"p":"com.theoplayer.android.api.cast.chromecast","c":"PlayerCastState","l":"CONNECTING","url":"com/theoplayer/android/api/cast/chromecast/PlayerCastState.html#CONNECTING"}, {"p":"com.theoplayer.android.api.cast.chromecast","c":"PlayerCastState","l":"CONNECTED","url":"com/theoplayer/android/api/cast/chromecast/PlayerCastState.html#CONNECTED"}, {"p":"com.theoplayer.android.api.ads","c":"OmidFriendlyObstructionPurpose","l":"VIDEO_CONTROLS","url":"com/theoplayer/android/api/ads/OmidFriendlyObstructionPurpose.html#VIDEO_CONTROLS"}, {"p":"com.theoplayer.android.api.ads","c":"OmidFriendlyObstructionPurpose","l":"CLOSE_AD","url":"com/theoplayer/android/api/ads/OmidFriendlyObstructionPurpose.html#CLOSE_AD"}, {"p":"com.theoplayer.android.api.ads","c":"OmidFriendlyObstructionPurpose","l":"NOT_VISIBLE","url":"com/theoplayer/android/api/ads/OmidFriendlyObstructionPurpose.html#NOT_VISIBLE"}, {"p":"com.theoplayer.android.api.ads","c":"OmidFriendlyObstructionPurpose","l":"OTHER","url":"com/theoplayer/android/api/ads/OmidFriendlyObstructionPurpose.html#OTHER"}, {"p":"com.theoplayer.android.api.source","c":"AdIntegration","l":"GOOGLE_IMA","url":"com/theoplayer/android/api/source/AdIntegration.html#GOOGLE_IMA"}, {"p":"com.theoplayer.android.api.source","c":"AdIntegration","l":"THEO_ADS","url":"com/theoplayer/android/api/source/AdIntegration.html#THEO_ADS"}, {"p":"com.theoplayer.android.api.source","c":"SourceType","l":"DASH","url":"com/theoplayer/android/api/source/SourceType.html#DASH"}, {"p":"com.theoplayer.android.api.source","c":"SourceType","l":"HLS","url":"com/theoplayer/android/api/source/SourceType.html#HLS"}, {"p":"com.theoplayer.android.api.source","c":"SourceType","l":"HLSX","url":"com/theoplayer/android/api/source/SourceType.html#HLSX"}, {"p":"com.theoplayer.android.api.source","c":"SourceType","l":"MP4","url":"com/theoplayer/android/api/source/SourceType.html#MP4"}, {"p":"com.theoplayer.android.api.source","c":"SourceType","l":"AAC","url":"com/theoplayer/android/api/source/SourceType.html#AAC"}, {"p":"com.theoplayer.android.api.source","c":"SourceType","l":"MKV","url":"com/theoplayer/android/api/source/SourceType.html#MKV"}, {"p":"com.theoplayer.android.api.source","c":"SourceType","l":"MP3","url":"com/theoplayer/android/api/source/SourceType.html#MP3"}, {"p":"com.theoplayer.android.api.source","c":"SourceType","l":"WAV","url":"com/theoplayer/android/api/source/SourceType.html#WAV"}, {"p":"com.theoplayer.android.api.source","c":"SourceType","l":"HESP","url":"com/theoplayer/android/api/source/SourceType.html#HESP"}, {"p":"com.theoplayer.android.api.source.metadata","c":"ChromecastMetadataType","l":"MOVIE","url":"com/theoplayer/android/api/source/metadata/ChromecastMetadataType.html#MOVIE"}, {"p":"com.theoplayer.android.api.source.metadata","c":"ChromecastMetadataType","l":"AUDIO","url":"com/theoplayer/android/api/source/metadata/ChromecastMetadataType.html#AUDIO"}, {"p":"com.theoplayer.android.api.source.metadata","c":"ChromecastMetadataType","l":"TV_SHOW","url":"com/theoplayer/android/api/source/metadata/ChromecastMetadataType.html#TV_SHOW"}, {"p":"com.theoplayer.android.api.source.metadata","c":"ChromecastMetadataType","l":"GENERIC","url":"com/theoplayer/android/api/source/metadata/ChromecastMetadataType.html#GENERIC"}, {"p":"com.theoplayer.android.api.settings","c":"DecoderType","l":"AUDIO","url":"com/theoplayer/android/api/settings/DecoderType.html#AUDIO"}, {"p":"com.theoplayer.android.api.settings","c":"DecoderType","l":"VIDEO","url":"com/theoplayer/android/api/settings/DecoderType.html#VIDEO"}, {"p":"com.theoplayer.android.api.cache","c":"CacheStatus","l":"UNINITIALISED","url":"com/theoplayer/android/api/cache/CacheStatus.html#UNINITIALISED"}, {"p":"com.theoplayer.android.api.cache","c":"CacheStatus","l":"INITIALISED","url":"com/theoplayer/android/api/cache/CacheStatus.html#INITIALISED"}, {"p":"com.theoplayer.android.api.cache","c":"CachingTaskStatus","l":"IDLE","url":"com/theoplayer/android/api/cache/CachingTaskStatus.html#IDLE"}, {"p":"com.theoplayer.android.api.cache","c":"CachingTaskStatus","l":"LOADING","url":"com/theoplayer/android/api/cache/CachingTaskStatus.html#LOADING"}, {"p":"com.theoplayer.android.api.cache","c":"CachingTaskStatus","l":"DONE","url":"com/theoplayer/android/api/cache/CachingTaskStatus.html#DONE"}, {"p":"com.theoplayer.android.api.cache","c":"CachingTaskStatus","l":"ERROR","url":"com/theoplayer/android/api/cache/CachingTaskStatus.html#ERROR"}, {"p":"com.theoplayer.android.api.cache","c":"CachingTaskStatus","l":"EVICTED","url":"com/theoplayer/android/api/cache/CachingTaskStatus.html#EVICTED"}, {"p":"com.theoplayer.android.api.player","c":"AspectRatio","l":"FIT","url":"com/theoplayer/android/api/player/AspectRatio.html#FIT"}, {"p":"com.theoplayer.android.api.player","c":"AspectRatio","l":"FILL","url":"com/theoplayer/android/api/player/AspectRatio.html#FILL"}, {"p":"com.theoplayer.android.api.player","c":"AspectRatio","l":"ASPECT_FILL","url":"com/theoplayer/android/api/player/AspectRatio.html#ASPECT_FILL"}, {"p":"com.theoplayer.android.api.player","c":"RenderingTarget","l":"SURFACE_VIEW","url":"com/theoplayer/android/api/player/RenderingTarget.html#SURFACE_VIEW"}, {"p":"com.theoplayer.android.api.player","c":"RenderingTarget","l":"TEXTURE_VIEW","url":"com/theoplayer/android/api/player/RenderingTarget.html#TEXTURE_VIEW"}, {"p":"com.theoplayer.android.api.player","c":"RenderingTarget","l":"CUSTOM","url":"com/theoplayer/android/api/player/RenderingTarget.html#CUSTOM"}, {"p":"com.theoplayer.android.api.player","c":"PresentationMode","l":"INLINE","url":"com/theoplayer/android/api/player/PresentationMode.html#INLINE"}, {"p":"com.theoplayer.android.api.player","c":"PresentationMode","l":"FULLSCREEN","url":"com/theoplayer/android/api/player/PresentationMode.html#FULLSCREEN"}, {"p":"com.theoplayer.android.api.player","c":"PresentationMode","l":"PICTURE_IN_PICTURE","url":"com/theoplayer/android/api/player/PresentationMode.html#PICTURE_IN_PICTURE"}, {"p":"com.theoplayer.android.api.player","c":"PreloadType","l":"NONE","url":"com/theoplayer/android/api/player/PreloadType.html#NONE"}, {"p":"com.theoplayer.android.api.player","c":"PreloadType","l":"AUTO","url":"com/theoplayer/android/api/player/PreloadType.html#AUTO"}, {"p":"com.theoplayer.android.api.player","c":"PreloadType","l":"METADATA","url":"com/theoplayer/android/api/player/PreloadType.html#METADATA"}, {"p":"com.theoplayer.android.api.player","c":"ReadyState","l":"HAVE_NOTHING","url":"com/theoplayer/android/api/player/ReadyState.html#HAVE_NOTHING"}, {"p":"com.theoplayer.android.api.player","c":"ReadyState","l":"HAVE_METADATA","url":"com/theoplayer/android/api/player/ReadyState.html#HAVE_METADATA"}, {"p":"com.theoplayer.android.api.player","c":"ReadyState","l":"HAVE_CURRENT_DATA","url":"com/theoplayer/android/api/player/ReadyState.html#HAVE_CURRENT_DATA"}, {"p":"com.theoplayer.android.api.player","c":"ReadyState","l":"HAVE_FUTURE_DATA","url":"com/theoplayer/android/api/player/ReadyState.html#HAVE_FUTURE_DATA"}, {"p":"com.theoplayer.android.api.player","c":"ReadyState","l":"HAVE_ENOUGH_DATA","url":"com/theoplayer/android/api/player/ReadyState.html#HAVE_ENOUGH_DATA"}, {"p":"com.theoplayer.android.api.player.track.texttrack","c":"TextTrackType","l":"NONE","url":"com/theoplayer/android/api/player/track/texttrack/TextTrackType.html#NONE"}, {"p":"com.theoplayer.android.api.player.track.texttrack","c":"TextTrackType","l":"SRT","url":"com/theoplayer/android/api/player/track/texttrack/TextTrackType.html#SRT"}, {"p":"com.theoplayer.android.api.player.track.texttrack","c":"TextTrackType","l":"TTML","url":"com/theoplayer/android/api/player/track/texttrack/TextTrackType.html#TTML"}, {"p":"com.theoplayer.android.api.player.track.texttrack","c":"TextTrackType","l":"WEBVTT","url":"com/theoplayer/android/api/player/track/texttrack/TextTrackType.html#WEBVTT"}, {"p":"com.theoplayer.android.api.player.track.texttrack","c":"TextTrackType","l":"EMSG","url":"com/theoplayer/android/api/player/track/texttrack/TextTrackType.html#EMSG"}, {"p":"com.theoplayer.android.api.player.track.texttrack","c":"TextTrackType","l":"EVENTSTREAM","url":"com/theoplayer/android/api/player/track/texttrack/TextTrackType.html#EVENTSTREAM"}, {"p":"com.theoplayer.android.api.player.track.texttrack","c":"TextTrackType","l":"ID3","url":"com/theoplayer/android/api/player/track/texttrack/TextTrackType.html#ID3"}, {"p":"com.theoplayer.android.api.player.track.texttrack","c":"TextTrackType","l":"CEA608","url":"com/theoplayer/android/api/player/track/texttrack/TextTrackType.html#CEA608"}, {"p":"com.theoplayer.android.api.player.track.texttrack","c":"TextTrackType","l":"DATERANGE","url":"com/theoplayer/android/api/player/track/texttrack/TextTrackType.html#DATERANGE"}, {"p":"com.theoplayer.android.api.player.track.texttrack","c":"TextTrackStyle.EdgeType","l":"EDGE_TYPE_NONE","url":"com/theoplayer/android/api/player/track/texttrack/TextTrackStyle.EdgeType.html#EDGE_TYPE_NONE"}, {"p":"com.theoplayer.android.api.player.track.texttrack","c":"TextTrackStyle.EdgeType","l":"EDGE_TYPE_DEPRESSED","url":"com/theoplayer/android/api/player/track/texttrack/TextTrackStyle.EdgeType.html#EDGE_TYPE_DEPRESSED"}, {"p":"com.theoplayer.android.api.player.track.texttrack","c":"TextTrackStyle.EdgeType","l":"EDGE_TYPE_OUTLINE","url":"com/theoplayer/android/api/player/track/texttrack/TextTrackStyle.EdgeType.html#EDGE_TYPE_OUTLINE"}, {"p":"com.theoplayer.android.api.player.track.texttrack","c":"TextTrackStyle.EdgeType","l":"EDGE_TYPE_RAISED","url":"com/theoplayer/android/api/player/track/texttrack/TextTrackStyle.EdgeType.html#EDGE_TYPE_RAISED"}, {"p":"com.theoplayer.android.api.player.track.texttrack","c":"TextTrackStyle.EdgeType","l":"EDGE_TYPE_DROP_SHADOW","url":"com/theoplayer/android/api/player/track/texttrack/TextTrackStyle.EdgeType.html#EDGE_TYPE_DROP_SHADOW"}, {"p":"com.theoplayer.android.api.player.track.texttrack","c":"TextTrackStyle.FontStyle","l":"NORMAL","url":"com/theoplayer/android/api/player/track/texttrack/TextTrackStyle.FontStyle.html#NORMAL"}, {"p":"com.theoplayer.android.api.player.track.texttrack","c":"TextTrackStyle.FontStyle","l":"BOLD","url":"com/theoplayer/android/api/player/track/texttrack/TextTrackStyle.FontStyle.html#BOLD"}, {"p":"com.theoplayer.android.api.player.track.texttrack","c":"TextTrackStyle.FontStyle","l":"ITALIC","url":"com/theoplayer/android/api/player/track/texttrack/TextTrackStyle.FontStyle.html#ITALIC"}, {"p":"com.theoplayer.android.api.player.track.texttrack","c":"TextTrackStyle.FontStyle","l":"BOLD_ITALIC","url":"com/theoplayer/android/api/player/track/texttrack/TextTrackStyle.FontStyle.html#BOLD_ITALIC"}, {"p":"com.theoplayer.android.api.player.track.texttrack","c":"TextTrackStyle.FontFamily","l":"DEFAULT","url":"com/theoplayer/android/api/player/track/texttrack/TextTrackStyle.FontFamily.html#DEFAULT"}, {"p":"com.theoplayer.android.api.player.track.texttrack","c":"TextTrackStyle.FontFamily","l":"DEFAULT_BOLD","url":"com/theoplayer/android/api/player/track/texttrack/TextTrackStyle.FontFamily.html#DEFAULT_BOLD"}, {"p":"com.theoplayer.android.api.player.track.texttrack","c":"TextTrackStyle.FontFamily","l":"MONOSPACE","url":"com/theoplayer/android/api/player/track/texttrack/TextTrackStyle.FontFamily.html#MONOSPACE"}, {"p":"com.theoplayer.android.api.player.track.texttrack","c":"TextTrackStyle.FontFamily","l":"SANS_SERIF","url":"com/theoplayer/android/api/player/track/texttrack/TextTrackStyle.FontFamily.html#SANS_SERIF"}, {"p":"com.theoplayer.android.api.player.track.texttrack","c":"TextTrackStyle.FontFamily","l":"SERIF","url":"com/theoplayer/android/api/player/track/texttrack/TextTrackStyle.FontFamily.html#SERIF"}, {"p":"com.theoplayer.android.api.player.track.texttrack","c":"TextTrackMode","l":"DISABLED","url":"com/theoplayer/android/api/player/track/texttrack/TextTrackMode.html#DISABLED"}, {"p":"com.theoplayer.android.api.player.track.texttrack","c":"TextTrackMode","l":"HIDDEN","url":"com/theoplayer/android/api/player/track/texttrack/TextTrackMode.html#HIDDEN"}, {"p":"com.theoplayer.android.api.player.track.texttrack","c":"TextTrackMode","l":"SHOWING","url":"com/theoplayer/android/api/player/track/texttrack/TextTrackMode.html#SHOWING"}, {"p":"com.theoplayer.android.api.player.track.texttrack","c":"TextTrackReadyState","l":"NONE","url":"com/theoplayer/android/api/player/track/texttrack/TextTrackReadyState.html#NONE"}, {"p":"com.theoplayer.android.api.player.track.texttrack","c":"TextTrackReadyState","l":"LOADING","url":"com/theoplayer/android/api/player/track/texttrack/TextTrackReadyState.html#LOADING"}, {"p":"com.theoplayer.android.api.player.track.texttrack","c":"TextTrackReadyState","l":"LOADED","url":"com/theoplayer/android/api/player/track/texttrack/TextTrackReadyState.html#LOADED"}, {"p":"com.theoplayer.android.api.player.track.texttrack","c":"TextTrackReadyState","l":"ERROR","url":"com/theoplayer/android/api/player/track/texttrack/TextTrackReadyState.html#ERROR"}, {"p":"com.theoplayer.android.api.player.track.texttrack","c":"TextTrackKind","l":"SUBTITLES","url":"com/theoplayer/android/api/player/track/texttrack/TextTrackKind.html#SUBTITLES"}, {"p":"com.theoplayer.android.api.player.track.texttrack","c":"TextTrackKind","l":"CAPTIONS","url":"com/theoplayer/android/api/player/track/texttrack/TextTrackKind.html#CAPTIONS"}, {"p":"com.theoplayer.android.api.player.track.texttrack","c":"TextTrackKind","l":"DESCRIPTIONS","url":"com/theoplayer/android/api/player/track/texttrack/TextTrackKind.html#DESCRIPTIONS"}, {"p":"com.theoplayer.android.api.player.track.texttrack","c":"TextTrackKind","l":"CHAPTERS","url":"com/theoplayer/android/api/player/track/texttrack/TextTrackKind.html#CHAPTERS"}, {"p":"com.theoplayer.android.api.player.track.texttrack","c":"TextTrackKind","l":"METADATA","url":"com/theoplayer/android/api/player/track/texttrack/TextTrackKind.html#METADATA"}, {"p":"com.theoplayer.android.api.abr","c":"AbrStrategyType","l":"PERFORMANCE","url":"com/theoplayer/android/api/abr/AbrStrategyType.html#PERFORMANCE"}, {"p":"com.theoplayer.android.api.abr","c":"AbrStrategyType","l":"QUALITY","url":"com/theoplayer/android/api/abr/AbrStrategyType.html#QUALITY"}, {"p":"com.theoplayer.android.api.abr","c":"AbrStrategyType","l":"BANDWIDTH","url":"com/theoplayer/android/api/abr/AbrStrategyType.html#BANDWIDTH"}, {"p":"com.theoplayer.android.api.event.ads","c":"AdIntegrationKind","l":"THEO_ADS","url":"com/theoplayer/android/api/event/ads/AdIntegrationKind.html#THEO_ADS"}, {"p":"com.theoplayer.android.api.event.ads","c":"AdIntegrationKind","l":"GOOGLE_IMA","url":"com/theoplayer/android/api/event/ads/AdIntegrationKind.html#GOOGLE_IMA"}, {"p":"com.theoplayer.android.api.event.ads","c":"AdIntegrationKind","l":"GOOGLE_DAI","url":"com/theoplayer/android/api/event/ads/AdIntegrationKind.html#GOOGLE_DAI"}, {"p":"com.theoplayer.android.api.event.ads","c":"AdIntegrationKind","l":"MEDIATAILOR","url":"com/theoplayer/android/api/event/ads/AdIntegrationKind.html#MEDIATAILOR"}, {"p":"com.theoplayer.android.api.event.ads","c":"AdIntegrationKind","l":"CUSTOM","url":"com/theoplayer/android/api/event/ads/AdIntegrationKind.html#CUSTOM"}, {"p":"com.theoplayer.android.api.error","c":"ErrorCode","l":"CONFIGURATION_ERROR","url":"com/theoplayer/android/api/error/ErrorCode.html#CONFIGURATION_ERROR"}, {"p":"com.theoplayer.android.api.error","c":"ErrorCode","l":"LICENSE_ERROR","url":"com/theoplayer/android/api/error/ErrorCode.html#LICENSE_ERROR"}, {"p":"com.theoplayer.android.api.error","c":"ErrorCode","l":"LICENSE_INVALID_DOMAIN","url":"com/theoplayer/android/api/error/ErrorCode.html#LICENSE_INVALID_DOMAIN"}, {"p":"com.theoplayer.android.api.error","c":"ErrorCode","l":"LICENSE_INVALID_SOURCE","url":"com/theoplayer/android/api/error/ErrorCode.html#LICENSE_INVALID_SOURCE"}, {"p":"com.theoplayer.android.api.error","c":"ErrorCode","l":"LICENSE_EXPIRED","url":"com/theoplayer/android/api/error/ErrorCode.html#LICENSE_EXPIRED"}, {"p":"com.theoplayer.android.api.error","c":"ErrorCode","l":"LICENSE_INVALID_FEATURE","url":"com/theoplayer/android/api/error/ErrorCode.html#LICENSE_INVALID_FEATURE"}, {"p":"com.theoplayer.android.api.error","c":"ErrorCode","l":"SOURCE_INVALID","url":"com/theoplayer/android/api/error/ErrorCode.html#SOURCE_INVALID"}, {"p":"com.theoplayer.android.api.error","c":"ErrorCode","l":"SOURCE_NOT_SUPPORTED","url":"com/theoplayer/android/api/error/ErrorCode.html#SOURCE_NOT_SUPPORTED"}, {"p":"com.theoplayer.android.api.error","c":"ErrorCode","l":"MANIFEST_LOAD_ERROR","url":"com/theoplayer/android/api/error/ErrorCode.html#MANIFEST_LOAD_ERROR"}, {"p":"com.theoplayer.android.api.error","c":"ErrorCode","l":"MANIFEST_CORS_ERROR","url":"com/theoplayer/android/api/error/ErrorCode.html#MANIFEST_CORS_ERROR"}, {"p":"com.theoplayer.android.api.error","c":"ErrorCode","l":"MANIFEST_PARSE_ERROR","url":"com/theoplayer/android/api/error/ErrorCode.html#MANIFEST_PARSE_ERROR"}, {"p":"com.theoplayer.android.api.error","c":"ErrorCode","l":"MEDIA_NOT_SUPPORTED","url":"com/theoplayer/android/api/error/ErrorCode.html#MEDIA_NOT_SUPPORTED"}, {"p":"com.theoplayer.android.api.error","c":"ErrorCode","l":"MEDIA_LOAD_ERROR","url":"com/theoplayer/android/api/error/ErrorCode.html#MEDIA_LOAD_ERROR"}, {"p":"com.theoplayer.android.api.error","c":"ErrorCode","l":"MEDIA_DECODE_ERROR","url":"com/theoplayer/android/api/error/ErrorCode.html#MEDIA_DECODE_ERROR"}, {"p":"com.theoplayer.android.api.error","c":"ErrorCode","l":"MEDIA_AVPLAYER_ERROR","url":"com/theoplayer/android/api/error/ErrorCode.html#MEDIA_AVPLAYER_ERROR"}, {"p":"com.theoplayer.android.api.error","c":"ErrorCode","l":"MEDIA_ABORTED","url":"com/theoplayer/android/api/error/ErrorCode.html#MEDIA_ABORTED"}, {"p":"com.theoplayer.android.api.error","c":"ErrorCode","l":"NETWORK_ERROR","url":"com/theoplayer/android/api/error/ErrorCode.html#NETWORK_ERROR"}, {"p":"com.theoplayer.android.api.error","c":"ErrorCode","l":"NETWORK_TIMEOUT","url":"com/theoplayer/android/api/error/ErrorCode.html#NETWORK_TIMEOUT"}, {"p":"com.theoplayer.android.api.error","c":"ErrorCode","l":"CONTENT_PROTECTION_ERROR","url":"com/theoplayer/android/api/error/ErrorCode.html#CONTENT_PROTECTION_ERROR"}, {"p":"com.theoplayer.android.api.error","c":"ErrorCode","l":"CONTENT_PROTECTION_NOT_SUPPORTED","url":"com/theoplayer/android/api/error/ErrorCode.html#CONTENT_PROTECTION_NOT_SUPPORTED"}, {"p":"com.theoplayer.android.api.error","c":"ErrorCode","l":"CONTENT_PROTECTION_CONFIGURATION_MISSING","url":"com/theoplayer/android/api/error/ErrorCode.html#CONTENT_PROTECTION_CONFIGURATION_MISSING"}, {"p":"com.theoplayer.android.api.error","c":"ErrorCode","l":"CONTENT_PROTECTION_CONFIGURATION_INVALID","url":"com/theoplayer/android/api/error/ErrorCode.html#CONTENT_PROTECTION_CONFIGURATION_INVALID"}, {"p":"com.theoplayer.android.api.error","c":"ErrorCode","l":"CONTENT_PROTECTION_INITIALIZATION_INVALID","url":"com/theoplayer/android/api/error/ErrorCode.html#CONTENT_PROTECTION_INITIALIZATION_INVALID"}, {"p":"com.theoplayer.android.api.error","c":"ErrorCode","l":"CONTENT_PROTECTION_CERTIFICATE_ERROR","url":"com/theoplayer/android/api/error/ErrorCode.html#CONTENT_PROTECTION_CERTIFICATE_ERROR"}, {"p":"com.theoplayer.android.api.error","c":"ErrorCode","l":"CONTENT_PROTECTION_CERTIFICATE_INVALID","url":"com/theoplayer/android/api/error/ErrorCode.html#CONTENT_PROTECTION_CERTIFICATE_INVALID"}, {"p":"com.theoplayer.android.api.error","c":"ErrorCode","l":"CONTENT_PROTECTION_LICENSE_ERROR","url":"com/theoplayer/android/api/error/ErrorCode.html#CONTENT_PROTECTION_LICENSE_ERROR"}, {"p":"com.theoplayer.android.api.error","c":"ErrorCode","l":"CONTENT_PROTECTION_LICENSE_INVALID","url":"com/theoplayer/android/api/error/ErrorCode.html#CONTENT_PROTECTION_LICENSE_INVALID"}, {"p":"com.theoplayer.android.api.error","c":"ErrorCode","l":"CONTENT_PROTECTION_KEY_EXPIRED","url":"com/theoplayer/android/api/error/ErrorCode.html#CONTENT_PROTECTION_KEY_EXPIRED"}, {"p":"com.theoplayer.android.api.error","c":"ErrorCode","l":"CONTENT_PROTECTION_KEY_MISSING","url":"com/theoplayer/android/api/error/ErrorCode.html#CONTENT_PROTECTION_KEY_MISSING"}, {"p":"com.theoplayer.android.api.error","c":"ErrorCode","l":"CONTENT_PROTECTION_OUTPUT_RESTRICTED","url":"com/theoplayer/android/api/error/ErrorCode.html#CONTENT_PROTECTION_OUTPUT_RESTRICTED"}, {"p":"com.theoplayer.android.api.error","c":"ErrorCode","l":"CONTENT_PROTECTION_INTERNAL_ERROR","url":"com/theoplayer/android/api/error/ErrorCode.html#CONTENT_PROTECTION_INTERNAL_ERROR"}, {"p":"com.theoplayer.android.api.error","c":"ErrorCode","l":"SUBTITLE_LOAD_ERROR","url":"com/theoplayer/android/api/error/ErrorCode.html#SUBTITLE_LOAD_ERROR"}, {"p":"com.theoplayer.android.api.error","c":"ErrorCode","l":"SUBTITLE_CORS_ERROR","url":"com/theoplayer/android/api/error/ErrorCode.html#SUBTITLE_CORS_ERROR"}, {"p":"com.theoplayer.android.api.error","c":"ErrorCode","l":"SUBTITLE_PARSE_ERROR","url":"com/theoplayer/android/api/error/ErrorCode.html#SUBTITLE_PARSE_ERROR"}, {"p":"com.theoplayer.android.api.error","c":"ErrorCode","l":"VR_PLATFORM_UNSUPPORTED","url":"com/theoplayer/android/api/error/ErrorCode.html#VR_PLATFORM_UNSUPPORTED"}, {"p":"com.theoplayer.android.api.error","c":"ErrorCode","l":"VR_PRESENTATION_ERROR","url":"com/theoplayer/android/api/error/ErrorCode.html#VR_PRESENTATION_ERROR"}, {"p":"com.theoplayer.android.api.error","c":"ErrorCode","l":"AD_ERROR","url":"com/theoplayer/android/api/error/ErrorCode.html#AD_ERROR"}, {"p":"com.theoplayer.android.api.error","c":"ErrorCode","l":"AD_BLOCKER_DETECTED","url":"com/theoplayer/android/api/error/ErrorCode.html#AD_BLOCKER_DETECTED"}, {"p":"com.theoplayer.android.api.error","c":"ErrorCode","l":"FULLSCREEN_ERROR","url":"com/theoplayer/android/api/error/ErrorCode.html#FULLSCREEN_ERROR"}, {"p":"com.theoplayer.android.api.error","c":"ErrorCode","l":"CACHE_SOURCE_ERROR","url":"com/theoplayer/android/api/error/ErrorCode.html#CACHE_SOURCE_ERROR"}, {"p":"com.theoplayer.android.api.error","c":"ErrorCode","l":"CACHE_CONTENT_PROTECTION_ERROR","url":"com/theoplayer/android/api/error/ErrorCode.html#CACHE_CONTENT_PROTECTION_ERROR"}, {"p":"com.theoplayer.android.api.error","c":"ErrorCode","l":"THEO_LIVE_UNKNOWN_ERROR","url":"com/theoplayer/android/api/error/ErrorCode.html#THEO_LIVE_UNKNOWN_ERROR"}, {"p":"com.theoplayer.android.api.error","c":"ErrorCode","l":"THEO_LIVE_CHANNEL_NOT_FOUND","url":"com/theoplayer/android/api/error/ErrorCode.html#THEO_LIVE_CHANNEL_NOT_FOUND"}, {"p":"com.theoplayer.android.api.error","c":"ErrorCode","l":"THEO_LIVE_END_OF_DEMO","url":"com/theoplayer/android/api/error/ErrorCode.html#THEO_LIVE_END_OF_DEMO"}, {"p":"com.theoplayer.android.api.error","c":"ErrorCode","l":"THEO_LIVE_ANALYTICS_ERROR","url":"com/theoplayer/android/api/error/ErrorCode.html#THEO_LIVE_ANALYTICS_ERROR"}, {"p":"com.theoplayer.android.api.error","c":"ErrorCategory","l":"CONFIGURATION","url":"com/theoplayer/android/api/error/ErrorCategory.html#CONFIGURATION"}, {"p":"com.theoplayer.android.api.error","c":"ErrorCategory","l":"LICENSE","url":"com/theoplayer/android/api/error/ErrorCategory.html#LICENSE"}, {"p":"com.theoplayer.android.api.error","c":"ErrorCategory","l":"SOURCE","url":"com/theoplayer/android/api/error/ErrorCategory.html#SOURCE"}, {"p":"com.theoplayer.android.api.error","c":"ErrorCategory","l":"MANIFEST","url":"com/theoplayer/android/api/error/ErrorCategory.html#MANIFEST"}, {"p":"com.theoplayer.android.api.error","c":"ErrorCategory","l":"MEDIA","url":"com/theoplayer/android/api/error/ErrorCategory.html#MEDIA"}, {"p":"com.theoplayer.android.api.error","c":"ErrorCategory","l":"NETWORK","url":"com/theoplayer/android/api/error/ErrorCategory.html#NETWORK"}, {"p":"com.theoplayer.android.api.error","c":"ErrorCategory","l":"CONTENT_PROTECTION","url":"com/theoplayer/android/api/error/ErrorCategory.html#CONTENT_PROTECTION"}, {"p":"com.theoplayer.android.api.error","c":"ErrorCategory","l":"SUBTITLE","url":"com/theoplayer/android/api/error/ErrorCategory.html#SUBTITLE"}, {"p":"com.theoplayer.android.api.error","c":"ErrorCategory","l":"VR","url":"com/theoplayer/android/api/error/ErrorCategory.html#VR"}, {"p":"com.theoplayer.android.api.error","c":"ErrorCategory","l":"AD","url":"com/theoplayer/android/api/error/ErrorCategory.html#AD"}, {"p":"com.theoplayer.android.api.error","c":"ErrorCategory","l":"FULLSCREEN","url":"com/theoplayer/android/api/error/ErrorCategory.html#FULLSCREEN"}, {"p":"com.theoplayer.android.api.error","c":"ErrorCategory","l":"CACHE","url":"com/theoplayer/android/api/error/ErrorCategory.html#CACHE"}, {"p":"com.theoplayer.android.api.error","c":"ErrorCategory","l":"THEOLIVE","url":"com/theoplayer/android/api/error/ErrorCategory.html#THEOLIVE"}, {"p":"com.theoplayer.android.api.contentprotection","c":"RequestMethod","l":"GET","url":"com/theoplayer/android/api/contentprotection/RequestMethod.html#GET"}, {"p":"com.theoplayer.android.api.contentprotection","c":"RequestMethod","l":"PUT","url":"com/theoplayer/android/api/contentprotection/RequestMethod.html#PUT"}, {"p":"com.theoplayer.android.api.contentprotection","c":"RequestMethod","l":"POST","url":"com/theoplayer/android/api/contentprotection/RequestMethod.html#POST"}, {"p":"com.theoplayer.android.api.contentprotection","c":"RequestMethod","l":"DELETE","url":"com/theoplayer/android/api/contentprotection/RequestMethod.html#DELETE"}, {"p":"com.theoplayer.android.api.contentprotection","c":"RequestMethod","l":"HEAD","url":"com/theoplayer/android/api/contentprotection/RequestMethod.html#HEAD"}, {"p":"com.theoplayer.android.api.contentprotection","c":"RequestMethod","l":"OPTIONS","url":"com/theoplayer/android/api/contentprotection/RequestMethod.html#OPTIONS"}, {"p":"com.theoplayer.android.api.contentprotection","c":"KeySystemId","l":"WIDEVINE","url":"com/theoplayer/android/api/contentprotection/KeySystemId.html#WIDEVINE"}, {"p":"com.theoplayer.android.api.contentprotection","c":"KeySystemId","l":"PLAYREADY","url":"com/theoplayer/android/api/contentprotection/KeySystemId.html#PLAYREADY"}, {"p":"com.theoplayer.android.api.contentprotection","c":"KeySystemId","l":"FAIRPLAY","url":"com/theoplayer/android/api/contentprotection/KeySystemId.html#FAIRPLAY"}, {"p":"com.theoplayer.android.api.source.drm","c":"LicenseType","l":"PERSISTENT","url":"com/theoplayer/android/api/source/drm/LicenseType.html#PERSISTENT"}, {"p":"com.theoplayer.android.api.source.drm","c":"LicenseType","l":"TEMPORARY","url":"com/theoplayer/android/api/source/drm/LicenseType.html#TEMPORARY"}, {"p":"com.theoplayer.android.api.source.drm","c":"DRMIntegrationId","l":"TITANIUM","url":"com/theoplayer/android/api/source/drm/DRMIntegrationId.html#TITANIUM"}, {"p":"com.theoplayer.android.api.source.drm","c":"DRMIntegrationId","l":"VUDRM","url":"com/theoplayer/android/api/source/drm/DRMIntegrationId.html#VUDRM"}, {"p":"com.theoplayer.android.api.source.drm","c":"DRMIntegrationId","l":"KEYOS","url":"com/theoplayer/android/api/source/drm/DRMIntegrationId.html#KEYOS"}, {"p":"com.theoplayer.android.api.source.drm","c":"DRMIntegrationId","l":"CONAX","url":"com/theoplayer/android/api/source/drm/DRMIntegrationId.html#CONAX"}, {"p":"com.theoplayer.android.api.source.drm","c":"DRMIntegrationId","l":"DRMTODAY","url":"com/theoplayer/android/api/source/drm/DRMIntegrationId.html#DRMTODAY"}, {"p":"com.theoplayer.android.api.source.drm","c":"DRMIntegrationId","l":"IRDETO","url":"com/theoplayer/android/api/source/drm/DRMIntegrationId.html#IRDETO"}, {"p":"com.theoplayer.android.api.source.drm","c":"DRMIntegrationId","l":"XSTREAM","url":"com/theoplayer/android/api/source/drm/DRMIntegrationId.html#XSTREAM"}, {"p":"com.theoplayer.android.api.source.drm","c":"DRMIntegrationId","l":"AXINOM","url":"com/theoplayer/android/api/source/drm/DRMIntegrationId.html#AXINOM"}, {"p":"com.theoplayer.android.api.source.drm","c":"DRMIntegrationId","l":"AZURE","url":"com/theoplayer/android/api/source/drm/DRMIntegrationId.html#AZURE"}, {"p":"com.theoplayer.android.api.source.drm","c":"DRMIntegrationId","l":"CUSTOM","url":"com/theoplayer/android/api/source/drm/DRMIntegrationId.html#CUSTOM"}, {"p":"com.theoplayer.android.api.source.ssai","c":"StreamType","l":"LIVE","url":"com/theoplayer/android/api/source/ssai/StreamType.html#LIVE"}, {"p":"com.theoplayer.android.api.source.ssai","c":"StreamType","l":"VOD","url":"com/theoplayer/android/api/source/ssai/StreamType.html#VOD"}, {"p":"com.theoplayer.android.api.source.ssai","c":"SsaiIntegration","l":"GOOGLE_DAI","url":"com/theoplayer/android/api/source/ssai/SsaiIntegration.html#GOOGLE_DAI"}, {"p":"com.theoplayer.android.api.source.ssai","c":"SsaiIntegration","l":"CUSTOM","url":"com/theoplayer/android/api/source/ssai/SsaiIntegration.html#CUSTOM"}, {"p":"com.theoplayer.android.api.network.http","c":"RequestType","l":"UNKNOWN","url":"com/theoplayer/android/api/network/http/RequestType.html#UNKNOWN"}, {"p":"com.theoplayer.android.api.network.http","c":"RequestType","l":"MANIFEST","url":"com/theoplayer/android/api/network/http/RequestType.html#MANIFEST"}, {"p":"com.theoplayer.android.api.network.http","c":"RequestType","l":"SEGMENT","url":"com/theoplayer/android/api/network/http/RequestType.html#SEGMENT"}, {"p":"com.theoplayer.android.api.network.http","c":"RequestType","l":"PRELOAD_HINT","url":"com/theoplayer/android/api/network/http/RequestType.html#PRELOAD_HINT"}, {"p":"com.theoplayer.android.api.network.http","c":"RequestType","l":"CONTENT_PROTECTION","url":"com/theoplayer/android/api/network/http/RequestType.html#CONTENT_PROTECTION"}, {"p":"com.theoplayer.android.api.network.http","c":"RequestSubType","l":"UNKNOWN","url":"com/theoplayer/android/api/network/http/RequestSubType.html#UNKNOWN"}, {"p":"com.theoplayer.android.api.network.http","c":"RequestSubType","l":"INITIALIZATION_SEGMENT","url":"com/theoplayer/android/api/network/http/RequestSubType.html#INITIALIZATION_SEGMENT"}, {"p":"com.theoplayer.android.api.network.http","c":"RequestSubType","l":"FAIRPLAY_LICENSE","url":"com/theoplayer/android/api/network/http/RequestSubType.html#FAIRPLAY_LICENSE"}, {"p":"com.theoplayer.android.api.network.http","c":"RequestSubType","l":"FAIRPLAY_CERTIFICATE","url":"com/theoplayer/android/api/network/http/RequestSubType.html#FAIRPLAY_CERTIFICATE"}, {"p":"com.theoplayer.android.api.network.http","c":"RequestSubType","l":"WIDEVINE_LICENSE","url":"com/theoplayer/android/api/network/http/RequestSubType.html#WIDEVINE_LICENSE"}, {"p":"com.theoplayer.android.api.network.http","c":"RequestSubType","l":"WIDEVINE_CERTIFICATE","url":"com/theoplayer/android/api/network/http/RequestSubType.html#WIDEVINE_CERTIFICATE"}, {"p":"com.theoplayer.android.api.network.http","c":"RequestSubType","l":"PLAYREADY_LICENSE","url":"com/theoplayer/android/api/network/http/RequestSubType.html#PLAYREADY_LICENSE"}, {"p":"com.theoplayer.android.api.network.http","c":"RequestSubType","l":"CLEARKEY_LICENSE","url":"com/theoplayer/android/api/network/http/RequestSubType.html#CLEARKEY_LICENSE"}, {"p":"com.theoplayer.android.api.network.http","c":"RequestSubType","l":"AES128_KEY","url":"com/theoplayer/android/api/network/http/RequestSubType.html#AES128_KEY"}, {"p":"com.theoplayer.android.api.network.http","c":"RequestMediaType","l":"UNKNOWN","url":"com/theoplayer/android/api/network/http/RequestMediaType.html#UNKNOWN"}, {"p":"com.theoplayer.android.api.network.http","c":"RequestMediaType","l":"AUDIO","url":"com/theoplayer/android/api/network/http/RequestMediaType.html#AUDIO"}, {"p":"com.theoplayer.android.api.network.http","c":"RequestMediaType","l":"VIDEO","url":"com/theoplayer/android/api/network/http/RequestMediaType.html#VIDEO"}, {"p":"com.theoplayer.android.api.network.http","c":"RequestMediaType","l":"TEXT","url":"com/theoplayer/android/api/network/http/RequestMediaType.html#TEXT"}, {"p":"com.theoplayer.android.api.network.http","c":"RequestMediaType","l":"IMAGE","url":"com/theoplayer/android/api/network/http/RequestMediaType.html#IMAGE"}, {"p":"com.theoplayer.android.api.network.http","c":"ResponseType","l":"UNKNOWN","url":"com/theoplayer/android/api/network/http/ResponseType.html#UNKNOWN"}, {"p":"com.theoplayer.android.api.network.http","c":"ResponseType","l":"ARRAY_BUFFER","url":"com/theoplayer/android/api/network/http/ResponseType.html#ARRAY_BUFFER"}, {"p":"com.theoplayer.android.api.network.http","c":"ResponseType","l":"JSON","url":"com/theoplayer/android/api/network/http/ResponseType.html#JSON"}, {"p":"com.theoplayer.android.api.network.http","c":"ResponseType","l":"STREAM","url":"com/theoplayer/android/api/network/http/ResponseType.html#STREAM"}, {"p":"com.theoplayer.android.api.network.http","c":"ResponseType","l":"TEXT","url":"com/theoplayer/android/api/network/http/ResponseType.html#TEXT"}, {"p":"com.theoplayer.android.api.ads.ima","c":"GoogleImaAdEventType","l":"ALL_ADS_COMPLETED","url":"com/theoplayer/android/api/ads/ima/GoogleImaAdEventType.html#ALL_ADS_COMPLETED"}, {"p":"com.theoplayer.android.api.ads.ima","c":"GoogleImaAdEventType","l":"AD_BREAK_FETCH_ERROR","url":"com/theoplayer/android/api/ads/ima/GoogleImaAdEventType.html#AD_BREAK_FETCH_ERROR"}, {"p":"com.theoplayer.android.api.ads.ima","c":"GoogleImaAdEventType","l":"CLICKED","url":"com/theoplayer/android/api/ads/ima/GoogleImaAdEventType.html#CLICKED"}, {"p":"com.theoplayer.android.api.ads.ima","c":"GoogleImaAdEventType","l":"COMPLETED","url":"com/theoplayer/android/api/ads/ima/GoogleImaAdEventType.html#COMPLETED"}, {"p":"com.theoplayer.android.api.ads.ima","c":"GoogleImaAdEventType","l":"CUEPOINTS_CHANGED","url":"com/theoplayer/android/api/ads/ima/GoogleImaAdEventType.html#CUEPOINTS_CHANGED"}, {"p":"com.theoplayer.android.api.ads.ima","c":"GoogleImaAdEventType","l":"CONTENT_PAUSE_REQUESTED","url":"com/theoplayer/android/api/ads/ima/GoogleImaAdEventType.html#CONTENT_PAUSE_REQUESTED"}, {"p":"com.theoplayer.android.api.ads.ima","c":"GoogleImaAdEventType","l":"CONTENT_RESUME_REQUESTED","url":"com/theoplayer/android/api/ads/ima/GoogleImaAdEventType.html#CONTENT_RESUME_REQUESTED"}, {"p":"com.theoplayer.android.api.ads.ima","c":"GoogleImaAdEventType","l":"FIRST_QUARTILE","url":"com/theoplayer/android/api/ads/ima/GoogleImaAdEventType.html#FIRST_QUARTILE"}, {"p":"com.theoplayer.android.api.ads.ima","c":"GoogleImaAdEventType","l":"LOG","url":"com/theoplayer/android/api/ads/ima/GoogleImaAdEventType.html#LOG"}, {"p":"com.theoplayer.android.api.ads.ima","c":"GoogleImaAdEventType","l":"AD_BREAK_READY","url":"com/theoplayer/android/api/ads/ima/GoogleImaAdEventType.html#AD_BREAK_READY"}, {"p":"com.theoplayer.android.api.ads.ima","c":"GoogleImaAdEventType","l":"MIDPOINT","url":"com/theoplayer/android/api/ads/ima/GoogleImaAdEventType.html#MIDPOINT"}, {"p":"com.theoplayer.android.api.ads.ima","c":"GoogleImaAdEventType","l":"PAUSED","url":"com/theoplayer/android/api/ads/ima/GoogleImaAdEventType.html#PAUSED"}, {"p":"com.theoplayer.android.api.ads.ima","c":"GoogleImaAdEventType","l":"RESUMED","url":"com/theoplayer/android/api/ads/ima/GoogleImaAdEventType.html#RESUMED"}, {"p":"com.theoplayer.android.api.ads.ima","c":"GoogleImaAdEventType","l":"SKIPPABLE_STATE_CHANGED","url":"com/theoplayer/android/api/ads/ima/GoogleImaAdEventType.html#SKIPPABLE_STATE_CHANGED"}, {"p":"com.theoplayer.android.api.ads.ima","c":"GoogleImaAdEventType","l":"SKIPPED","url":"com/theoplayer/android/api/ads/ima/GoogleImaAdEventType.html#SKIPPED"}, {"p":"com.theoplayer.android.api.ads.ima","c":"GoogleImaAdEventType","l":"STARTED","url":"com/theoplayer/android/api/ads/ima/GoogleImaAdEventType.html#STARTED"}, {"p":"com.theoplayer.android.api.ads.ima","c":"GoogleImaAdEventType","l":"TAPPED","url":"com/theoplayer/android/api/ads/ima/GoogleImaAdEventType.html#TAPPED"}, {"p":"com.theoplayer.android.api.ads.ima","c":"GoogleImaAdEventType","l":"ICON_TAPPED","url":"com/theoplayer/android/api/ads/ima/GoogleImaAdEventType.html#ICON_TAPPED"}, {"p":"com.theoplayer.android.api.ads.ima","c":"GoogleImaAdEventType","l":"ICON_FALLBACK_IMAGE_CLOSED","url":"com/theoplayer/android/api/ads/ima/GoogleImaAdEventType.html#ICON_FALLBACK_IMAGE_CLOSED"}, {"p":"com.theoplayer.android.api.ads.ima","c":"GoogleImaAdEventType","l":"THIRD_QUARTILE","url":"com/theoplayer/android/api/ads/ima/GoogleImaAdEventType.html#THIRD_QUARTILE"}, {"p":"com.theoplayer.android.api.ads.ima","c":"GoogleImaAdEventType","l":"LOADED","url":"com/theoplayer/android/api/ads/ima/GoogleImaAdEventType.html#LOADED"}, {"p":"com.theoplayer.android.api.ads.ima","c":"GoogleImaAdEventType","l":"AD_PROGRESS","url":"com/theoplayer/android/api/ads/ima/GoogleImaAdEventType.html#AD_PROGRESS"}, {"p":"com.theoplayer.android.api.ads.ima","c":"GoogleImaAdEventType","l":"AD_BUFFERING","url":"com/theoplayer/android/api/ads/ima/GoogleImaAdEventType.html#AD_BUFFERING"}, {"p":"com.theoplayer.android.api.ads.ima","c":"GoogleImaAdEventType","l":"AD_BREAK_STARTED","url":"com/theoplayer/android/api/ads/ima/GoogleImaAdEventType.html#AD_BREAK_STARTED"}, {"p":"com.theoplayer.android.api.ads.ima","c":"GoogleImaAdEventType","l":"AD_BREAK_ENDED","url":"com/theoplayer/android/api/ads/ima/GoogleImaAdEventType.html#AD_BREAK_ENDED"}, {"p":"com.theoplayer.android.api.ads.ima","c":"GoogleImaAdEventType","l":"AD_PERIOD_STARTED","url":"com/theoplayer/android/api/ads/ima/GoogleImaAdEventType.html#AD_PERIOD_STARTED"}, {"p":"com.theoplayer.android.api.ads.ima","c":"GoogleImaAdEventType","l":"AD_PERIOD_ENDED","url":"com/theoplayer/android/api/ads/ima/GoogleImaAdEventType.html#AD_PERIOD_ENDED"}, {"p":"com.theoplayer.android.api.ads.ima","c":"GoogleImaAdEventType","l":"AD_ERROR","url":"com/theoplayer/android/api/ads/ima/GoogleImaAdEventType.html#AD_ERROR"}, {"p":"com.theoplayer.android.api.ads.mediatailor","c":"MediaTailorAdBreakEventType","l":"AD_BREAK_BEGIN","url":"com/theoplayer/android/api/ads/mediatailor/MediaTailorAdBreakEventType.html#AD_BREAK_BEGIN"}, {"p":"com.theoplayer.android.api.ads.mediatailor","c":"MediaTailorAdBreakEventType","l":"AD_BREAK_END","url":"com/theoplayer/android/api/ads/mediatailor/MediaTailorAdBreakEventType.html#AD_BREAK_END"}, {"p":"com.theoplayer.android.api.ads.mediatailor","c":"MediaTailorAdEventType","l":"AD_BEGIN","url":"com/theoplayer/android/api/ads/mediatailor/MediaTailorAdEventType.html#AD_BEGIN"}, {"p":"com.theoplayer.android.api.ads.mediatailor","c":"MediaTailorAdEventType","l":"AD_FIRST_QUARTILE","url":"com/theoplayer/android/api/ads/mediatailor/MediaTailorAdEventType.html#AD_FIRST_QUARTILE"}, {"p":"com.theoplayer.android.api.ads.mediatailor","c":"MediaTailorAdEventType","l":"AD_MIDPOINT","url":"com/theoplayer/android/api/ads/mediatailor/MediaTailorAdEventType.html#AD_MIDPOINT"}, {"p":"com.theoplayer.android.api.ads.mediatailor","c":"MediaTailorAdEventType","l":"AD_THIRD_QUARTILE","url":"com/theoplayer/android/api/ads/mediatailor/MediaTailorAdEventType.html#AD_THIRD_QUARTILE"}, {"p":"com.theoplayer.android.api.ads.mediatailor","c":"MediaTailorAdEventType","l":"AD_END","url":"com/theoplayer/android/api/ads/mediatailor/MediaTailorAdEventType.html#AD_END"}, {"p":"com.theoplayer.android.api.ads.mediatailor","c":"MediaTailorAdEventType","l":"AD_CLICK_THROUGH","url":"com/theoplayer/android/api/ads/mediatailor/MediaTailorAdEventType.html#AD_CLICK_THROUGH"}, {"p":"com.theoplayer.android.api.ads.mediatailor","c":"MediaTailorAdEventType","l":"AD_CLICK_TRACKING","url":"com/theoplayer/android/api/ads/mediatailor/MediaTailorAdEventType.html#AD_CLICK_TRACKING"}, {"p":"com.theoplayer.android.api.ads.theoads","c":"TheoAdsLayoutOverride","l":"SINGLE","url":"com/theoplayer/android/api/ads/theoads/TheoAdsLayoutOverride.html#SINGLE"}, {"p":"com.theoplayer.android.api.ads.theoads","c":"TheoAdsLayoutOverride","l":"LSHAPE","url":"com/theoplayer/android/api/ads/theoads/TheoAdsLayoutOverride.html#LSHAPE"}, {"p":"com.theoplayer.android.api.ads.theoads","c":"TheoAdsLayoutOverride","l":"DOUBLE","url":"com/theoplayer/android/api/ads/theoads/TheoAdsLayoutOverride.html#DOUBLE"}] +var memberSearchIndex = [{"p":"com.theoplayer.android.api.cast","c":"CastConfiguration.Builder","l":"CastConfiguration.Builder()","url":"com/theoplayer/android/api/cast/CastConfiguration.Builder.html#CastConfiguration.Builder()"}, {"p":"com.theoplayer.android.api.cast","c":"CastConfiguration.Builder","l":"castStrategy(CastStrategy)","url":"com/theoplayer/android/api/cast/CastConfiguration.Builder.html#castStrategy(com.theoplayer.android.api.cast.CastStrategy)"}, {"p":"com.theoplayer.android.api.cast","c":"CastConfiguration.Builder","l":"build()","url":"com/theoplayer/android/api/cast/CastConfiguration.Builder.html#build()"}, {"p":"com.theoplayer.android.api.cast","c":"CastConfiguration","l":"getCastStrategy()","url":"com/theoplayer/android/api/cast/CastConfiguration.html#getCastStrategy()"}, {"p":"com.theoplayer.android.api.cast","c":"CastIntegration","l":"isCasting()","url":"com/theoplayer/android/api/cast/CastIntegration.html#isCasting()"}, {"p":"com.theoplayer.android.api.cast","c":"CastIntegration","l":"getError()","url":"com/theoplayer/android/api/cast/CastIntegration.html#getError()"}, {"p":"com.theoplayer.android.api.cast","c":"CastIntegration","l":"getReceiverName()","url":"com/theoplayer/android/api/cast/CastIntegration.html#getReceiverName()"}, {"p":"com.theoplayer.android.api.cast","c":"CastIntegration","l":"getState()","url":"com/theoplayer/android/api/cast/CastIntegration.html#getState()"}, {"p":"com.theoplayer.android.api.cast","c":"CastIntegration","l":"start()","url":"com/theoplayer/android/api/cast/CastIntegration.html#start()"}, {"p":"com.theoplayer.android.api.cast","c":"CastIntegration","l":"join()","url":"com/theoplayer/android/api/cast/CastIntegration.html#join()"}, {"p":"com.theoplayer.android.api.cast","c":"CastIntegration","l":"leave()","url":"com/theoplayer/android/api/cast/CastIntegration.html#leave()"}, {"p":"com.theoplayer.android.api.cast","c":"CastIntegration","l":"stop()","url":"com/theoplayer/android/api/cast/CastIntegration.html#stop()"}, {"p":"com.theoplayer.android.api.cast","c":"CastIntegration","l":"setConnectionCallback(ChromecastConnectionCallback)","url":"com/theoplayer/android/api/cast/CastIntegration.html#setConnectionCallback(com.theoplayer.android.api.cast.chromecast.ChromecastConnectionCallback)"}, {"p":"com.theoplayer.android.api.cast","c":"CastIntegrationFactory","l":"createCastIntegration(THEOplayerView, CastConfiguration)","url":"com/theoplayer/android/api/cast/CastIntegrationFactory.html#createCastIntegration(com.theoplayer.android.api.THEOplayerView,com.theoplayer.android.api.cast.CastConfiguration)"}, {"p":"com.theoplayer.android.api.cast","c":"Cast","l":"getChromecast()","url":"com/theoplayer/android/api/cast/Cast.html#getChromecast()"}, {"p":"com.theoplayer.android.api.cast","c":"Cast","l":"isCasting()","url":"com/theoplayer/android/api/cast/Cast.html#isCasting()"}, {"p":"com.theoplayer.android.api.cast","c":"GlobalCast","l":"getChromeCast()","url":"com/theoplayer/android/api/cast/GlobalCast.html#getChromeCast()"}, {"p":"com.theoplayer.android.api.cast","c":"CastStrategy","l":"values()","url":"com/theoplayer/android/api/cast/CastStrategy.html#values()"}, {"p":"com.theoplayer.android.api.cast","c":"CastStrategy","l":"valueOf(String)","url":"com/theoplayer/android/api/cast/CastStrategy.html#valueOf(java.lang.String)"}, {"p":"com.theoplayer.android.api.media3","c":"Media3PlayerIntegration.SourceSelectCallback","l":"canPlaySource(TypedSource, SourceDescription)","url":"com/theoplayer/android/api/media3/Media3PlayerIntegration.SourceSelectCallback.html#canPlaySource(com.theoplayer.android.api.source.TypedSource,com.theoplayer.android.api.source.SourceDescription)"}, {"p":"com.theoplayer.android.api.media3","c":"Media3PlayerIntegrationFactory","l":"createMedia3PlayerIntegration(Media3PlayerIntegration.SourceSelectCallback)","url":"com/theoplayer/android/api/media3/Media3PlayerIntegrationFactory.html#createMedia3PlayerIntegration(com.theoplayer.android.api.media3.Media3PlayerIntegration.SourceSelectCallback)"}, {"p":"com.theoplayer.android.api.fullscreen","c":"IntentCreationListener","l":"onCreateIntent(Intent)","url":"com/theoplayer/android/api/fullscreen/IntentCreationListener.html#onCreateIntent(android.content.Intent)"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"FullScreenActivity()","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#FullScreenActivity()"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"getFullScreenVisibilityFlags()","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#getFullScreenVisibilityFlags()"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"getTHEOplayerView()","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#getTHEOplayerView()"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenManager","l":"setFullScreenOrientationCoupled(boolean)","url":"com/theoplayer/android/api/fullscreen/FullScreenManager.html#setFullScreenOrientationCoupled(boolean)"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenManager","l":"isFullScreenOrientationCoupled()","url":"com/theoplayer/android/api/fullscreen/FullScreenManager.html#isFullScreenOrientationCoupled()"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenManager","l":"setFullscreenOrientation(int)","url":"com/theoplayer/android/api/fullscreen/FullScreenManager.html#setFullscreenOrientation(int)"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenManager","l":"getFullscreenOrientation()","url":"com/theoplayer/android/api/fullscreen/FullScreenManager.html#getFullscreenOrientation()"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenManager","l":"requestFullScreen()","url":"com/theoplayer/android/api/fullscreen/FullScreenManager.html#requestFullScreen()"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenManager","l":"exitFullScreen()","url":"com/theoplayer/android/api/fullscreen/FullScreenManager.html#exitFullScreen()"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenManager","l":"isFullScreen()","url":"com/theoplayer/android/api/fullscreen/FullScreenManager.html#isFullScreen()"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenManager","l":"isFullScreenToggleInProgress()","url":"com/theoplayer/android/api/fullscreen/FullScreenManager.html#isFullScreenToggleInProgress()"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenManager","l":"setFullscreenActivity(Class)","url":"com/theoplayer/android/api/fullscreen/FullScreenManager.html#setFullscreenActivity(java.lang.Class)"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenManager","l":"getFullscreenActivity()","url":"com/theoplayer/android/api/fullscreen/FullScreenManager.html#getFullscreenActivity()"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenManager","l":"addFullScreenChangeListener(FullScreenChangeListener)","url":"com/theoplayer/android/api/fullscreen/FullScreenManager.html#addFullScreenChangeListener(com.theoplayer.android.api.fullscreen.FullScreenChangeListener)"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenManager","l":"removeFullScreenChangeListener(FullScreenChangeListener)","url":"com/theoplayer/android/api/fullscreen/FullScreenManager.html#removeFullScreenChangeListener(com.theoplayer.android.api.fullscreen.FullScreenChangeListener)"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenManager","l":"addFullScreenIntentCreationListener(IntentCreationListener)","url":"com/theoplayer/android/api/fullscreen/FullScreenManager.html#addFullScreenIntentCreationListener(com.theoplayer.android.api.fullscreen.IntentCreationListener)"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenManager","l":"removeFullScreenIntentCreationListener(IntentCreationListener)","url":"com/theoplayer/android/api/fullscreen/FullScreenManager.html#removeFullScreenIntentCreationListener(com.theoplayer.android.api.fullscreen.IntentCreationListener)"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenChangeListener","l":"onEnterFullScreen()","url":"com/theoplayer/android/api/fullscreen/FullScreenChangeListener.html#onEnterFullScreen()"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenChangeListener","l":"onExitFullScreen()","url":"com/theoplayer/android/api/fullscreen/FullScreenChangeListener.html#onExitFullScreen()"}, {"p":"com.theoplayer.android.api.pip","c":"PiPManager","l":"enterPiP(PiPType)","url":"com/theoplayer/android/api/pip/PiPManager.html#enterPiP(com.theoplayer.android.api.pip.PiPType)"}, {"p":"com.theoplayer.android.api.pip","c":"PiPManager","l":"exitPiP()","url":"com/theoplayer/android/api/pip/PiPManager.html#exitPiP()"}, {"p":"com.theoplayer.android.api.pip","c":"PiPManager","l":"isInPiP()","url":"com/theoplayer/android/api/pip/PiPManager.html#isInPiP()"}, {"p":"com.theoplayer.android.api.pip","c":"PiPType","l":"values()","url":"com/theoplayer/android/api/pip/PiPType.html#values()"}, {"p":"com.theoplayer.android.api.pip","c":"PiPType","l":"valueOf(String)","url":"com/theoplayer/android/api/pip/PiPType.html#valueOf(java.lang.String)"}, {"p":"com.theoplayer.android.api.pip","c":"PipConfiguration.Builder","l":"PipConfiguration.Builder()","url":"com/theoplayer/android/api/pip/PipConfiguration.Builder.html#PipConfiguration.Builder()"}, {"p":"com.theoplayer.android.api.pip","c":"PipConfiguration.Builder","l":"build()","url":"com/theoplayer/android/api/pip/PipConfiguration.Builder.html#build()"}, {"p":"com.theoplayer.android.api.event.cache.task","c":"CachingTaskEventTypes","l":"getName()","url":"com/theoplayer/android/api/event/cache/task/CachingTaskEventTypes.html#getName()"}, {"p":"com.theoplayer.android.api.event.cache.task","c":"CachingTaskErrorEvent","l":"getError()","url":"com/theoplayer/android/api/event/cache/task/CachingTaskErrorEvent.html#getError()"}, {"p":"com.theoplayer.android.api.event.cache.task","c":"CachingTaskStateChangeEvent","l":"getStatus()","url":"com/theoplayer/android/api/event/cache/task/CachingTaskStateChangeEvent.html#getStatus()"}, {"p":"com.theoplayer.android.api.event.cache.task","c":"CachingTaskProgressEvent","l":"getProgress()","url":"com/theoplayer/android/api/event/cache/task/CachingTaskProgressEvent.html#getProgress()"}, {"p":"com.theoplayer.android.api.event.cache","c":"CacheEventTypes","l":"CacheEventTypes(String)","url":"com/theoplayer/android/api/event/cache/CacheEventTypes.html#CacheEventTypes(java.lang.String)"}, {"p":"com.theoplayer.android.api.event.cache","c":"CacheEventTypes","l":"getName()","url":"com/theoplayer/android/api/event/cache/CacheEventTypes.html#getName()"}, {"p":"com.theoplayer.android.api.event.cache","c":"CacheStateChangeEvent","l":"getStatus()","url":"com/theoplayer/android/api/event/cache/CacheStateChangeEvent.html#getStatus()"}, {"p":"com.theoplayer.android.api.event.cache.tasklist","c":"CachingTaskListEventTypes","l":"getName()","url":"com/theoplayer/android/api/event/cache/tasklist/CachingTaskListEventTypes.html#getName()"}, {"p":"com.theoplayer.android.api.event.cache.tasklist","c":"CachingTaskListEvent","l":"getTask()","url":"com/theoplayer/android/api/event/cache/tasklist/CachingTaskListEvent.html#getTask()"}, {"p":"com.theoplayer.android.api.event.chromecast","c":"CastStateChangeEvent","l":"getState()","url":"com/theoplayer/android/api/event/chromecast/CastStateChangeEvent.html#getState()"}, {"p":"com.theoplayer.android.api.event.chromecast","c":"ChromecastEventTypes","l":"ChromecastEventTypes()","url":"com/theoplayer/android/api/event/chromecast/ChromecastEventTypes.html#ChromecastEventTypes()"}, {"p":"com.theoplayer.android.api.event.chromecast","c":"CastErrorEvent","l":"getError()","url":"com/theoplayer/android/api/event/chromecast/CastErrorEvent.html#getError()"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"THEOplayerView(Context, AttributeSet, THEOplayerConfig)","url":"com/theoplayer/android/api/THEOplayerView.html#THEOplayerView(android.content.Context,android.util.AttributeSet,com.theoplayer.android.api.THEOplayerConfig)"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"THEOplayerView(Context, AttributeSet)","url":"com/theoplayer/android/api/THEOplayerView.html#THEOplayerView(android.content.Context,android.util.AttributeSet)"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"THEOplayerView(Context)","url":"com/theoplayer/android/api/THEOplayerView.html#THEOplayerView(android.content.Context)"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"THEOplayerView(Context, THEOplayerConfig)","url":"com/theoplayer/android/api/THEOplayerView.html#THEOplayerView(android.content.Context,com.theoplayer.android.api.THEOplayerConfig)"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"getGlobalCast(Activity)","url":"com/theoplayer/android/api/THEOplayerView.html#getGlobalCast(android.app.Activity)"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"getFullScreenManager()","url":"com/theoplayer/android/api/THEOplayerView.html#getFullScreenManager()"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"getPiPManager()","url":"com/theoplayer/android/api/THEOplayerView.html#getPiPManager()"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"getPresentationMode()","url":"com/theoplayer/android/api/THEOplayerView.html#getPresentationMode()"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"getPlayer()","url":"com/theoplayer/android/api/THEOplayerView.html#getPlayer()"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"getCast()","url":"com/theoplayer/android/api/THEOplayerView.html#getCast()"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"getVersion()","url":"com/theoplayer/android/api/THEOplayerView.html#getVersion()"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"getSettings()","url":"com/theoplayer/android/api/THEOplayerView.html#getSettings()"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"onPause()","url":"com/theoplayer/android/api/THEOplayerView.html#onPause()"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"onResume()","url":"com/theoplayer/android/api/THEOplayerView.html#onResume()"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"onDestroy()","url":"com/theoplayer/android/api/THEOplayerView.html#onDestroy()"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"isDestroyed()","url":"com/theoplayer/android/api/THEOplayerView.html#isDestroyed()"}, {"p":"com.theoplayer.android.api","c":"THEOplayerSettings","l":"setAllowBackgroundPlayback(boolean)","url":"com/theoplayer/android/api/THEOplayerSettings.html#setAllowBackgroundPlayback(boolean)"}, {"p":"com.theoplayer.android.api","c":"THEOplayerSettings","l":"allowBackgroundPlayback()","url":"com/theoplayer/android/api/THEOplayerSettings.html#allowBackgroundPlayback()"}, {"p":"com.theoplayer.android.api","c":"THEOplayerGlobal","l":"THEOplayerGlobal()","url":"com/theoplayer/android/api/THEOplayerGlobal.html#THEOplayerGlobal()"}, {"p":"com.theoplayer.android.api","c":"THEOplayerGlobal","l":"getSharedInstance(Context)","url":"com/theoplayer/android/api/THEOplayerGlobal.html#getSharedInstance(android.content.Context)"}, {"p":"com.theoplayer.android.api","c":"THEOplayerGlobal","l":"getCache()","url":"com/theoplayer/android/api/THEOplayerGlobal.html#getCache()"}, {"p":"com.theoplayer.android.api","c":"THEOplayerGlobal","l":"getSsl()","url":"com/theoplayer/android/api/THEOplayerGlobal.html#getSsl()"}, {"p":"com.theoplayer.android.api","c":"THEOplayerGlobal","l":"getPlaybackSettings()","url":"com/theoplayer/android/api/THEOplayerGlobal.html#getPlaybackSettings()"}, {"p":"com.theoplayer.android.api","c":"THEOplayerGlobal","l":"setApplicationInstance(Application)","url":"com/theoplayer/android/api/THEOplayerGlobal.html#setApplicationInstance(android.app.Application)"}, {"p":"com.theoplayer.android.api","c":"THEOplayerGlobal","l":"registerContentProtectionIntegration(String, KeySystemId, ContentProtectionIntegrationFactory)","url":"com/theoplayer/android/api/THEOplayerGlobal.html#registerContentProtectionIntegration(java.lang.String,com.theoplayer.android.api.contentprotection.KeySystemId,com.theoplayer.android.api.contentprotection.ContentProtectionIntegrationFactory)"}, {"p":"com.theoplayer.android.api","c":"THEOplayerGlobal","l":"getVersion()","url":"com/theoplayer/android/api/THEOplayerGlobal.html#getVersion()"}, {"p":"com.theoplayer.android.api","c":"THEOplayerDestroyedException","l":"THEOplayerDestroyedException()","url":"com/theoplayer/android/api/THEOplayerDestroyedException.html#THEOplayerDestroyedException()"}, {"p":"com.theoplayer.android.api","c":"THEOplayerConfig.Builder","l":"THEOplayerConfig.Builder()","url":"com/theoplayer/android/api/THEOplayerConfig.Builder.html#THEOplayerConfig.Builder()"}, {"p":"com.theoplayer.android.api","c":"THEOplayerConfig.Builder","l":"multiSession(boolean)","url":"com/theoplayer/android/api/THEOplayerConfig.Builder.html#multiSession(boolean)"}, {"p":"com.theoplayer.android.api","c":"THEOplayerConfig.Builder","l":"liveOffset(double)","url":"com/theoplayer/android/api/THEOplayerConfig.Builder.html#liveOffset(double)"}, {"p":"com.theoplayer.android.api","c":"THEOplayerConfig.Builder","l":"hlsDateRange(boolean)","url":"com/theoplayer/android/api/THEOplayerConfig.Builder.html#hlsDateRange(boolean)"}, {"p":"com.theoplayer.android.api","c":"THEOplayerConfig.Builder","l":"license(String)","url":"com/theoplayer/android/api/THEOplayerConfig.Builder.html#license(java.lang.String)"}, {"p":"com.theoplayer.android.api","c":"THEOplayerConfig.Builder","l":"licenseUrl(String)","url":"com/theoplayer/android/api/THEOplayerConfig.Builder.html#licenseUrl(java.lang.String)"}, {"p":"com.theoplayer.android.api","c":"THEOplayerConfig.Builder","l":"pipConfiguration(PipConfiguration)","url":"com/theoplayer/android/api/THEOplayerConfig.Builder.html#pipConfiguration(com.theoplayer.android.api.pip.PipConfiguration)"}, {"p":"com.theoplayer.android.api","c":"THEOplayerConfig.Builder","l":"networkConfiguration(NetworkConfiguration)","url":"com/theoplayer/android/api/THEOplayerConfig.Builder.html#networkConfiguration(com.theoplayer.android.api.player.NetworkConfiguration)"}, {"p":"com.theoplayer.android.api","c":"THEOplayerConfig.Builder","l":"build()","url":"com/theoplayer/android/api/THEOplayerConfig.Builder.html#build()"}, {"p":"com.theoplayer.android.api","c":"THEOplayerConfig","l":"isMultiSession()","url":"com/theoplayer/android/api/THEOplayerConfig.html#isMultiSession()"}, {"p":"com.theoplayer.android.api","c":"THEOplayerConfig","l":"getLiveOffset()","url":"com/theoplayer/android/api/THEOplayerConfig.html#getLiveOffset()"}, {"p":"com.theoplayer.android.api","c":"THEOplayerConfig","l":"isHlsDateRange()","url":"com/theoplayer/android/api/THEOplayerConfig.html#isHlsDateRange()"}, {"p":"com.theoplayer.android.api","c":"THEOplayerConfig","l":"getLicense()","url":"com/theoplayer/android/api/THEOplayerConfig.html#getLicense()"}, {"p":"com.theoplayer.android.api","c":"THEOplayerConfig","l":"getLicenseUrl()","url":"com/theoplayer/android/api/THEOplayerConfig.html#getLicenseUrl()"}, {"p":"com.theoplayer.android.api","c":"THEOplayerConfig","l":"getPipConfiguration()","url":"com/theoplayer/android/api/THEOplayerConfig.html#getPipConfiguration()"}, {"p":"com.theoplayer.android.api","c":"THEOplayerConfig","l":"getNetworkConfiguration()","url":"com/theoplayer/android/api/THEOplayerConfig.html#getNetworkConfiguration()"}, {"p":"com.theoplayer.android.api","c":"IntegrationType","l":"values()","url":"com/theoplayer/android/api/IntegrationType.html#values()"}, {"p":"com.theoplayer.android.api","c":"IntegrationType","l":"valueOf(String)","url":"com/theoplayer/android/api/IntegrationType.html#valueOf(java.lang.String)"}, {"p":"com.theoplayer.android.api","c":"Integration","l":"getType()","url":"com/theoplayer/android/api/Integration.html#getType()"}, {"p":"com.theoplayer.android.api.util","c":"CollectionUtils","l":"CollectionUtils()","url":"com/theoplayer/android/api/util/CollectionUtils.html#CollectionUtils()"}, {"p":"com.theoplayer.android.api.util","c":"CollectionUtils","l":"getFromCollectionByIndex(Collection, int)","url":"com/theoplayer/android/api/util/CollectionUtils.html#getFromCollectionByIndex(java.util.Collection,int)"}, {"p":"com.theoplayer.android.api.util","c":"SimpleList","l":"length()","url":"com/theoplayer/android/api/util/SimpleList.html#length()"}, {"p":"com.theoplayer.android.api.util","c":"SimpleList","l":"getItem(int)","url":"com/theoplayer/android/api/util/SimpleList.html#getItem(int)"}, {"p":"com.theoplayer.android.api.util","c":"JavaCallback","l":"onSuccess(T)","url":"com/theoplayer/android/api/util/JavaCallback.html#onSuccess(T)"}, {"p":"com.theoplayer.android.api.util","c":"JavaCallback","l":"onError(Throwable)","url":"com/theoplayer/android/api/util/JavaCallback.html#onError(java.lang.Throwable)"}, {"p":"com.theoplayer.android.api.cast.chromecast","c":"ErrorCode","l":"values()","url":"com/theoplayer/android/api/cast/chromecast/ErrorCode.html#values()"}, {"p":"com.theoplayer.android.api.cast.chromecast","c":"ErrorCode","l":"valueOf(String)","url":"com/theoplayer/android/api/cast/chromecast/ErrorCode.html#valueOf(java.lang.String)"}, {"p":"com.theoplayer.android.api.cast.chromecast","c":"DefaultCastOptionsProvider","l":"DefaultCastOptionsProvider()","url":"com/theoplayer/android/api/cast/chromecast/DefaultCastOptionsProvider.html#DefaultCastOptionsProvider()"}, {"p":"com.theoplayer.android.api.cast.chromecast","c":"DefaultCastOptionsProvider","l":"getCastOptions(Context)","url":"com/theoplayer/android/api/cast/chromecast/DefaultCastOptionsProvider.html#getCastOptions(android.content.Context)"}, {"p":"com.theoplayer.android.api.cast.chromecast","c":"DefaultCastOptionsProvider","l":"getAdditionalSessionProviders(Context)","url":"com/theoplayer/android/api/cast/chromecast/DefaultCastOptionsProvider.html#getAdditionalSessionProviders(android.content.Context)"}, {"p":"com.theoplayer.android.api.cast.chromecast","c":"Chromecast","l":"isCasting()","url":"com/theoplayer/android/api/cast/chromecast/Chromecast.html#isCasting()"}, {"p":"com.theoplayer.android.api.cast.chromecast","c":"Chromecast","l":"getError()","url":"com/theoplayer/android/api/cast/chromecast/Chromecast.html#getError()"}, {"p":"com.theoplayer.android.api.cast.chromecast","c":"Chromecast","l":"getReceiverName()","url":"com/theoplayer/android/api/cast/chromecast/Chromecast.html#getReceiverName()"}, {"p":"com.theoplayer.android.api.cast.chromecast","c":"Chromecast","l":"getState()","url":"com/theoplayer/android/api/cast/chromecast/Chromecast.html#getState()"}, {"p":"com.theoplayer.android.api.cast.chromecast","c":"Chromecast","l":"start()","url":"com/theoplayer/android/api/cast/chromecast/Chromecast.html#start()"}, {"p":"com.theoplayer.android.api.cast.chromecast","c":"Chromecast","l":"join()","url":"com/theoplayer/android/api/cast/chromecast/Chromecast.html#join()"}, {"p":"com.theoplayer.android.api.cast.chromecast","c":"Chromecast","l":"leave()","url":"com/theoplayer/android/api/cast/chromecast/Chromecast.html#leave()"}, {"p":"com.theoplayer.android.api.cast.chromecast","c":"Chromecast","l":"stop()","url":"com/theoplayer/android/api/cast/chromecast/Chromecast.html#stop()"}, {"p":"com.theoplayer.android.api.cast.chromecast","c":"Chromecast","l":"setConnectionCallback(ChromecastConnectionCallback)","url":"com/theoplayer/android/api/cast/chromecast/Chromecast.html#setConnectionCallback(com.theoplayer.android.api.cast.chromecast.ChromecastConnectionCallback)"}, {"p":"com.theoplayer.android.api.cast.chromecast","c":"CastError","l":"CastError(ErrorCode, String)","url":"com/theoplayer/android/api/cast/chromecast/CastError.html#CastError(com.theoplayer.android.api.cast.chromecast.ErrorCode,java.lang.String)"}, {"p":"com.theoplayer.android.api.cast.chromecast","c":"CastError","l":"getErrorCode()","url":"com/theoplayer/android/api/cast/chromecast/CastError.html#getErrorCode()"}, {"p":"com.theoplayer.android.api.cast.chromecast","c":"CastError","l":"getDescription()","url":"com/theoplayer/android/api/cast/chromecast/CastError.html#getDescription()"}, {"p":"com.theoplayer.android.api.cast.chromecast","c":"CastError","l":"toString()","url":"com/theoplayer/android/api/cast/chromecast/CastError.html#toString()"}, {"p":"com.theoplayer.android.api.cast.chromecast","c":"PlayerCastState","l":"values()","url":"com/theoplayer/android/api/cast/chromecast/PlayerCastState.html#values()"}, {"p":"com.theoplayer.android.api.cast.chromecast","c":"PlayerCastState","l":"valueOf(String)","url":"com/theoplayer/android/api/cast/chromecast/PlayerCastState.html#valueOf(java.lang.String)"}, {"p":"com.theoplayer.android.api.cast.chromecast","c":"ChromecastConnectionCallback","l":"onStart(SourceDescription)","url":"com/theoplayer/android/api/cast/chromecast/ChromecastConnectionCallback.html#onStart(com.theoplayer.android.api.source.SourceDescription)"}, {"p":"com.theoplayer.android.api.cast.chromecast","c":"ChromecastConnectionCallback","l":"onStop(SourceDescription)","url":"com/theoplayer/android/api/cast/chromecast/ChromecastConnectionCallback.html#onStop(com.theoplayer.android.api.source.SourceDescription)"}, {"p":"com.theoplayer.android.api.cast.chromecast","c":"ChromecastConnectionCallback","l":"onJoin(SourceDescription)","url":"com/theoplayer/android/api/cast/chromecast/ChromecastConnectionCallback.html#onJoin(com.theoplayer.android.api.source.SourceDescription)"}, {"p":"com.theoplayer.android.api.cast.chromecast","c":"ChromecastConnectionCallback","l":"onLeave(SourceDescription)","url":"com/theoplayer/android/api/cast/chromecast/ChromecastConnectionCallback.html#onLeave(com.theoplayer.android.api.source.SourceDescription)"}, {"p":"com.theoplayer.android.api.cast.chromecast","c":"GlobalChromecast","l":"startSession()","url":"com/theoplayer/android/api/cast/chromecast/GlobalChromecast.html#startSession()"}, {"p":"com.theoplayer.android.api.cast.chromecast","c":"GlobalChromecast","l":"stopSession()","url":"com/theoplayer/android/api/cast/chromecast/GlobalChromecast.html#stopSession()"}, {"p":"com.theoplayer.android.api.ads","c":"GoogleImaAd","l":"getImaAd()","url":"com/theoplayer/android/api/ads/GoogleImaAd.html#getImaAd()"}, {"p":"com.theoplayer.android.api.ads","c":"GoogleImaAd","l":"getAdSystem()","url":"com/theoplayer/android/api/ads/GoogleImaAd.html#getAdSystem()"}, {"p":"com.theoplayer.android.api.ads","c":"GoogleImaAd","l":"getCreativeId()","url":"com/theoplayer/android/api/ads/GoogleImaAd.html#getCreativeId()"}, {"p":"com.theoplayer.android.api.ads","c":"GoogleImaAd","l":"getWrapperAdIds()","url":"com/theoplayer/android/api/ads/GoogleImaAd.html#getWrapperAdIds()"}, {"p":"com.theoplayer.android.api.ads","c":"GoogleImaAd","l":"getWrapperAdSystems()","url":"com/theoplayer/android/api/ads/GoogleImaAd.html#getWrapperAdSystems()"}, {"p":"com.theoplayer.android.api.ads","c":"GoogleImaAd","l":"getWrapperCreativeIds()","url":"com/theoplayer/android/api/ads/GoogleImaAd.html#getWrapperCreativeIds()"}, {"p":"com.theoplayer.android.api.ads","c":"GoogleImaAd","l":"getVastMediaBitrate()","url":"com/theoplayer/android/api/ads/GoogleImaAd.html#getVastMediaBitrate()"}, {"p":"com.theoplayer.android.api.ads","c":"GoogleImaAd","l":"getUniversalAdIds()","url":"com/theoplayer/android/api/ads/GoogleImaAd.html#getUniversalAdIds()"}, {"p":"com.theoplayer.android.api.ads","c":"GoogleImaAd","l":"getTraffickingParameters()","url":"com/theoplayer/android/api/ads/GoogleImaAd.html#getTraffickingParameters()"}, {"p":"com.theoplayer.android.api.ads","c":"Ad","l":"getId()","url":"com/theoplayer/android/api/ads/Ad.html#getId()"}, {"p":"com.theoplayer.android.api.ads","c":"Ad","l":"getCompanions()","url":"com/theoplayer/android/api/ads/Ad.html#getCompanions()"}, {"p":"com.theoplayer.android.api.ads","c":"Ad","l":"getType()","url":"com/theoplayer/android/api/ads/Ad.html#getType()"}, {"p":"com.theoplayer.android.api.ads","c":"Ad","l":"getAdBreak()","url":"com/theoplayer/android/api/ads/Ad.html#getAdBreak()"}, {"p":"com.theoplayer.android.api.ads","c":"Ad","l":"getSkipOffset()","url":"com/theoplayer/android/api/ads/Ad.html#getSkipOffset()"}, {"p":"com.theoplayer.android.api.ads","c":"Ad","l":"getIntegration()","url":"com/theoplayer/android/api/ads/Ad.html#getIntegration()"}, {"p":"com.theoplayer.android.api.ads","c":"Ad","l":"getCustomIntegration()","url":"com/theoplayer/android/api/ads/Ad.html#getCustomIntegration()"}, {"p":"com.theoplayer.android.api.ads","c":"Ad","l":"getCustomData()","url":"com/theoplayer/android/api/ads/Ad.html#getCustomData()"}, {"p":"com.theoplayer.android.api.ads","c":"LinearAd","l":"getDuration()","url":"com/theoplayer/android/api/ads/LinearAd.html#getDuration()"}, {"p":"com.theoplayer.android.api.ads","c":"LinearAd","l":"getMediaFiles()","url":"com/theoplayer/android/api/ads/LinearAd.html#getMediaFiles()"}, {"p":"com.theoplayer.android.api.ads","c":"OmidFriendlyObstructionPurpose","l":"values()","url":"com/theoplayer/android/api/ads/OmidFriendlyObstructionPurpose.html#values()"}, {"p":"com.theoplayer.android.api.ads","c":"OmidFriendlyObstructionPurpose","l":"valueOf(String)","url":"com/theoplayer/android/api/ads/OmidFriendlyObstructionPurpose.html#valueOf(java.lang.String)"}, {"p":"com.theoplayer.android.api.ads","c":"AdBreak","l":"getAds()","url":"com/theoplayer/android/api/ads/AdBreak.html#getAds()"}, {"p":"com.theoplayer.android.api.ads","c":"AdBreak","l":"getMaxDuration()","url":"com/theoplayer/android/api/ads/AdBreak.html#getMaxDuration()"}, {"p":"com.theoplayer.android.api.ads","c":"AdBreak","l":"getMaxRemainingDuration()","url":"com/theoplayer/android/api/ads/AdBreak.html#getMaxRemainingDuration()"}, {"p":"com.theoplayer.android.api.ads","c":"AdBreak","l":"getTimeOffset()","url":"com/theoplayer/android/api/ads/AdBreak.html#getTimeOffset()"}, {"p":"com.theoplayer.android.api.ads","c":"AdBreak","l":"getIntegration()","url":"com/theoplayer/android/api/ads/AdBreak.html#getIntegration()"}, {"p":"com.theoplayer.android.api.ads","c":"AdBreak","l":"getCustomIntegration()","url":"com/theoplayer/android/api/ads/AdBreak.html#getCustomIntegration()"}, {"p":"com.theoplayer.android.api.ads","c":"AdBreak","l":"getCustomData()","url":"com/theoplayer/android/api/ads/AdBreak.html#getCustomData()"}, {"p":"com.theoplayer.android.api.ads","c":"Omid","l":"addFriendlyObstruction(OmidFriendlyObstruction)","url":"com/theoplayer/android/api/ads/Omid.html#addFriendlyObstruction(com.theoplayer.android.api.ads.OmidFriendlyObstruction)"}, {"p":"com.theoplayer.android.api.ads","c":"Omid","l":"removeAllFriendlyObstructions()","url":"com/theoplayer/android/api/ads/Omid.html#removeAllFriendlyObstructions()"}, {"p":"com.theoplayer.android.api.ads","c":"Ads","l":"isPlaying()","url":"com/theoplayer/android/api/ads/Ads.html#isPlaying()"}, {"p":"com.theoplayer.android.api.ads","c":"Ads","l":"getCurrentAds()","url":"com/theoplayer/android/api/ads/Ads.html#getCurrentAds()"}, {"p":"com.theoplayer.android.api.ads","c":"Ads","l":"getCurrentAdBreak()","url":"com/theoplayer/android/api/ads/Ads.html#getCurrentAdBreak()"}, {"p":"com.theoplayer.android.api.ads","c":"Ads","l":"getScheduledAds()","url":"com/theoplayer/android/api/ads/Ads.html#getScheduledAds()"}, {"p":"com.theoplayer.android.api.ads","c":"Ads","l":"schedule(AdDescription)","url":"com/theoplayer/android/api/ads/Ads.html#schedule(com.theoplayer.android.api.source.addescription.AdDescription)"}, {"p":"com.theoplayer.android.api.ads","c":"Ads","l":"skip()","url":"com/theoplayer/android/api/ads/Ads.html#skip()"}, {"p":"com.theoplayer.android.api.ads","c":"Ads","l":"getOmid()","url":"com/theoplayer/android/api/ads/Ads.html#getOmid()"}, {"p":"com.theoplayer.android.api.ads","c":"Ads","l":"registerServerSideIntegration(String, ServerSideAdIntegrationFactory)","url":"com/theoplayer/android/api/ads/Ads.html#registerServerSideIntegration(java.lang.String,com.theoplayer.android.api.ads.ServerSideAdIntegrationFactory)"}, {"p":"com.theoplayer.android.api.ads","c":"UniversalAdId","l":"getUniversalAdIdRegistry()","url":"com/theoplayer/android/api/ads/UniversalAdId.html#getUniversalAdIdRegistry()"}, {"p":"com.theoplayer.android.api.ads","c":"UniversalAdId","l":"getUniversalAdIdValue()","url":"com/theoplayer/android/api/ads/UniversalAdId.html#getUniversalAdIdValue()"}, {"p":"com.theoplayer.android.api.ads","c":"NonLinearAd","l":"getClickThrough()","url":"com/theoplayer/android/api/ads/NonLinearAd.html#getClickThrough()"}, {"p":"com.theoplayer.android.api.ads","c":"NonLinearAd","l":"getResourceURI()","url":"com/theoplayer/android/api/ads/NonLinearAd.html#getResourceURI()"}, {"p":"com.theoplayer.android.api.ads","c":"CompanionAd","l":"getAdSlotId()","url":"com/theoplayer/android/api/ads/CompanionAd.html#getAdSlotId()"}, {"p":"com.theoplayer.android.api.ads","c":"CompanionAd","l":"getAltText()","url":"com/theoplayer/android/api/ads/CompanionAd.html#getAltText()"}, {"p":"com.theoplayer.android.api.ads","c":"CompanionAd","l":"getClickThrough()","url":"com/theoplayer/android/api/ads/CompanionAd.html#getClickThrough()"}, {"p":"com.theoplayer.android.api.ads","c":"CompanionAd","l":"getHeight()","url":"com/theoplayer/android/api/ads/CompanionAd.html#getHeight()"}, {"p":"com.theoplayer.android.api.ads","c":"CompanionAd","l":"getResourceURI()","url":"com/theoplayer/android/api/ads/CompanionAd.html#getResourceURI()"}, {"p":"com.theoplayer.android.api.ads","c":"CompanionAd","l":"getWidth()","url":"com/theoplayer/android/api/ads/CompanionAd.html#getWidth()"}, {"p":"com.theoplayer.android.api.ads","c":"CompanionAd","l":"getType()","url":"com/theoplayer/android/api/ads/CompanionAd.html#getType()"}, {"p":"com.theoplayer.android.api.ads","c":"OmidFriendlyObstruction","l":"OmidFriendlyObstruction(View, OmidFriendlyObstructionPurpose, String)","url":"com/theoplayer/android/api/ads/OmidFriendlyObstruction.html#OmidFriendlyObstruction(android.view.View,com.theoplayer.android.api.ads.OmidFriendlyObstructionPurpose,java.lang.String)"}, {"p":"com.theoplayer.android.api.ads","c":"OmidFriendlyObstruction","l":"getView()","url":"com/theoplayer/android/api/ads/OmidFriendlyObstruction.html#getView()"}, {"p":"com.theoplayer.android.api.ads","c":"OmidFriendlyObstruction","l":"getPurpose()","url":"com/theoplayer/android/api/ads/OmidFriendlyObstruction.html#getPurpose()"}, {"p":"com.theoplayer.android.api.ads","c":"OmidFriendlyObstruction","l":"getReasonString()","url":"com/theoplayer/android/api/ads/OmidFriendlyObstruction.html#getReasonString()"}, {"p":"com.theoplayer.android.api.ads","c":"MediaFile.Builder","l":"MediaFile.Builder()","url":"com/theoplayer/android/api/ads/MediaFile.Builder.html#MediaFile.Builder()"}, {"p":"com.theoplayer.android.api.ads","c":"MediaFile.Builder","l":"resourceURI(String)","url":"com/theoplayer/android/api/ads/MediaFile.Builder.html#resourceURI(java.lang.String)"}, {"p":"com.theoplayer.android.api.ads","c":"MediaFile.Builder","l":"type(String)","url":"com/theoplayer/android/api/ads/MediaFile.Builder.html#type(java.lang.String)"}, {"p":"com.theoplayer.android.api.ads","c":"MediaFile.Builder","l":"delivery(String)","url":"com/theoplayer/android/api/ads/MediaFile.Builder.html#delivery(java.lang.String)"}, {"p":"com.theoplayer.android.api.ads","c":"MediaFile.Builder","l":"width(Integer)","url":"com/theoplayer/android/api/ads/MediaFile.Builder.html#width(java.lang.Integer)"}, {"p":"com.theoplayer.android.api.ads","c":"MediaFile.Builder","l":"height(Integer)","url":"com/theoplayer/android/api/ads/MediaFile.Builder.html#height(java.lang.Integer)"}, {"p":"com.theoplayer.android.api.ads","c":"MediaFile.Builder","l":"build()","url":"com/theoplayer/android/api/ads/MediaFile.Builder.html#build()"}, {"p":"com.theoplayer.android.api.ads","c":"MediaFile","l":"getDelivery()","url":"com/theoplayer/android/api/ads/MediaFile.html#getDelivery()"}, {"p":"com.theoplayer.android.api.ads","c":"MediaFile","l":"getResourceURI()","url":"com/theoplayer/android/api/ads/MediaFile.html#getResourceURI()"}, {"p":"com.theoplayer.android.api.ads","c":"MediaFile","l":"getType()","url":"com/theoplayer/android/api/ads/MediaFile.html#getType()"}, {"p":"com.theoplayer.android.api.ads","c":"MediaFile","l":"getHeight()","url":"com/theoplayer/android/api/ads/MediaFile.html#getHeight()"}, {"p":"com.theoplayer.android.api.ads","c":"MediaFile","l":"getWidth()","url":"com/theoplayer/android/api/ads/MediaFile.html#getWidth()"}, {"p":"com.theoplayer.android.api.ads","c":"ServerSideAdIntegrationHandler","l":"setSource(SourceDescription)","url":"com/theoplayer/android/api/ads/ServerSideAdIntegrationHandler.html#setSource(com.theoplayer.android.api.source.SourceDescription)"}, {"p":"com.theoplayer.android.api.ads","c":"ServerSideAdIntegrationHandler","l":"skipAd(Ad)","url":"com/theoplayer/android/api/ads/ServerSideAdIntegrationHandler.html#skipAd(com.theoplayer.android.api.ads.Ad)"}, {"p":"com.theoplayer.android.api.ads","c":"ServerSideAdIntegrationHandler","l":"resetSource()","url":"com/theoplayer/android/api/ads/ServerSideAdIntegrationHandler.html#resetSource()"}, {"p":"com.theoplayer.android.api.ads","c":"ServerSideAdIntegrationHandler","l":"destroy()","url":"com/theoplayer/android/api/ads/ServerSideAdIntegrationHandler.html#destroy()"}, {"p":"com.theoplayer.android.api.ads","c":"ServerSideAdIntegrationController","l":"createAd(AdInit, AdBreak)","url":"com/theoplayer/android/api/ads/ServerSideAdIntegrationController.html#createAd(com.theoplayer.android.api.ads.AdInit,com.theoplayer.android.api.ads.AdBreak)"}, {"p":"com.theoplayer.android.api.ads","c":"ServerSideAdIntegrationController","l":"updateAd(Ad, AdInit)","url":"com/theoplayer/android/api/ads/ServerSideAdIntegrationController.html#updateAd(com.theoplayer.android.api.ads.Ad,com.theoplayer.android.api.ads.AdInit)"}, {"p":"com.theoplayer.android.api.ads","c":"ServerSideAdIntegrationController","l":"updateAdProgress(Ad, Double)","url":"com/theoplayer/android/api/ads/ServerSideAdIntegrationController.html#updateAdProgress(com.theoplayer.android.api.ads.Ad,java.lang.Double)"}, {"p":"com.theoplayer.android.api.ads","c":"ServerSideAdIntegrationController","l":"beginAd(Ad)","url":"com/theoplayer/android/api/ads/ServerSideAdIntegrationController.html#beginAd(com.theoplayer.android.api.ads.Ad)"}, {"p":"com.theoplayer.android.api.ads","c":"ServerSideAdIntegrationController","l":"endAd(Ad)","url":"com/theoplayer/android/api/ads/ServerSideAdIntegrationController.html#endAd(com.theoplayer.android.api.ads.Ad)"}, {"p":"com.theoplayer.android.api.ads","c":"ServerSideAdIntegrationController","l":"skipAd(Ad)","url":"com/theoplayer/android/api/ads/ServerSideAdIntegrationController.html#skipAd(com.theoplayer.android.api.ads.Ad)"}, {"p":"com.theoplayer.android.api.ads","c":"ServerSideAdIntegrationController","l":"removeAd(Ad)","url":"com/theoplayer/android/api/ads/ServerSideAdIntegrationController.html#removeAd(com.theoplayer.android.api.ads.Ad)"}, {"p":"com.theoplayer.android.api.ads","c":"ServerSideAdIntegrationController","l":"createAdBreak(AdBreakInit)","url":"com/theoplayer/android/api/ads/ServerSideAdIntegrationController.html#createAdBreak(com.theoplayer.android.api.ads.AdBreakInit)"}, {"p":"com.theoplayer.android.api.ads","c":"ServerSideAdIntegrationController","l":"updateAdBreak(AdBreak, AdBreakInit)","url":"com/theoplayer/android/api/ads/ServerSideAdIntegrationController.html#updateAdBreak(com.theoplayer.android.api.ads.AdBreak,com.theoplayer.android.api.ads.AdBreakInit)"}, {"p":"com.theoplayer.android.api.ads","c":"ServerSideAdIntegrationController","l":"removeAdBreak(AdBreak)","url":"com/theoplayer/android/api/ads/ServerSideAdIntegrationController.html#removeAdBreak(com.theoplayer.android.api.ads.AdBreak)"}, {"p":"com.theoplayer.android.api.ads","c":"ServerSideAdIntegrationController","l":"removeAllAds()","url":"com/theoplayer/android/api/ads/ServerSideAdIntegrationController.html#removeAllAds()"}, {"p":"com.theoplayer.android.api.ads","c":"ServerSideAdIntegrationController","l":"error(Throwable)","url":"com/theoplayer/android/api/ads/ServerSideAdIntegrationController.html#error(java.lang.Throwable)"}, {"p":"com.theoplayer.android.api.ads","c":"ServerSideAdIntegrationController","l":"fatalError(Throwable, ErrorCode)","url":"com/theoplayer/android/api/ads/ServerSideAdIntegrationController.html#fatalError(java.lang.Throwable,com.theoplayer.android.api.error.ErrorCode)"}, {"p":"com.theoplayer.android.api.ads","c":"ServerSideAdIntegrationController","l":"getIntegration()","url":"com/theoplayer/android/api/ads/ServerSideAdIntegrationController.html#getIntegration()"}, {"p":"com.theoplayer.android.api.ads","c":"ServerSideAdIntegrationController","l":"getAds()","url":"com/theoplayer/android/api/ads/ServerSideAdIntegrationController.html#getAds()"}, {"p":"com.theoplayer.android.api.ads","c":"ServerSideAdIntegrationController","l":"getAdBreaks()","url":"com/theoplayer/android/api/ads/ServerSideAdIntegrationController.html#getAdBreaks()"}, {"p":"com.theoplayer.android.api.ads","c":"AdInit","l":"AdInit(String, Integer, Integer, String, Integer, String, String, List, Object)","url":"com/theoplayer/android/api/ads/AdInit.html#AdInit(java.lang.String,java.lang.Integer,java.lang.Integer,java.lang.String,java.lang.Integer,java.lang.String,java.lang.String,java.util.List,java.lang.Object)"}, {"p":"com.theoplayer.android.api.ads","c":"AdInit","l":"AdInit(String, Integer, Integer, String, Integer, String, String, List)","url":"com/theoplayer/android/api/ads/AdInit.html#AdInit(java.lang.String,java.lang.Integer,java.lang.Integer,java.lang.String,java.lang.Integer,java.lang.String,java.lang.String,java.util.List,java.lang.Object)"}, {"p":"com.theoplayer.android.api.ads","c":"AdInit","l":"AdInit(String, Integer, Integer, String, Integer, String, String)","url":"com/theoplayer/android/api/ads/AdInit.html#AdInit(java.lang.String,java.lang.Integer,java.lang.Integer,java.lang.String,java.lang.Integer,java.lang.String,java.lang.String,java.util.List,java.lang.Object)"}, {"p":"com.theoplayer.android.api.ads","c":"AdInit","l":"AdInit(String, Integer, Integer, String, Integer, String)","url":"com/theoplayer/android/api/ads/AdInit.html#AdInit(java.lang.String,java.lang.Integer,java.lang.Integer,java.lang.String,java.lang.Integer,java.lang.String,java.lang.String,java.util.List,java.lang.Object)"}, {"p":"com.theoplayer.android.api.ads","c":"AdInit","l":"AdInit(String, Integer, Integer, String, Integer)","url":"com/theoplayer/android/api/ads/AdInit.html#AdInit(java.lang.String,java.lang.Integer,java.lang.Integer,java.lang.String,java.lang.Integer,java.lang.String,java.lang.String,java.util.List,java.lang.Object)"}, {"p":"com.theoplayer.android.api.ads","c":"AdInit","l":"AdInit(String, Integer, Integer, String)","url":"com/theoplayer/android/api/ads/AdInit.html#AdInit(java.lang.String,java.lang.Integer,java.lang.Integer,java.lang.String,java.lang.Integer,java.lang.String,java.lang.String,java.util.List,java.lang.Object)"}, {"p":"com.theoplayer.android.api.ads","c":"AdInit","l":"AdInit(String, Integer, Integer)","url":"com/theoplayer/android/api/ads/AdInit.html#AdInit(java.lang.String,java.lang.Integer,java.lang.Integer,java.lang.String,java.lang.Integer,java.lang.String,java.lang.String,java.util.List,java.lang.Object)"}, {"p":"com.theoplayer.android.api.ads","c":"AdInit","l":"AdInit(String, Integer)","url":"com/theoplayer/android/api/ads/AdInit.html#AdInit(java.lang.String,java.lang.Integer,java.lang.Integer,java.lang.String,java.lang.Integer,java.lang.String,java.lang.String,java.util.List,java.lang.Object)"}, {"p":"com.theoplayer.android.api.ads","c":"AdInit","l":"AdInit(String)","url":"com/theoplayer/android/api/ads/AdInit.html#AdInit(java.lang.String,java.lang.Integer,java.lang.Integer,java.lang.String,java.lang.Integer,java.lang.String,java.lang.String,java.util.List,java.lang.Object)"}, {"p":"com.theoplayer.android.api.ads","c":"AdInit","l":"AdInit()","url":"com/theoplayer/android/api/ads/AdInit.html#AdInit(java.lang.String,java.lang.Integer,java.lang.Integer,java.lang.String,java.lang.Integer,java.lang.String,java.lang.String,java.util.List,java.lang.Object)"}, {"p":"com.theoplayer.android.api.ads","c":"AdInit","l":"getType()","url":"com/theoplayer/android/api/ads/AdInit.html#getType()"}, {"p":"com.theoplayer.android.api.ads","c":"AdInit","l":"setType(String)","url":"com/theoplayer/android/api/ads/AdInit.html#setType(java.lang.String)"}, {"p":"com.theoplayer.android.api.ads","c":"AdInit","l":"getTimeOffset()","url":"com/theoplayer/android/api/ads/AdInit.html#getTimeOffset()"}, {"p":"com.theoplayer.android.api.ads","c":"AdInit","l":"setTimeOffset(Integer)","url":"com/theoplayer/android/api/ads/AdInit.html#setTimeOffset(java.lang.Integer)"}, {"p":"com.theoplayer.android.api.ads","c":"AdInit","l":"getSkipOffset()","url":"com/theoplayer/android/api/ads/AdInit.html#getSkipOffset()"}, {"p":"com.theoplayer.android.api.ads","c":"AdInit","l":"setSkipOffset(Integer)","url":"com/theoplayer/android/api/ads/AdInit.html#setSkipOffset(java.lang.Integer)"}, {"p":"com.theoplayer.android.api.ads","c":"AdInit","l":"getId()","url":"com/theoplayer/android/api/ads/AdInit.html#getId()"}, {"p":"com.theoplayer.android.api.ads","c":"AdInit","l":"setId(String)","url":"com/theoplayer/android/api/ads/AdInit.html#setId(java.lang.String)"}, {"p":"com.theoplayer.android.api.ads","c":"AdInit","l":"getDuration()","url":"com/theoplayer/android/api/ads/AdInit.html#getDuration()"}, {"p":"com.theoplayer.android.api.ads","c":"AdInit","l":"setDuration(Integer)","url":"com/theoplayer/android/api/ads/AdInit.html#setDuration(java.lang.Integer)"}, {"p":"com.theoplayer.android.api.ads","c":"AdInit","l":"getClickThrough()","url":"com/theoplayer/android/api/ads/AdInit.html#getClickThrough()"}, {"p":"com.theoplayer.android.api.ads","c":"AdInit","l":"setClickThrough(String)","url":"com/theoplayer/android/api/ads/AdInit.html#setClickThrough(java.lang.String)"}, {"p":"com.theoplayer.android.api.ads","c":"AdInit","l":"getResourceURI()","url":"com/theoplayer/android/api/ads/AdInit.html#getResourceURI()"}, {"p":"com.theoplayer.android.api.ads","c":"AdInit","l":"setResourceURI(String)","url":"com/theoplayer/android/api/ads/AdInit.html#setResourceURI(java.lang.String)"}, {"p":"com.theoplayer.android.api.ads","c":"AdInit","l":"getMediaFiles()","url":"com/theoplayer/android/api/ads/AdInit.html#getMediaFiles()"}, {"p":"com.theoplayer.android.api.ads","c":"AdInit","l":"setMediaFiles(List)","url":"com/theoplayer/android/api/ads/AdInit.html#setMediaFiles(java.util.List)"}, {"p":"com.theoplayer.android.api.ads","c":"AdInit","l":"getCustomData()","url":"com/theoplayer/android/api/ads/AdInit.html#getCustomData()"}, {"p":"com.theoplayer.android.api.ads","c":"AdInit","l":"setCustomData(Object)","url":"com/theoplayer/android/api/ads/AdInit.html#setCustomData(java.lang.Object)"}, {"p":"com.theoplayer.android.api.ads","c":"AdBreakInit","l":"AdBreakInit(Integer, Integer, Object)","url":"com/theoplayer/android/api/ads/AdBreakInit.html#AdBreakInit(java.lang.Integer,java.lang.Integer,java.lang.Object)"}, {"p":"com.theoplayer.android.api.ads","c":"AdBreakInit","l":"AdBreakInit(Integer, Integer)","url":"com/theoplayer/android/api/ads/AdBreakInit.html#AdBreakInit(java.lang.Integer,java.lang.Integer,java.lang.Object)"}, {"p":"com.theoplayer.android.api.ads","c":"AdBreakInit","l":"AdBreakInit(Integer)","url":"com/theoplayer/android/api/ads/AdBreakInit.html#AdBreakInit(java.lang.Integer,java.lang.Integer,java.lang.Object)"}, {"p":"com.theoplayer.android.api.ads","c":"AdBreakInit","l":"AdBreakInit()","url":"com/theoplayer/android/api/ads/AdBreakInit.html#AdBreakInit(java.lang.Integer,java.lang.Integer,java.lang.Object)"}, {"p":"com.theoplayer.android.api.ads","c":"AdBreakInit","l":"getTimeOffset()","url":"com/theoplayer/android/api/ads/AdBreakInit.html#getTimeOffset()"}, {"p":"com.theoplayer.android.api.ads","c":"AdBreakInit","l":"getMaxDuration()","url":"com/theoplayer/android/api/ads/AdBreakInit.html#getMaxDuration()"}, {"p":"com.theoplayer.android.api.ads","c":"AdBreakInit","l":"getCustomData()","url":"com/theoplayer/android/api/ads/AdBreakInit.html#getCustomData()"}, {"p":"com.theoplayer.android.api.ads","c":"AdBreakInit","l":"setCustomData(Object)","url":"com/theoplayer/android/api/ads/AdBreakInit.html#setCustomData(java.lang.Object)"}, {"p":"com.theoplayer.android.api.ads","c":"ServerSideAdIntegrationFactory","l":"build(ServerSideAdIntegrationController)","url":"com/theoplayer/android/api/ads/ServerSideAdIntegrationFactory.html#build(com.theoplayer.android.api.ads.ServerSideAdIntegrationController)"}, {"p":"com.theoplayer.android.api.source","c":"GoogleDaiTypedSource.Builder","l":"GoogleDaiTypedSource.Builder(GoogleDaiConfiguration)","url":"com/theoplayer/android/api/source/GoogleDaiTypedSource.Builder.html#GoogleDaiTypedSource.Builder(com.theoplayer.android.api.source.ssai.GoogleDaiConfiguration)"}, {"p":"com.theoplayer.android.api.source","c":"GoogleDaiTypedSource.Builder","l":"build()","url":"com/theoplayer/android/api/source/GoogleDaiTypedSource.Builder.html#build()"}, {"p":"com.theoplayer.android.api.source","c":"AdIntegration","l":"values()","url":"com/theoplayer/android/api/source/AdIntegration.html#values()"}, {"p":"com.theoplayer.android.api.source","c":"AdIntegration","l":"valueOf(String)","url":"com/theoplayer/android/api/source/AdIntegration.html#valueOf(java.lang.String)"}, {"p":"com.theoplayer.android.api.source","c":"AdIntegration","l":"getAdIntegration()","url":"com/theoplayer/android/api/source/AdIntegration.html#getAdIntegration()"}, {"p":"com.theoplayer.android.api.source","c":"SourceDescription.Builder","l":"SourceDescription.Builder(Array)","url":"com/theoplayer/android/api/source/SourceDescription.Builder.html#SourceDescription.Builder(kotlin.Array)"}, {"p":"com.theoplayer.android.api.source","c":"SourceDescription.Builder","l":"SourceDescription.Builder(Array)","url":"com/theoplayer/android/api/source/SourceDescription.Builder.html#SourceDescription.Builder(kotlin.Array)"}, {"p":"com.theoplayer.android.api.source","c":"SourceDescription.Builder","l":"ads(Array)","url":"com/theoplayer/android/api/source/SourceDescription.Builder.html#ads(kotlin.Array)"}, {"p":"com.theoplayer.android.api.source","c":"SourceDescription.Builder","l":"textTracks(Array)","url":"com/theoplayer/android/api/source/SourceDescription.Builder.html#textTracks(kotlin.Array)"}, {"p":"com.theoplayer.android.api.source","c":"SourceDescription.Builder","l":"textTracks(Array)","url":"com/theoplayer/android/api/source/SourceDescription.Builder.html#textTracks(kotlin.Array)"}, {"p":"com.theoplayer.android.api.source","c":"SourceDescription.Builder","l":"poster(String)","url":"com/theoplayer/android/api/source/SourceDescription.Builder.html#poster(java.lang.String)"}, {"p":"com.theoplayer.android.api.source","c":"SourceDescription.Builder","l":"metadata(MetadataDescription)","url":"com/theoplayer/android/api/source/SourceDescription.Builder.html#metadata(com.theoplayer.android.api.source.metadata.MetadataDescription)"}, {"p":"com.theoplayer.android.api.source","c":"SourceDescription.Builder","l":"timeServer(String)","url":"com/theoplayer/android/api/source/SourceDescription.Builder.html#timeServer(java.lang.String)"}, {"p":"com.theoplayer.android.api.source","c":"SourceDescription.Builder","l":"build()","url":"com/theoplayer/android/api/source/SourceDescription.Builder.html#build()"}, {"p":"com.theoplayer.android.api.source","c":"SourceDescription","l":"SourceDescription(List, List, List, String, MetadataDescription, String)","url":"com/theoplayer/android/api/source/SourceDescription.html#SourceDescription(java.util.List,java.util.List,java.util.List,java.lang.String,com.theoplayer.android.api.source.metadata.MetadataDescription,java.lang.String)"}, {"p":"com.theoplayer.android.api.source","c":"SourceDescription","l":"getSources()","url":"com/theoplayer/android/api/source/SourceDescription.html#getSources()"}, {"p":"com.theoplayer.android.api.source","c":"SourceDescription","l":"getAds()","url":"com/theoplayer/android/api/source/SourceDescription.html#getAds()"}, {"p":"com.theoplayer.android.api.source","c":"SourceDescription","l":"getTextTracks()","url":"com/theoplayer/android/api/source/SourceDescription.html#getTextTracks()"}, {"p":"com.theoplayer.android.api.source","c":"SourceDescription","l":"getPoster()","url":"com/theoplayer/android/api/source/SourceDescription.html#getPoster()"}, {"p":"com.theoplayer.android.api.source","c":"SourceDescription","l":"getMetadata()","url":"com/theoplayer/android/api/source/SourceDescription.html#getMetadata()"}, {"p":"com.theoplayer.android.api.source","c":"SourceDescription","l":"getTimeServer()","url":"com/theoplayer/android/api/source/SourceDescription.html#getTimeServer()"}, {"p":"com.theoplayer.android.api.source","c":"SourceDescription","l":"replaceAds(SourceDescription, List)","url":"com/theoplayer/android/api/source/SourceDescription.html#replaceAds(com.theoplayer.android.api.source.SourceDescription,java.util.List)"}, {"p":"com.theoplayer.android.api.source","c":"SourceDescription","l":"replaceSources(SourceDescription, List)","url":"com/theoplayer/android/api/source/SourceDescription.html#replaceSources(com.theoplayer.android.api.source.SourceDescription,java.util.List)"}, {"p":"com.theoplayer.android.api.source","c":"SourceDescription","l":"equals(Object)","url":"com/theoplayer/android/api/source/SourceDescription.html#equals(Object)"}, {"p":"com.theoplayer.android.api.source","c":"SourceDescription","l":"hashCode()","url":"com/theoplayer/android/api/source/SourceDescription.html#hashCode()"}, {"p":"com.theoplayer.android.api.source","c":"TypedSource.Builder","l":"TypedSource.Builder(String)","url":"com/theoplayer/android/api/source/TypedSource.Builder.html#TypedSource.Builder(java.lang.String)"}, {"p":"com.theoplayer.android.api.source","c":"TypedSource.Builder","l":"drm(DRMConfiguration)","url":"com/theoplayer/android/api/source/mediatailor/MediaTailorSource.Builder.html#drm(com.theoplayer.android.api.source.drm.DRMConfiguration)"}, {"p":"com.theoplayer.android.api.source","c":"TypedSource.Builder","l":"type(SourceType)","url":"com/theoplayer/android/api/source/mediatailor/MediaTailorSource.Builder.html#type(com.theoplayer.android.api.source.SourceType)"}, {"p":"com.theoplayer.android.api.source","c":"TypedSource.Builder","l":"headers(Map)","url":"com/theoplayer/android/api/source/mediatailor/MediaTailorSource.Builder.html#headers(java.util.Map)"}, {"p":"com.theoplayer.android.api.source","c":"TypedSource.Builder","l":"liveOffset(Double)","url":"com/theoplayer/android/api/source/mediatailor/MediaTailorSource.Builder.html#liveOffset(java.lang.Double)"}, {"p":"com.theoplayer.android.api.source","c":"TypedSource.Builder","l":"ssai(SsaiDescription)","url":"com/theoplayer/android/api/source/mediatailor/MediaTailorSource.Builder.html#ssai(com.theoplayer.android.api.source.ssai.SsaiDescription)"}, {"p":"com.theoplayer.android.api.source","c":"TypedSource.Builder","l":"hlsDateRange(boolean)","url":"com/theoplayer/android/api/source/mediatailor/MediaTailorSource.Builder.html#hlsDateRange(boolean)"}, {"p":"com.theoplayer.android.api.source","c":"TypedSource.Builder","l":"timeServer(String)","url":"com/theoplayer/android/api/source/mediatailor/MediaTailorSource.Builder.html#timeServer(java.lang.String)"}, {"p":"com.theoplayer.android.api.source","c":"TypedSource.Builder","l":"lowLatency(Boolean)","url":"com/theoplayer/android/api/source/mediatailor/MediaTailorSource.Builder.html#lowLatency(java.lang.Boolean)"}, {"p":"com.theoplayer.android.api.source","c":"TypedSource.Builder","l":"latencyConfiguration(LatencyConfiguration)","url":"com/theoplayer/android/api/source/mediatailor/MediaTailorSource.Builder.html#latencyConfiguration(com.theoplayer.android.api.latency.LatencyConfiguration)"}, {"p":"com.theoplayer.android.api.source","c":"TypedSource.Builder","l":"hls(HlsPlaybackConfiguration)","url":"com/theoplayer/android/api/source/mediatailor/MediaTailorSource.Builder.html#hls(com.theoplayer.android.api.source.hls.HlsPlaybackConfiguration)"}, {"p":"com.theoplayer.android.api.source","c":"TypedSource.Builder","l":"dash(DashPlaybackConfiguration)","url":"com/theoplayer/android/api/source/mediatailor/MediaTailorSource.Builder.html#dash(com.theoplayer.android.api.source.dash.DashPlaybackConfiguration)"}, {"p":"com.theoplayer.android.api.source","c":"TypedSource.Builder","l":"build()","url":"com/theoplayer/android/api/source/TypedSource.Builder.html#build()"}, {"p":"com.theoplayer.android.api.source","c":"TypedSource","l":"TypedSource(String, DRMConfiguration, SourceType, Map, Double, SsaiDescription, Boolean, String, Boolean, LatencyConfiguration, HlsPlaybackConfiguration, DashPlaybackConfiguration)","url":"com/theoplayer/android/api/source/TypedSource.html#TypedSource(java.lang.String,com.theoplayer.android.api.source.drm.DRMConfiguration,com.theoplayer.android.api.source.SourceType,java.util.Map,java.lang.Double,com.theoplayer.android.api.source.ssai.SsaiDescription,java.lang.Boolean,java.lang.String,java.lang.Boolean,com.theoplayer.android.api.latency.LatencyConfiguration,com.theoplayer.android.api.source.hls.HlsPlaybackConfiguration,com.theoplayer.android.api.source.dash.DashPlaybackConfiguration)"}, {"p":"com.theoplayer.android.api.source","c":"TypedSource","l":"getSrc()","url":"com/theoplayer/android/api/source/mediatailor/MediaTailorSource.html#getSrc()"}, {"p":"com.theoplayer.android.api.source","c":"TypedSource","l":"getDrm()","url":"com/theoplayer/android/api/source/mediatailor/MediaTailorSource.html#getDrm()"}, {"p":"com.theoplayer.android.api.source","c":"TypedSource","l":"getType()","url":"com/theoplayer/android/api/source/mediatailor/MediaTailorSource.html#getType()"}, {"p":"com.theoplayer.android.api.source","c":"TypedSource","l":"getHeaders()","url":"com/theoplayer/android/api/source/mediatailor/MediaTailorSource.html#getHeaders()"}, {"p":"com.theoplayer.android.api.source","c":"TypedSource","l":"getLiveOffset()","url":"com/theoplayer/android/api/source/mediatailor/MediaTailorSource.html#getLiveOffset()"}, {"p":"com.theoplayer.android.api.source","c":"TypedSource","l":"getSsai()","url":"com/theoplayer/android/api/source/mediatailor/MediaTailorSource.html#getSsai()"}, {"p":"com.theoplayer.android.api.source","c":"TypedSource","l":"getTimeServer()","url":"com/theoplayer/android/api/source/mediatailor/MediaTailorSource.html#getTimeServer()"}, {"p":"com.theoplayer.android.api.source","c":"TypedSource","l":"getLatencyConfiguration()","url":"com/theoplayer/android/api/source/mediatailor/MediaTailorSource.html#getLatencyConfiguration()"}, {"p":"com.theoplayer.android.api.source","c":"TypedSource","l":"getHls()","url":"com/theoplayer/android/api/source/mediatailor/MediaTailorSource.html#getHls()"}, {"p":"com.theoplayer.android.api.source","c":"TypedSource","l":"getDash()","url":"com/theoplayer/android/api/source/mediatailor/MediaTailorSource.html#getDash()"}, {"p":"com.theoplayer.android.api.source","c":"TypedSource","l":"isHlsDateRange()","url":"com/theoplayer/android/api/source/mediatailor/MediaTailorSource.html#isHlsDateRange()"}, {"p":"com.theoplayer.android.api.source","c":"TypedSource","l":"isLowLatency()","url":"com/theoplayer/android/api/source/mediatailor/MediaTailorSource.html#isLowLatency()"}, {"p":"com.theoplayer.android.api.source","c":"TypedSource","l":"replaceSource(TypedSource, String)","url":"com/theoplayer/android/api/source/mediatailor/MediaTailorSource.html#replaceSource(com.theoplayer.android.api.source.TypedSource,java.lang.String)"}, {"p":"com.theoplayer.android.api.source","c":"TypedSource","l":"replaceType(TypedSource, SourceType)","url":"com/theoplayer/android/api/source/mediatailor/MediaTailorSource.html#replaceType(com.theoplayer.android.api.source.TypedSource,com.theoplayer.android.api.source.SourceType)"}, {"p":"com.theoplayer.android.api.source","c":"TypedSource","l":"equals(Object)","url":"com/theoplayer/android/api/source/TypedSource.html#equals(Object)"}, {"p":"com.theoplayer.android.api.source","c":"TypedSource","l":"hashCode()","url":"com/theoplayer/android/api/source/TypedSource.html#hashCode()"}, {"p":"com.theoplayer.android.api.source","c":"TextTrackDescription.Builder","l":"TextTrackDescription.Builder(String)","url":"com/theoplayer/android/api/source/TextTrackDescription.Builder.html#TextTrackDescription.Builder(java.lang.String)"}, {"p":"com.theoplayer.android.api.source","c":"TextTrackDescription.Builder","l":"kind(TextTrackKind)","url":"com/theoplayer/android/api/source/TextTrackDescription.Builder.html#kind(com.theoplayer.android.api.player.track.texttrack.TextTrackKind)"}, {"p":"com.theoplayer.android.api.source","c":"TextTrackDescription.Builder","l":"srclang(String)","url":"com/theoplayer/android/api/source/TextTrackDescription.Builder.html#srclang(java.lang.String)"}, {"p":"com.theoplayer.android.api.source","c":"TextTrackDescription.Builder","l":"label(String)","url":"com/theoplayer/android/api/source/TextTrackDescription.Builder.html#label(java.lang.String)"}, {"p":"com.theoplayer.android.api.source","c":"TextTrackDescription.Builder","l":"build()","url":"com/theoplayer/android/api/source/TextTrackDescription.Builder.html#build()"}, {"p":"com.theoplayer.android.api.source","c":"TextTrackDescription.Builder","l":"isDefault(boolean)","url":"com/theoplayer/android/api/source/TextTrackDescription.Builder.html#isDefault(boolean)"}, {"p":"com.theoplayer.android.api.source","c":"TextTrackDescription","l":"getSrc()","url":"com/theoplayer/android/api/source/TextTrackDescription.html#getSrc()"}, {"p":"com.theoplayer.android.api.source","c":"TextTrackDescription","l":"isDefault()","url":"com/theoplayer/android/api/source/TextTrackDescription.html#isDefault()"}, {"p":"com.theoplayer.android.api.source","c":"TextTrackDescription","l":"getKind()","url":"com/theoplayer/android/api/source/TextTrackDescription.html#getKind()"}, {"p":"com.theoplayer.android.api.source","c":"TextTrackDescription","l":"getSrclang()","url":"com/theoplayer/android/api/source/TextTrackDescription.html#getSrclang()"}, {"p":"com.theoplayer.android.api.source","c":"TextTrackDescription","l":"getLabel()","url":"com/theoplayer/android/api/source/TextTrackDescription.html#getLabel()"}, {"p":"com.theoplayer.android.api.source","c":"SourceType","l":"getMimeType()","url":"com/theoplayer/android/api/source/SourceType.html#getMimeType()"}, {"p":"com.theoplayer.android.api.source","c":"SourceType","l":"values()","url":"com/theoplayer/android/api/source/SourceType.html#values()"}, {"p":"com.theoplayer.android.api.source","c":"SourceType","l":"valueOf(String)","url":"com/theoplayer/android/api/source/SourceType.html#valueOf(java.lang.String)"}, {"p":"com.theoplayer.android.api.source.mediatailor","c":"MediaTailorSource.Builder","l":"MediaTailorSource.Builder(String)","url":"com/theoplayer/android/api/source/mediatailor/MediaTailorSource.Builder.html#MediaTailorSource.Builder(java.lang.String)"}, {"p":"com.theoplayer.android.api.source.mediatailor","c":"MediaTailorSource.Builder","l":"adParams(Map)","url":"com/theoplayer/android/api/source/mediatailor/MediaTailorSource.Builder.html#adParams(java.util.Map)"}, {"p":"com.theoplayer.android.api.source.mediatailor","c":"MediaTailorSource.Builder","l":"build()","url":"com/theoplayer/android/api/source/mediatailor/MediaTailorSource.Builder.html#build()"}, {"p":"com.theoplayer.android.api.source.mediatailor","c":"MediaTailorSource","l":"getAdParams()","url":"com/theoplayer/android/api/source/mediatailor/MediaTailorSource.html#getAdParams()"}, {"p":"com.theoplayer.android.api.source.mediatailor","c":"MediaTailorSource","l":"equals(Object)","url":"com/theoplayer/android/api/source/mediatailor/MediaTailorSource.html#equals(Object)"}, {"p":"com.theoplayer.android.api.source.mediatailor","c":"MediaTailorSource","l":"hashCode()","url":"com/theoplayer/android/api/source/mediatailor/MediaTailorSource.html#hashCode()"}, {"p":"com.theoplayer.android.api.source.metadata","c":"ChromecastMetadataImage","l":"ChromecastMetadataImage(String)","url":"com/theoplayer/android/api/source/metadata/ChromecastMetadataImage.html#ChromecastMetadataImage(java.lang.String)"}, {"p":"com.theoplayer.android.api.source.metadata","c":"ChromecastMetadataImage","l":"ChromecastMetadataImage(String, Integer, Integer)","url":"com/theoplayer/android/api/source/metadata/ChromecastMetadataImage.html#ChromecastMetadataImage(java.lang.String,java.lang.Integer,java.lang.Integer)"}, {"p":"com.theoplayer.android.api.source.metadata","c":"ChromecastMetadataImage","l":"getSrc()","url":"com/theoplayer/android/api/source/metadata/ChromecastMetadataImage.html#getSrc()"}, {"p":"com.theoplayer.android.api.source.metadata","c":"ChromecastMetadataImage","l":"getWidth()","url":"com/theoplayer/android/api/source/metadata/ChromecastMetadataImage.html#getWidth()"}, {"p":"com.theoplayer.android.api.source.metadata","c":"ChromecastMetadataImage","l":"getHeight()","url":"com/theoplayer/android/api/source/metadata/ChromecastMetadataImage.html#getHeight()"}, {"p":"com.theoplayer.android.api.source.metadata","c":"ChromecastMetadataType","l":"fromName(String)","url":"com/theoplayer/android/api/source/metadata/ChromecastMetadataType.html#fromName(java.lang.String)"}, {"p":"com.theoplayer.android.api.source.metadata","c":"ChromecastMetadataType","l":"values()","url":"com/theoplayer/android/api/source/metadata/ChromecastMetadataType.html#values()"}, {"p":"com.theoplayer.android.api.source.metadata","c":"ChromecastMetadataType","l":"valueOf(String)","url":"com/theoplayer/android/api/source/metadata/ChromecastMetadataType.html#valueOf(java.lang.String)"}, {"p":"com.theoplayer.android.api.source.metadata","c":"ChromecastMetadataType","l":"getType()","url":"com/theoplayer/android/api/source/metadata/ChromecastMetadataType.html#getType()"}, {"p":"com.theoplayer.android.api.source.metadata","c":"ChromecastMetadataType","l":"getNativeType()","url":"com/theoplayer/android/api/source/metadata/ChromecastMetadataType.html#getNativeType()"}, {"p":"com.theoplayer.android.api.source.metadata","c":"ChromecastMetadataDescription.Builder","l":"ChromecastMetadataDescription.Builder()","url":"com/theoplayer/android/api/source/metadata/ChromecastMetadataDescription.Builder.html#ChromecastMetadataDescription.Builder()"}, {"p":"com.theoplayer.android.api.source.metadata","c":"ChromecastMetadataDescription.Builder","l":"images(Array)","url":"com/theoplayer/android/api/source/metadata/ChromecastMetadataDescription.Builder.html#images(kotlin.Array)"}, {"p":"com.theoplayer.android.api.source.metadata","c":"ChromecastMetadataDescription.Builder","l":"images(Array)","url":"com/theoplayer/android/api/source/metadata/ChromecastMetadataDescription.Builder.html#images(kotlin.Array)"}, {"p":"com.theoplayer.android.api.source.metadata","c":"ChromecastMetadataDescription.Builder","l":"type(ChromecastMetadataType)","url":"com/theoplayer/android/api/source/metadata/ChromecastMetadataDescription.Builder.html#type(com.theoplayer.android.api.source.metadata.ChromecastMetadataType)"}, {"p":"com.theoplayer.android.api.source.metadata","c":"ChromecastMetadataDescription.Builder","l":"releaseDate(String)","url":"com/theoplayer/android/api/source/metadata/ChromecastMetadataDescription.Builder.html#releaseDate(java.lang.String)"}, {"p":"com.theoplayer.android.api.source.metadata","c":"ChromecastMetadataDescription.Builder","l":"title(String)","url":"com/theoplayer/android/api/source/metadata/ChromecastMetadataDescription.Builder.html#title(java.lang.String)"}, {"p":"com.theoplayer.android.api.source.metadata","c":"ChromecastMetadataDescription.Builder","l":"subtitle(String)","url":"com/theoplayer/android/api/source/metadata/ChromecastMetadataDescription.Builder.html#subtitle(java.lang.String)"}, {"p":"com.theoplayer.android.api.source.metadata","c":"ChromecastMetadataDescription.Builder","l":"build()","url":"com/theoplayer/android/api/source/metadata/ChromecastMetadataDescription.Builder.html#build()"}, {"p":"com.theoplayer.android.api.source.metadata","c":"ChromecastMetadataDescription","l":"getImages()","url":"com/theoplayer/android/api/source/metadata/ChromecastMetadataDescription.html#getImages()"}, {"p":"com.theoplayer.android.api.source.metadata","c":"ChromecastMetadataDescription","l":"getReleaseDate()","url":"com/theoplayer/android/api/source/metadata/ChromecastMetadataDescription.html#getReleaseDate()"}, {"p":"com.theoplayer.android.api.source.metadata","c":"ChromecastMetadataDescription","l":"getTitle()","url":"com/theoplayer/android/api/source/metadata/ChromecastMetadataDescription.html#getTitle()"}, {"p":"com.theoplayer.android.api.source.metadata","c":"ChromecastMetadataDescription","l":"getSubtitle()","url":"com/theoplayer/android/api/source/metadata/ChromecastMetadataDescription.html#getSubtitle()"}, {"p":"com.theoplayer.android.api.source.metadata","c":"ChromecastMetadataDescription","l":"getType()","url":"com/theoplayer/android/api/source/metadata/ChromecastMetadataDescription.html#getType()"}, {"p":"com.theoplayer.android.api.source.metadata","c":"MetadataDescription","l":"MetadataDescription()","url":"com/theoplayer/android/api/source/metadata/MetadataDescription.html#MetadataDescription()"}, {"p":"com.theoplayer.android.api.source.metadata","c":"MetadataDescription","l":"MetadataDescription(Map)","url":"com/theoplayer/android/api/source/metadata/MetadataDescription.html#MetadataDescription(java.util.Map)"}, {"p":"com.theoplayer.android.api.settings","c":"SslSettings","l":"setKeyStore(KeyStore)","url":"com/theoplayer/android/api/settings/SslSettings.html#setKeyStore(java.security.KeyStore)"}, {"p":"com.theoplayer.android.api.settings","c":"PlaybackSettings","l":"useFastStartup(boolean)","url":"com/theoplayer/android/api/settings/PlaybackSettings.html#useFastStartup(boolean)"}, {"p":"com.theoplayer.android.api.settings","c":"PlaybackSettings","l":"setLipSyncCorrection(long)","url":"com/theoplayer/android/api/settings/PlaybackSettings.html#setLipSyncCorrection(long)"}, {"p":"com.theoplayer.android.api.settings","c":"PlaybackSettings","l":"setDecoderSelectionHelper(DecoderSelectionHelper)","url":"com/theoplayer/android/api/settings/PlaybackSettings.html#setDecoderSelectionHelper(com.theoplayer.android.api.settings.DecoderSelectionHelper)"}, {"p":"com.theoplayer.android.api.settings","c":"PlaybackSettings","l":"getDecoderName(DecoderType, String, boolean)","url":"com/theoplayer/android/api/settings/PlaybackSettings.html#getDecoderName(com.theoplayer.android.api.settings.DecoderType,java.lang.String,boolean)"}, {"p":"com.theoplayer.android.api.settings","c":"DecoderType","l":"values()","url":"com/theoplayer/android/api/settings/DecoderType.html#values()"}, {"p":"com.theoplayer.android.api.settings","c":"DecoderType","l":"valueOf(String)","url":"com/theoplayer/android/api/settings/DecoderType.html#valueOf(java.lang.String)"}, {"p":"com.theoplayer.android.api.settings","c":"DecoderSelectionHelper","l":"DecoderSelectionHelper()","url":"com/theoplayer/android/api/settings/DecoderSelectionHelper.html#DecoderSelectionHelper()"}, {"p":"com.theoplayer.android.api.settings","c":"DecoderSelectionHelper","l":"shouldUseDecoder(DecoderType, String, MediaCodecInfo)","url":"com/theoplayer/android/api/settings/DecoderSelectionHelper.html#shouldUseDecoder(com.theoplayer.android.api.settings.DecoderType,java.lang.String,android.media.MediaCodecInfo)"}, {"p":"com.theoplayer.android.api.settings","c":"DecoderSelectionHelper","l":"shouldApplySecureExtensionWorkaround(DecoderType, String, MediaCodecInfo)","url":"com/theoplayer/android/api/settings/DecoderSelectionHelper.html#shouldApplySecureExtensionWorkaround(com.theoplayer.android.api.settings.DecoderType,java.lang.String,android.media.MediaCodecInfo)"}, {"p":"com.theoplayer.android.api.settings","c":"DecoderSelectionHelper","l":"shouldOverrideBuiltInDecoderSelectionLogic()","url":"com/theoplayer/android/api/settings/DecoderSelectionHelper.html#shouldOverrideBuiltInDecoderSelectionLogic()"}, {"p":"com.theoplayer.android.api.settings","c":"DecoderSelectionHelper","l":"isRepresentationSupported(String, String, double, int, int, double, double)","url":"com/theoplayer/android/api/settings/DecoderSelectionHelper.html#isRepresentationSupported(java.lang.String,java.lang.String,double,int,int,double,double)"}, {"p":"com.theoplayer.android.api.cache","c":"CachingTaskProgress","l":"getDuration()","url":"com/theoplayer/android/api/cache/CachingTaskProgress.html#getDuration()"}, {"p":"com.theoplayer.android.api.cache","c":"CachingTaskProgress","l":"getBytes()","url":"com/theoplayer/android/api/cache/CachingTaskProgress.html#getBytes()"}, {"p":"com.theoplayer.android.api.cache","c":"CachingTaskProgress","l":"getBytesCached()","url":"com/theoplayer/android/api/cache/CachingTaskProgress.html#getBytesCached()"}, {"p":"com.theoplayer.android.api.cache","c":"CachingTaskProgress","l":"getCached()","url":"com/theoplayer/android/api/cache/CachingTaskProgress.html#getCached()"}, {"p":"com.theoplayer.android.api.cache","c":"CachingTaskProgress","l":"getSecondsCached()","url":"com/theoplayer/android/api/cache/CachingTaskProgress.html#getSecondsCached()"}, {"p":"com.theoplayer.android.api.cache","c":"CachingTaskProgress","l":"getPercentageCached()","url":"com/theoplayer/android/api/cache/CachingTaskProgress.html#getPercentageCached()"}, {"p":"com.theoplayer.android.api.cache","c":"CacheStatus","l":"values()","url":"com/theoplayer/android/api/cache/CacheStatus.html#values()"}, {"p":"com.theoplayer.android.api.cache","c":"CacheStatus","l":"valueOf(String)","url":"com/theoplayer/android/api/cache/CacheStatus.html#valueOf(java.lang.String)"}, {"p":"com.theoplayer.android.api.cache","c":"CachingParameters.Builder","l":"CachingParameters.Builder()","url":"com/theoplayer/android/api/cache/CachingParameters.Builder.html#CachingParameters.Builder()"}, {"p":"com.theoplayer.android.api.cache","c":"CachingParameters.Builder","l":"amount(String)","url":"com/theoplayer/android/api/cache/CachingParameters.Builder.html#amount(java.lang.String)"}, {"p":"com.theoplayer.android.api.cache","c":"CachingParameters.Builder","l":"expirationDate(Date)","url":"com/theoplayer/android/api/cache/CachingParameters.Builder.html#expirationDate(java.util.Date)"}, {"p":"com.theoplayer.android.api.cache","c":"CachingParameters.Builder","l":"bandwidth(Long)","url":"com/theoplayer/android/api/cache/CachingParameters.Builder.html#bandwidth(java.lang.Long)"}, {"p":"com.theoplayer.android.api.cache","c":"CachingParameters.Builder","l":"preferredTrackSelection(CachingPreferredTrackSelection)","url":"com/theoplayer/android/api/cache/CachingParameters.Builder.html#preferredTrackSelection(com.theoplayer.android.api.cache.CachingPreferredTrackSelection)"}, {"p":"com.theoplayer.android.api.cache","c":"CachingParameters.Builder","l":"build()","url":"com/theoplayer/android/api/cache/CachingParameters.Builder.html#build()"}, {"p":"com.theoplayer.android.api.cache","c":"CachingParameters","l":"getAmount()","url":"com/theoplayer/android/api/cache/CachingParameters.html#getAmount()"}, {"p":"com.theoplayer.android.api.cache","c":"CachingParameters","l":"getExpirationDate()","url":"com/theoplayer/android/api/cache/CachingParameters.html#getExpirationDate()"}, {"p":"com.theoplayer.android.api.cache","c":"CachingParameters","l":"getBandwidth()","url":"com/theoplayer/android/api/cache/CachingParameters.html#getBandwidth()"}, {"p":"com.theoplayer.android.api.cache","c":"CachingParameters","l":"getPreferredTrackSelection()","url":"com/theoplayer/android/api/cache/CachingParameters.html#getPreferredTrackSelection()"}, {"p":"com.theoplayer.android.api.cache","c":"CachingTaskStatus","l":"values()","url":"com/theoplayer/android/api/cache/CachingTaskStatus.html#values()"}, {"p":"com.theoplayer.android.api.cache","c":"CachingTaskStatus","l":"valueOf(String)","url":"com/theoplayer/android/api/cache/CachingTaskStatus.html#valueOf(java.lang.String)"}, {"p":"com.theoplayer.android.api.cache","c":"CachingTask","l":"getId()","url":"com/theoplayer/android/api/cache/CachingTask.html#getId()"}, {"p":"com.theoplayer.android.api.cache","c":"CachingTask","l":"getStatus()","url":"com/theoplayer/android/api/cache/CachingTask.html#getStatus()"}, {"p":"com.theoplayer.android.api.cache","c":"CachingTask","l":"getSource()","url":"com/theoplayer/android/api/cache/CachingTask.html#getSource()"}, {"p":"com.theoplayer.android.api.cache","c":"CachingTask","l":"getParameters()","url":"com/theoplayer/android/api/cache/CachingTask.html#getParameters()"}, {"p":"com.theoplayer.android.api.cache","c":"CachingTask","l":"getDuration()","url":"com/theoplayer/android/api/cache/CachingTask.html#getDuration()"}, {"p":"com.theoplayer.android.api.cache","c":"CachingTask","l":"getBytes()","url":"com/theoplayer/android/api/cache/CachingTask.html#getBytes()"}, {"p":"com.theoplayer.android.api.cache","c":"CachingTask","l":"getBytesCached()","url":"com/theoplayer/android/api/cache/CachingTask.html#getBytesCached()"}, {"p":"com.theoplayer.android.api.cache","c":"CachingTask","l":"getCached()","url":"com/theoplayer/android/api/cache/CachingTask.html#getCached()"}, {"p":"com.theoplayer.android.api.cache","c":"CachingTask","l":"getSecondsCached()","url":"com/theoplayer/android/api/cache/CachingTask.html#getSecondsCached()"}, {"p":"com.theoplayer.android.api.cache","c":"CachingTask","l":"getPercentageCached()","url":"com/theoplayer/android/api/cache/CachingTask.html#getPercentageCached()"}, {"p":"com.theoplayer.android.api.cache","c":"CachingTask","l":"getStatusNotificationId()","url":"com/theoplayer/android/api/cache/CachingTask.html#getStatusNotificationId()"}, {"p":"com.theoplayer.android.api.cache","c":"CachingTask","l":"getProgressNotificationId()","url":"com/theoplayer/android/api/cache/CachingTask.html#getProgressNotificationId()"}, {"p":"com.theoplayer.android.api.cache","c":"CachingTask","l":"license()","url":"com/theoplayer/android/api/cache/CachingTask.html#license()"}, {"p":"com.theoplayer.android.api.cache","c":"CachingTask","l":"start()","url":"com/theoplayer/android/api/cache/CachingTask.html#start()"}, {"p":"com.theoplayer.android.api.cache","c":"CachingTask","l":"pause()","url":"com/theoplayer/android/api/cache/CachingTask.html#pause()"}, {"p":"com.theoplayer.android.api.cache","c":"CachingTask","l":"remove()","url":"com/theoplayer/android/api/cache/CachingTask.html#remove()"}, {"p":"com.theoplayer.android.api.cache","c":"CachingTask","l":"getError()","url":"com/theoplayer/android/api/cache/CachingTask.html#getError()"}, {"p":"com.theoplayer.android.api.cache","c":"CachingTaskList","l":"getTaskById(String)","url":"com/theoplayer/android/api/cache/CachingTaskList.html#getTaskById(java.lang.String)"}, {"p":"com.theoplayer.android.api.cache","c":"CachingTaskLicense","l":"renew()","url":"com/theoplayer/android/api/cache/CachingTaskLicense.html#renew()"}, {"p":"com.theoplayer.android.api.cache","c":"CachingTaskLicense","l":"renew(DRMConfiguration)","url":"com/theoplayer/android/api/cache/CachingTaskLicense.html#renew(com.theoplayer.android.api.source.drm.DRMConfiguration)"}, {"p":"com.theoplayer.android.api.cache","c":"CachingPreferredTrackSelection.Builder","l":"CachingPreferredTrackSelection.Builder()","url":"com/theoplayer/android/api/cache/CachingPreferredTrackSelection.Builder.html#CachingPreferredTrackSelection.Builder()"}, {"p":"com.theoplayer.android.api.cache","c":"CachingPreferredTrackSelection.Builder","l":"audioTrackSelection(Array)","url":"com/theoplayer/android/api/cache/CachingPreferredTrackSelection.Builder.html#audioTrackSelection(kotlin.Array)"}, {"p":"com.theoplayer.android.api.cache","c":"CachingPreferredTrackSelection.Builder","l":"textTrackSelection(Array)","url":"com/theoplayer/android/api/cache/CachingPreferredTrackSelection.Builder.html#textTrackSelection(kotlin.Array)"}, {"p":"com.theoplayer.android.api.cache","c":"CachingPreferredTrackSelection.Builder","l":"build()","url":"com/theoplayer/android/api/cache/CachingPreferredTrackSelection.Builder.html#build()"}, {"p":"com.theoplayer.android.api.cache","c":"CachingPreferredTrackSelection","l":"getAudioTrackSelection()","url":"com/theoplayer/android/api/cache/CachingPreferredTrackSelection.html#getAudioTrackSelection()"}, {"p":"com.theoplayer.android.api.cache","c":"CachingPreferredTrackSelection","l":"getTextTrackSelection()","url":"com/theoplayer/android/api/cache/CachingPreferredTrackSelection.html#getTextTrackSelection()"}, {"p":"com.theoplayer.android.api.cache","c":"CachingPreferredTrackSelection","l":"toString()","url":"com/theoplayer/android/api/cache/CachingPreferredTrackSelection.html#toString()"}, {"p":"com.theoplayer.android.api.cache","c":"CachingTaskError","l":"CachingTaskError(ErrorCode, String)","url":"com/theoplayer/android/api/cache/CachingTaskError.html#CachingTaskError(com.theoplayer.android.api.error.ErrorCode,java.lang.String)"}, {"p":"com.theoplayer.android.api.cache","c":"CachingTaskError","l":"getErrorCode()","url":"com/theoplayer/android/api/cache/CachingTaskError.html#getErrorCode()"}, {"p":"com.theoplayer.android.api.cache","c":"CachingTaskError","l":"getDescription()","url":"com/theoplayer/android/api/cache/CachingTaskError.html#getDescription()"}, {"p":"com.theoplayer.android.api.cache","c":"Cache","l":"getStatus()","url":"com/theoplayer/android/api/cache/Cache.html#getStatus()"}, {"p":"com.theoplayer.android.api.cache","c":"Cache","l":"getTasks()","url":"com/theoplayer/android/api/cache/Cache.html#getTasks()"}, {"p":"com.theoplayer.android.api.cache","c":"Cache","l":"createTask(SourceDescription, CachingParameters)","url":"com/theoplayer/android/api/cache/Cache.html#createTask(com.theoplayer.android.api.source.SourceDescription,com.theoplayer.android.api.cache.CachingParameters)"}, {"p":"com.theoplayer.android.api.cache","c":"Cache","l":"setNotificationBuilder(CacheNotificationsBuilder)","url":"com/theoplayer/android/api/cache/Cache.html#setNotificationBuilder(com.theoplayer.android.api.cache.CacheNotificationsBuilder)"}, {"p":"com.theoplayer.android.api.cache","c":"Cache","l":"getNotificationBuilder()","url":"com/theoplayer/android/api/cache/Cache.html#getNotificationBuilder()"}, {"p":"com.theoplayer.android.api.cache","c":"Cache","l":"getNetwork()","url":"com/theoplayer/android/api/cache/Cache.html#getNetwork()"}, {"p":"com.theoplayer.android.api.cache","c":"CacheNotificationsBuilder","l":"createProgressNotificationBuilder(CachingTask, NotificationCompat.Builder)","url":"com/theoplayer/android/api/cache/CacheNotificationsBuilder.html#createProgressNotificationBuilder(com.theoplayer.android.api.cache.CachingTask,androidx.core.app.NotificationCompat.Builder)"}, {"p":"com.theoplayer.android.api.cache","c":"CacheNotificationsBuilder","l":"createStatusNotificationBuilder(CachingTask, NotificationCompat.Builder)","url":"com/theoplayer/android/api/cache/CacheNotificationsBuilder.html#createStatusNotificationBuilder(com.theoplayer.android.api.cache.CachingTask,androidx.core.app.NotificationCompat.Builder)"}, {"p":"com.theoplayer.android.api.cache","c":"CacheNotificationsBuilder","l":"createNotificationChannel(NotificationChannelCompat.Builder)","url":"com/theoplayer/android/api/cache/CacheNotificationsBuilder.html#createNotificationChannel(androidx.core.app.NotificationChannelCompat.Builder)"}, {"p":"com.theoplayer.android.api.player","c":"AspectRatio","l":"values()","url":"com/theoplayer/android/api/player/AspectRatio.html#values()"}, {"p":"com.theoplayer.android.api.player","c":"AspectRatio","l":"valueOf(String)","url":"com/theoplayer/android/api/player/AspectRatio.html#valueOf(java.lang.String)"}, {"p":"com.theoplayer.android.api.player","c":"RenderingTarget","l":"values()","url":"com/theoplayer/android/api/player/RenderingTarget.html#values()"}, {"p":"com.theoplayer.android.api.player","c":"RenderingTarget","l":"valueOf(String)","url":"com/theoplayer/android/api/player/RenderingTarget.html#valueOf(java.lang.String)"}, {"p":"com.theoplayer.android.api.player","c":"PresentationMode","l":"values()","url":"com/theoplayer/android/api/player/PresentationMode.html#values()"}, {"p":"com.theoplayer.android.api.player","c":"PresentationMode","l":"valueOf(String)","url":"com/theoplayer/android/api/player/PresentationMode.html#valueOf(java.lang.String)"}, {"p":"com.theoplayer.android.api.player","c":"PresentationMode","l":"getMode()","url":"com/theoplayer/android/api/player/PresentationMode.html#getMode()"}, {"p":"com.theoplayer.android.api.player","c":"PreloadType","l":"values()","url":"com/theoplayer/android/api/player/PreloadType.html#values()"}, {"p":"com.theoplayer.android.api.player","c":"PreloadType","l":"valueOf(String)","url":"com/theoplayer/android/api/player/PreloadType.html#valueOf(java.lang.String)"}, {"p":"com.theoplayer.android.api.player","c":"PreloadType","l":"getType()","url":"com/theoplayer/android/api/player/PreloadType.html#getType()"}, {"p":"com.theoplayer.android.api.player","c":"ReadyState","l":"from(int)","url":"com/theoplayer/android/api/player/ReadyState.html#from(int)"}, {"p":"com.theoplayer.android.api.player","c":"ReadyState","l":"values()","url":"com/theoplayer/android/api/player/ReadyState.html#values()"}, {"p":"com.theoplayer.android.api.player","c":"ReadyState","l":"valueOf(String)","url":"com/theoplayer/android/api/player/ReadyState.html#valueOf(java.lang.String)"}, {"p":"com.theoplayer.android.api.player","c":"NetworkConfiguration.Builder","l":"NetworkConfiguration.Builder()","url":"com/theoplayer/android/api/player/NetworkConfiguration.Builder.html#NetworkConfiguration.Builder()"}, {"p":"com.theoplayer.android.api.player","c":"NetworkConfiguration.Builder","l":"maxRetries(int)","url":"com/theoplayer/android/api/player/NetworkConfiguration.Builder.html#maxRetries(int)"}, {"p":"com.theoplayer.android.api.player","c":"NetworkConfiguration.Builder","l":"minimumBackOff(long)","url":"com/theoplayer/android/api/player/NetworkConfiguration.Builder.html#minimumBackOff(long)"}, {"p":"com.theoplayer.android.api.player","c":"NetworkConfiguration.Builder","l":"maximumBackOff(long)","url":"com/theoplayer/android/api/player/NetworkConfiguration.Builder.html#maximumBackOff(long)"}, {"p":"com.theoplayer.android.api.player","c":"NetworkConfiguration.Builder","l":"build()","url":"com/theoplayer/android/api/player/NetworkConfiguration.Builder.html#build()"}, {"p":"com.theoplayer.android.api.player","c":"NetworkConfiguration","l":"getMaxRetries()","url":"com/theoplayer/android/api/player/NetworkConfiguration.html#getMaxRetries()"}, {"p":"com.theoplayer.android.api.player","c":"NetworkConfiguration","l":"getMinimumBackOff()","url":"com/theoplayer/android/api/player/NetworkConfiguration.html#getMinimumBackOff()"}, {"p":"com.theoplayer.android.api.player","c":"NetworkConfiguration","l":"getMaximumBackOff()","url":"com/theoplayer/android/api/player/NetworkConfiguration.html#getMaximumBackOff()"}, {"p":"com.theoplayer.android.api.player","c":"Player","l":"addIntegration(Integration)","url":"com/theoplayer/android/api/player/Player.html#addIntegration(com.theoplayer.android.api.Integration)"}, {"p":"com.theoplayer.android.api.player","c":"Player","l":"removeIntegration(Integration)","url":"com/theoplayer/android/api/player/Player.html#removeIntegration(com.theoplayer.android.api.Integration)"}, {"p":"com.theoplayer.android.api.player","c":"Player","l":"getAds()","url":"com/theoplayer/android/api/player/Player.html#getAds()"}, {"p":"com.theoplayer.android.api.player","c":"Player","l":"getAbr()","url":"com/theoplayer/android/api/player/Player.html#getAbr()"}, {"p":"com.theoplayer.android.api.player","c":"Player","l":"getVideoTracks()","url":"com/theoplayer/android/api/player/Player.html#getVideoTracks()"}, {"p":"com.theoplayer.android.api.player","c":"Player","l":"getAudioTracks()","url":"com/theoplayer/android/api/player/Player.html#getAudioTracks()"}, {"p":"com.theoplayer.android.api.player","c":"Player","l":"getTextTracks()","url":"com/theoplayer/android/api/player/Player.html#getTextTracks()"}, {"p":"com.theoplayer.android.api.player","c":"Player","l":"getDuration()","url":"com/theoplayer/android/api/player/Player.html#getDuration()"}, {"p":"com.theoplayer.android.api.player","c":"Player","l":"isAutoplay()","url":"com/theoplayer/android/api/player/Player.html#isAutoplay()"}, {"p":"com.theoplayer.android.api.player","c":"Player","l":"setAutoplay(boolean)","url":"com/theoplayer/android/api/player/Player.html#setAutoplay(boolean)"}, {"p":"com.theoplayer.android.api.player","c":"Player","l":"getVolume()","url":"com/theoplayer/android/api/player/Player.html#getVolume()"}, {"p":"com.theoplayer.android.api.player","c":"Player","l":"setVolume(double)","url":"com/theoplayer/android/api/player/Player.html#setVolume(double)"}, {"p":"com.theoplayer.android.api.player","c":"Player","l":"getPreload()","url":"com/theoplayer/android/api/player/Player.html#getPreload()"}, {"p":"com.theoplayer.android.api.player","c":"Player","l":"setPreload(PreloadType)","url":"com/theoplayer/android/api/player/Player.html#setPreload(com.theoplayer.android.api.player.PreloadType)"}, {"p":"com.theoplayer.android.api.player","c":"Player","l":"isMuted()","url":"com/theoplayer/android/api/player/Player.html#isMuted()"}, {"p":"com.theoplayer.android.api.player","c":"Player","l":"setMuted(boolean)","url":"com/theoplayer/android/api/player/Player.html#setMuted(boolean)"}, {"p":"com.theoplayer.android.api.player","c":"Player","l":"isSeeking()","url":"com/theoplayer/android/api/player/Player.html#isSeeking()"}, {"p":"com.theoplayer.android.api.player","c":"Player","l":"getSource()","url":"com/theoplayer/android/api/player/Player.html#getSource()"}, {"p":"com.theoplayer.android.api.player","c":"Player","l":"setSource(SourceDescription)","url":"com/theoplayer/android/api/player/Player.html#setSource(com.theoplayer.android.api.source.SourceDescription)"}, {"p":"com.theoplayer.android.api.player","c":"Player","l":"getSrc()","url":"com/theoplayer/android/api/player/Player.html#getSrc()"}, {"p":"com.theoplayer.android.api.player","c":"Player","l":"setSrc(String)","url":"com/theoplayer/android/api/player/Player.html#setSrc(java.lang.String)"}, {"p":"com.theoplayer.android.api.player","c":"Player","l":"isPaused()","url":"com/theoplayer/android/api/player/Player.html#isPaused()"}, {"p":"com.theoplayer.android.api.player","c":"Player","l":"isEnded()","url":"com/theoplayer/android/api/player/Player.html#isEnded()"}, {"p":"com.theoplayer.android.api.player","c":"Player","l":"play()","url":"com/theoplayer/android/api/player/Player.html#play()"}, {"p":"com.theoplayer.android.api.player","c":"Player","l":"pause()","url":"com/theoplayer/android/api/player/Player.html#pause()"}, {"p":"com.theoplayer.android.api.player","c":"Player","l":"stop()","url":"com/theoplayer/android/api/player/Player.html#stop()"}, {"p":"com.theoplayer.android.api.player","c":"Player","l":"getReadyState()","url":"com/theoplayer/android/api/player/Player.html#getReadyState()"}, {"p":"com.theoplayer.android.api.player","c":"Player","l":"getBuffered()","url":"com/theoplayer/android/api/player/Player.html#getBuffered()"}, {"p":"com.theoplayer.android.api.player","c":"Player","l":"getCurrentTime()","url":"com/theoplayer/android/api/player/Player.html#getCurrentTime()"}, {"p":"com.theoplayer.android.api.player","c":"Player","l":"getMetrics()","url":"com/theoplayer/android/api/player/Player.html#getMetrics()"}, {"p":"com.theoplayer.android.api.player","c":"Player","l":"getError()","url":"com/theoplayer/android/api/player/Player.html#getError()"}, {"p":"com.theoplayer.android.api.player","c":"Player","l":"getPlaybackRate()","url":"com/theoplayer/android/api/player/Player.html#getPlaybackRate()"}, {"p":"com.theoplayer.android.api.player","c":"Player","l":"setPlaybackRate(double)","url":"com/theoplayer/android/api/player/Player.html#setPlaybackRate(double)"}, {"p":"com.theoplayer.android.api.player","c":"Player","l":"getPlayed()","url":"com/theoplayer/android/api/player/Player.html#getPlayed()"}, {"p":"com.theoplayer.android.api.player","c":"Player","l":"getSeekable()","url":"com/theoplayer/android/api/player/Player.html#getSeekable()"}, {"p":"com.theoplayer.android.api.player","c":"Player","l":"getCurrentProgramDateTime()","url":"com/theoplayer/android/api/player/Player.html#getCurrentProgramDateTime()"}, {"p":"com.theoplayer.android.api.player","c":"Player","l":"setCurrentProgramDateTime(Date)","url":"com/theoplayer/android/api/player/Player.html#setCurrentProgramDateTime(java.util.Date)"}, {"p":"com.theoplayer.android.api.player","c":"Player","l":"getVideoHeight()","url":"com/theoplayer/android/api/player/Player.html#getVideoHeight()"}, {"p":"com.theoplayer.android.api.player","c":"Player","l":"getVideoWidth()","url":"com/theoplayer/android/api/player/Player.html#getVideoWidth()"}, {"p":"com.theoplayer.android.api.player","c":"Player","l":"setCurrentTime(double)","url":"com/theoplayer/android/api/player/Player.html#setCurrentTime(double)"}, {"p":"com.theoplayer.android.api.player","c":"Player","l":"getHespApi()","url":"com/theoplayer/android/api/player/Player.html#getHespApi()"}, {"p":"com.theoplayer.android.api.player","c":"Player","l":"setAspectRatio(AspectRatio)","url":"com/theoplayer/android/api/player/Player.html#setAspectRatio(com.theoplayer.android.api.player.AspectRatio)"}, {"p":"com.theoplayer.android.api.player","c":"Player","l":"setRenderingTarget(RenderingTarget)","url":"com/theoplayer/android/api/player/Player.html#setRenderingTarget(com.theoplayer.android.api.player.RenderingTarget)"}, {"p":"com.theoplayer.android.api.player","c":"Player","l":"setCustomSurface(Surface, int, int)","url":"com/theoplayer/android/api/player/Player.html#setCustomSurface(android.view.Surface,int,int)"}, {"p":"com.theoplayer.android.api.player","c":"Player","l":"getTextTrackStyle()","url":"com/theoplayer/android/api/player/Player.html#getTextTrackStyle()"}, {"p":"com.theoplayer.android.api.player","c":"Player","l":"getNetwork()","url":"com/theoplayer/android/api/player/Player.html#getNetwork()"}, {"p":"com.theoplayer.android.api.player","c":"Player","l":"getLatencyManager()","url":"com/theoplayer/android/api/player/Player.html#getLatencyManager()"}, {"p":"com.theoplayer.android.api.player.track","c":"TrackList","l":"length()","url":"com/theoplayer/android/api/player/track/TrackList.html#length()"}, {"p":"com.theoplayer.android.api.player.track","c":"TrackList","l":"getItem(int)","url":"com/theoplayer/android/api/player/track/TrackList.html#getItem(int)"}, {"p":"com.theoplayer.android.api.player.track","c":"Track","l":"getKind()","url":"com/theoplayer/android/api/player/track/Track.html#getKind()"}, {"p":"com.theoplayer.android.api.player.track","c":"Track","l":"getId()","url":"com/theoplayer/android/api/player/track/Track.html#getId()"}, {"p":"com.theoplayer.android.api.player.track","c":"Track","l":"getUid()","url":"com/theoplayer/android/api/player/track/Track.html#getUid()"}, {"p":"com.theoplayer.android.api.player.track","c":"Track","l":"getLabel()","url":"com/theoplayer/android/api/player/track/Track.html#getLabel()"}, {"p":"com.theoplayer.android.api.player.track","c":"Track","l":"getLanguage()","url":"com/theoplayer/android/api/player/track/Track.html#getLanguage()"}, {"p":"com.theoplayer.android.api.player.track.texttrack","c":"TextTrackType","l":"from(String)","url":"com/theoplayer/android/api/player/track/texttrack/TextTrackType.html#from(java.lang.String)"}, {"p":"com.theoplayer.android.api.player.track.texttrack","c":"TextTrackType","l":"toString()","url":"com/theoplayer/android/api/player/track/texttrack/TextTrackType.html#toString()"}, {"p":"com.theoplayer.android.api.player.track.texttrack","c":"TextTrackType","l":"values()","url":"com/theoplayer/android/api/player/track/texttrack/TextTrackType.html#values()"}, {"p":"com.theoplayer.android.api.player.track.texttrack","c":"TextTrackType","l":"valueOf(String)","url":"com/theoplayer/android/api/player/track/texttrack/TextTrackType.html#valueOf(java.lang.String)"}, {"p":"com.theoplayer.android.api.player.track.texttrack","c":"TextTrackType","l":"getType()","url":"com/theoplayer/android/api/player/track/texttrack/TextTrackType.html#getType()"}, {"p":"com.theoplayer.android.api.player.track.texttrack","c":"TextTrackStyle.EdgeType","l":"values()","url":"com/theoplayer/android/api/player/track/texttrack/TextTrackStyle.EdgeType.html#values()"}, {"p":"com.theoplayer.android.api.player.track.texttrack","c":"TextTrackStyle.EdgeType","l":"valueOf(String)","url":"com/theoplayer/android/api/player/track/texttrack/TextTrackStyle.EdgeType.html#valueOf(java.lang.String)"}, {"p":"com.theoplayer.android.api.player.track.texttrack","c":"TextTrackStyle.FontStyle","l":"values()","url":"com/theoplayer/android/api/player/track/texttrack/TextTrackStyle.FontStyle.html#values()"}, {"p":"com.theoplayer.android.api.player.track.texttrack","c":"TextTrackStyle.FontStyle","l":"valueOf(String)","url":"com/theoplayer/android/api/player/track/texttrack/TextTrackStyle.FontStyle.html#valueOf(java.lang.String)"}, {"p":"com.theoplayer.android.api.player.track.texttrack","c":"TextTrackStyle.FontFamily","l":"values()","url":"com/theoplayer/android/api/player/track/texttrack/TextTrackStyle.FontFamily.html#values()"}, {"p":"com.theoplayer.android.api.player.track.texttrack","c":"TextTrackStyle.FontFamily","l":"valueOf(String)","url":"com/theoplayer/android/api/player/track/texttrack/TextTrackStyle.FontFamily.html#valueOf(java.lang.String)"}, {"p":"com.theoplayer.android.api.player.track.texttrack","c":"TextTrackStyle","l":"setFontColor(int)","url":"com/theoplayer/android/api/player/track/texttrack/TextTrackStyle.html#setFontColor(int)"}, {"p":"com.theoplayer.android.api.player.track.texttrack","c":"TextTrackStyle","l":"getFontColor()","url":"com/theoplayer/android/api/player/track/texttrack/TextTrackStyle.html#getFontColor()"}, {"p":"com.theoplayer.android.api.player.track.texttrack","c":"TextTrackStyle","l":"setBackgroundColor(int)","url":"com/theoplayer/android/api/player/track/texttrack/TextTrackStyle.html#setBackgroundColor(int)"}, {"p":"com.theoplayer.android.api.player.track.texttrack","c":"TextTrackStyle","l":"getBackgroundColor()","url":"com/theoplayer/android/api/player/track/texttrack/TextTrackStyle.html#getBackgroundColor()"}, {"p":"com.theoplayer.android.api.player.track.texttrack","c":"TextTrackStyle","l":"setWindowColor(int)","url":"com/theoplayer/android/api/player/track/texttrack/TextTrackStyle.html#setWindowColor(int)"}, {"p":"com.theoplayer.android.api.player.track.texttrack","c":"TextTrackStyle","l":"getWindowColor()","url":"com/theoplayer/android/api/player/track/texttrack/TextTrackStyle.html#getWindowColor()"}, {"p":"com.theoplayer.android.api.player.track.texttrack","c":"TextTrackStyle","l":"setEdgeColor(int)","url":"com/theoplayer/android/api/player/track/texttrack/TextTrackStyle.html#setEdgeColor(int)"}, {"p":"com.theoplayer.android.api.player.track.texttrack","c":"TextTrackStyle","l":"getEdgeColor()","url":"com/theoplayer/android/api/player/track/texttrack/TextTrackStyle.html#getEdgeColor()"}, {"p":"com.theoplayer.android.api.player.track.texttrack","c":"TextTrackStyle","l":"setEdgeType(TextTrackStyle.EdgeType)","url":"com/theoplayer/android/api/player/track/texttrack/TextTrackStyle.html#setEdgeType(com.theoplayer.android.api.player.track.texttrack.TextTrackStyle.EdgeType)"}, {"p":"com.theoplayer.android.api.player.track.texttrack","c":"TextTrackStyle","l":"getEdgeType()","url":"com/theoplayer/android/api/player/track/texttrack/TextTrackStyle.html#getEdgeType()"}, {"p":"com.theoplayer.android.api.player.track.texttrack","c":"TextTrackStyle","l":"setFont(TextTrackStyle.FontFamily, TextTrackStyle.FontStyle)","url":"com/theoplayer/android/api/player/track/texttrack/TextTrackStyle.html#setFont(com.theoplayer.android.api.player.track.texttrack.TextTrackStyle.FontFamily,com.theoplayer.android.api.player.track.texttrack.TextTrackStyle.FontStyle)"}, {"p":"com.theoplayer.android.api.player.track.texttrack","c":"TextTrackStyle","l":"setFont(String, TextTrackStyle.FontStyle)","url":"com/theoplayer/android/api/player/track/texttrack/TextTrackStyle.html#setFont(java.lang.String,com.theoplayer.android.api.player.track.texttrack.TextTrackStyle.FontStyle)"}, {"p":"com.theoplayer.android.api.player.track.texttrack","c":"TextTrackStyle","l":"getFontStyle()","url":"com/theoplayer/android/api/player/track/texttrack/TextTrackStyle.html#getFontStyle()"}, {"p":"com.theoplayer.android.api.player.track.texttrack","c":"TextTrackStyle","l":"getFontFamily()","url":"com/theoplayer/android/api/player/track/texttrack/TextTrackStyle.html#getFontFamily()"}, {"p":"com.theoplayer.android.api.player.track.texttrack","c":"TextTrackStyle","l":"getFontFile()","url":"com/theoplayer/android/api/player/track/texttrack/TextTrackStyle.html#getFontFile()"}, {"p":"com.theoplayer.android.api.player.track.texttrack","c":"TextTrackStyle","l":"setFontSize(int)","url":"com/theoplayer/android/api/player/track/texttrack/TextTrackStyle.html#setFontSize(int)"}, {"p":"com.theoplayer.android.api.player.track.texttrack","c":"TextTrackStyle","l":"getFontSize()","url":"com/theoplayer/android/api/player/track/texttrack/TextTrackStyle.html#getFontSize()"}, {"p":"com.theoplayer.android.api.player.track.texttrack","c":"TextTrackStyle","l":"setMarginLeft(int)","url":"com/theoplayer/android/api/player/track/texttrack/TextTrackStyle.html#setMarginLeft(int)"}, {"p":"com.theoplayer.android.api.player.track.texttrack","c":"TextTrackStyle","l":"setMarginTop(int)","url":"com/theoplayer/android/api/player/track/texttrack/TextTrackStyle.html#setMarginTop(int)"}, {"p":"com.theoplayer.android.api.player.track.texttrack","c":"TextTrackStyle","l":"getMarginLeft()","url":"com/theoplayer/android/api/player/track/texttrack/TextTrackStyle.html#getMarginLeft()"}, {"p":"com.theoplayer.android.api.player.track.texttrack","c":"TextTrackStyle","l":"getMarginTop()","url":"com/theoplayer/android/api/player/track/texttrack/TextTrackStyle.html#getMarginTop()"}, {"p":"com.theoplayer.android.api.player.track.texttrack","c":"TextTrackStyle","l":"reset()","url":"com/theoplayer/android/api/player/track/texttrack/TextTrackStyle.html#reset()"}, {"p":"com.theoplayer.android.api.player.track.texttrack","c":"TextTrackMode","l":"from(String)","url":"com/theoplayer/android/api/player/track/texttrack/TextTrackMode.html#from(java.lang.String)"}, {"p":"com.theoplayer.android.api.player.track.texttrack","c":"TextTrackMode","l":"toString()","url":"com/theoplayer/android/api/player/track/texttrack/TextTrackMode.html#toString()"}, {"p":"com.theoplayer.android.api.player.track.texttrack","c":"TextTrackMode","l":"values()","url":"com/theoplayer/android/api/player/track/texttrack/TextTrackMode.html#values()"}, {"p":"com.theoplayer.android.api.player.track.texttrack","c":"TextTrackMode","l":"valueOf(String)","url":"com/theoplayer/android/api/player/track/texttrack/TextTrackMode.html#valueOf(java.lang.String)"}, {"p":"com.theoplayer.android.api.player.track.texttrack","c":"TextTrackMode","l":"getMode()","url":"com/theoplayer/android/api/player/track/texttrack/TextTrackMode.html#getMode()"}, {"p":"com.theoplayer.android.api.player.track.texttrack","c":"TextTrack","l":"getKind()","url":"com/theoplayer/android/api/player/track/texttrack/TextTrack.html#getKind()"}, {"p":"com.theoplayer.android.api.player.track.texttrack","c":"TextTrack","l":"getInBandMetadataTrackDispatchType()","url":"com/theoplayer/android/api/player/track/texttrack/TextTrack.html#getInBandMetadataTrackDispatchType()"}, {"p":"com.theoplayer.android.api.player.track.texttrack","c":"TextTrack","l":"getMode()","url":"com/theoplayer/android/api/player/track/texttrack/TextTrack.html#getMode()"}, {"p":"com.theoplayer.android.api.player.track.texttrack","c":"TextTrack","l":"setMode(TextTrackMode)","url":"com/theoplayer/android/api/player/track/texttrack/TextTrack.html#setMode(com.theoplayer.android.api.player.track.texttrack.TextTrackMode)"}, {"p":"com.theoplayer.android.api.player.track.texttrack","c":"TextTrack","l":"getReadyState()","url":"com/theoplayer/android/api/player/track/texttrack/TextTrack.html#getReadyState()"}, {"p":"com.theoplayer.android.api.player.track.texttrack","c":"TextTrack","l":"getType()","url":"com/theoplayer/android/api/player/track/texttrack/TextTrack.html#getType()"}, {"p":"com.theoplayer.android.api.player.track.texttrack","c":"TextTrack","l":"getCues()","url":"com/theoplayer/android/api/player/track/texttrack/TextTrack.html#getCues()"}, {"p":"com.theoplayer.android.api.player.track.texttrack","c":"TextTrack","l":"getActiveCues()","url":"com/theoplayer/android/api/player/track/texttrack/TextTrack.html#getActiveCues()"}, {"p":"com.theoplayer.android.api.player.track.texttrack","c":"TextTrack","l":"getSource()","url":"com/theoplayer/android/api/player/track/texttrack/TextTrack.html#getSource()"}, {"p":"com.theoplayer.android.api.player.track.texttrack","c":"TextTrack","l":"isForced()","url":"com/theoplayer/android/api/player/track/texttrack/TextTrack.html#isForced()"}, {"p":"com.theoplayer.android.api.player.track.texttrack","c":"TextTrackReadyState","l":"from(int)","url":"com/theoplayer/android/api/player/track/texttrack/TextTrackReadyState.html#from(int)"}, {"p":"com.theoplayer.android.api.player.track.texttrack","c":"TextTrackReadyState","l":"values()","url":"com/theoplayer/android/api/player/track/texttrack/TextTrackReadyState.html#values()"}, {"p":"com.theoplayer.android.api.player.track.texttrack","c":"TextTrackReadyState","l":"valueOf(String)","url":"com/theoplayer/android/api/player/track/texttrack/TextTrackReadyState.html#valueOf(java.lang.String)"}, {"p":"com.theoplayer.android.api.player.track.texttrack","c":"TextTrackKind","l":"values()","url":"com/theoplayer/android/api/player/track/texttrack/TextTrackKind.html#values()"}, {"p":"com.theoplayer.android.api.player.track.texttrack","c":"TextTrackKind","l":"valueOf(String)","url":"com/theoplayer/android/api/player/track/texttrack/TextTrackKind.html#valueOf(java.lang.String)"}, {"p":"com.theoplayer.android.api.player.track.texttrack","c":"TextTrackKind","l":"getType()","url":"com/theoplayer/android/api/player/track/texttrack/TextTrackKind.html#getType()"}, {"p":"com.theoplayer.android.api.player.track.texttrack.cue","c":"TextTrackCue","l":"getId()","url":"com/theoplayer/android/api/player/track/texttrack/cue/TextTrackCue.html#getId()"}, {"p":"com.theoplayer.android.api.player.track.texttrack.cue","c":"TextTrackCue","l":"getUid()","url":"com/theoplayer/android/api/player/track/texttrack/cue/TextTrackCue.html#getUid()"}, {"p":"com.theoplayer.android.api.player.track.texttrack.cue","c":"TextTrackCue","l":"getStartTime()","url":"com/theoplayer/android/api/player/track/texttrack/cue/TextTrackCue.html#getStartTime()"}, {"p":"com.theoplayer.android.api.player.track.texttrack.cue","c":"TextTrackCue","l":"setStartTime(double)","url":"com/theoplayer/android/api/player/track/texttrack/cue/TextTrackCue.html#setStartTime(double)"}, {"p":"com.theoplayer.android.api.player.track.texttrack.cue","c":"TextTrackCue","l":"getEndTime()","url":"com/theoplayer/android/api/player/track/texttrack/cue/TextTrackCue.html#getEndTime()"}, {"p":"com.theoplayer.android.api.player.track.texttrack.cue","c":"TextTrackCue","l":"setEndTime(double)","url":"com/theoplayer/android/api/player/track/texttrack/cue/TextTrackCue.html#setEndTime(double)"}, {"p":"com.theoplayer.android.api.player.track.texttrack.cue","c":"TextTrackCue","l":"getContent()","url":"com/theoplayer/android/api/player/track/texttrack/cue/TextTrackCue.html#getContent()"}, {"p":"com.theoplayer.android.api.player.track.texttrack.cue","c":"DateRangeCue.CustomAttributes","l":"getDouble(String)","url":"com/theoplayer/android/api/player/track/texttrack/cue/DateRangeCue.CustomAttributes.html#getDouble(java.lang.String)"}, {"p":"com.theoplayer.android.api.player.track.texttrack.cue","c":"DateRangeCue.CustomAttributes","l":"getString(String)","url":"com/theoplayer/android/api/player/track/texttrack/cue/DateRangeCue.CustomAttributes.html#getString(java.lang.String)"}, {"p":"com.theoplayer.android.api.player.track.texttrack.cue","c":"DateRangeCue.CustomAttributes","l":"getBytes(String)","url":"com/theoplayer/android/api/player/track/texttrack/cue/DateRangeCue.CustomAttributes.html#getBytes(java.lang.String)"}, {"p":"com.theoplayer.android.api.player.track.texttrack.cue","c":"DateRangeCue.CustomAttributes","l":"asMap()","url":"com/theoplayer/android/api/player/track/texttrack/cue/DateRangeCue.CustomAttributes.html#asMap()"}, {"p":"com.theoplayer.android.api.player.track.texttrack.cue","c":"DateRangeCue","l":"getAttributeClass()","url":"com/theoplayer/android/api/player/track/texttrack/cue/DateRangeCue.html#getAttributeClass()"}, {"p":"com.theoplayer.android.api.player.track.texttrack.cue","c":"DateRangeCue","l":"getStartDate()","url":"com/theoplayer/android/api/player/track/texttrack/cue/DateRangeCue.html#getStartDate()"}, {"p":"com.theoplayer.android.api.player.track.texttrack.cue","c":"DateRangeCue","l":"getEndDate()","url":"com/theoplayer/android/api/player/track/texttrack/cue/DateRangeCue.html#getEndDate()"}, {"p":"com.theoplayer.android.api.player.track.texttrack.cue","c":"DateRangeCue","l":"getDuration()","url":"com/theoplayer/android/api/player/track/texttrack/cue/DateRangeCue.html#getDuration()"}, {"p":"com.theoplayer.android.api.player.track.texttrack.cue","c":"DateRangeCue","l":"getPlannedDuration()","url":"com/theoplayer/android/api/player/track/texttrack/cue/DateRangeCue.html#getPlannedDuration()"}, {"p":"com.theoplayer.android.api.player.track.texttrack.cue","c":"DateRangeCue","l":"isEndOnNext()","url":"com/theoplayer/android/api/player/track/texttrack/cue/DateRangeCue.html#isEndOnNext()"}, {"p":"com.theoplayer.android.api.player.track.texttrack.cue","c":"DateRangeCue","l":"getScte35Cmd()","url":"com/theoplayer/android/api/player/track/texttrack/cue/DateRangeCue.html#getScte35Cmd()"}, {"p":"com.theoplayer.android.api.player.track.texttrack.cue","c":"DateRangeCue","l":"getScte35Out()","url":"com/theoplayer/android/api/player/track/texttrack/cue/DateRangeCue.html#getScte35Out()"}, {"p":"com.theoplayer.android.api.player.track.texttrack.cue","c":"DateRangeCue","l":"getScte35In()","url":"com/theoplayer/android/api/player/track/texttrack/cue/DateRangeCue.html#getScte35In()"}, {"p":"com.theoplayer.android.api.player.track.texttrack.cue","c":"DateRangeCue","l":"getCustomAttributes()","url":"com/theoplayer/android/api/player/track/texttrack/cue/DateRangeCue.html#getCustomAttributes()"}, {"p":"com.theoplayer.android.api.player.track.mediatrack","c":"MediaTrack","l":"getActiveQuality()","url":"com/theoplayer/android/api/player/track/mediatrack/MediaTrack.html#getActiveQuality()"}, {"p":"com.theoplayer.android.api.player.track.mediatrack","c":"MediaTrack","l":"getQualities()","url":"com/theoplayer/android/api/player/track/mediatrack/MediaTrack.html#getQualities()"}, {"p":"com.theoplayer.android.api.player.track.mediatrack","c":"MediaTrack","l":"getTargetQuality()","url":"com/theoplayer/android/api/player/track/mediatrack/MediaTrack.html#getTargetQuality()"}, {"p":"com.theoplayer.android.api.player.track.mediatrack","c":"MediaTrack","l":"getTargetQualities()","url":"com/theoplayer/android/api/player/track/mediatrack/MediaTrack.html#getTargetQualities()"}, {"p":"com.theoplayer.android.api.player.track.mediatrack","c":"MediaTrack","l":"setTargetQuality(Q)","url":"com/theoplayer/android/api/player/track/mediatrack/MediaTrack.html#setTargetQuality(Q)"}, {"p":"com.theoplayer.android.api.player.track.mediatrack","c":"MediaTrack","l":"setTargetQualities(List)","url":"com/theoplayer/android/api/player/track/mediatrack/MediaTrack.html#setTargetQualities(java.util.List)"}, {"p":"com.theoplayer.android.api.player.track.mediatrack","c":"MediaTrack","l":"isEnabled()","url":"com/theoplayer/android/api/player/track/mediatrack/MediaTrack.html#isEnabled()"}, {"p":"com.theoplayer.android.api.player.track.mediatrack","c":"MediaTrack","l":"setEnabled(boolean)","url":"com/theoplayer/android/api/player/track/mediatrack/MediaTrack.html#setEnabled(boolean)"}, {"p":"com.theoplayer.android.api.player.track.mediatrack.quality","c":"Quality","l":"getBandwidth()","url":"com/theoplayer/android/api/player/track/mediatrack/quality/Quality.html#getBandwidth()"}, {"p":"com.theoplayer.android.api.player.track.mediatrack.quality","c":"Quality","l":"getCodecs()","url":"com/theoplayer/android/api/player/track/mediatrack/quality/Quality.html#getCodecs()"}, {"p":"com.theoplayer.android.api.player.track.mediatrack.quality","c":"Quality","l":"getId()","url":"com/theoplayer/android/api/player/track/mediatrack/quality/Quality.html#getId()"}, {"p":"com.theoplayer.android.api.player.track.mediatrack.quality","c":"Quality","l":"getUid()","url":"com/theoplayer/android/api/player/track/mediatrack/quality/Quality.html#getUid()"}, {"p":"com.theoplayer.android.api.player.track.mediatrack.quality","c":"Quality","l":"getName()","url":"com/theoplayer/android/api/player/track/mediatrack/quality/Quality.html#getName()"}, {"p":"com.theoplayer.android.api.player.track.mediatrack.quality","c":"VideoQuality","l":"getHeight()","url":"com/theoplayer/android/api/player/track/mediatrack/quality/VideoQuality.html#getHeight()"}, {"p":"com.theoplayer.android.api.player.track.mediatrack.quality","c":"VideoQuality","l":"getWidth()","url":"com/theoplayer/android/api/player/track/mediatrack/quality/VideoQuality.html#getWidth()"}, {"p":"com.theoplayer.android.api.player.track.mediatrack.quality","c":"VideoQuality","l":"getFrameRate()","url":"com/theoplayer/android/api/player/track/mediatrack/quality/VideoQuality.html#getFrameRate()"}, {"p":"com.theoplayer.android.api.player.track.mediatrack.quality","c":"VideoQuality","l":"getFirstFrame()","url":"com/theoplayer/android/api/player/track/mediatrack/quality/VideoQuality.html#getFirstFrame()"}, {"p":"com.theoplayer.android.api.player.track.mediatrack.quality","c":"AudioQuality","l":"getAudioSamplingRate()","url":"com/theoplayer/android/api/player/track/mediatrack/quality/AudioQuality.html#getAudioSamplingRate()"}, {"p":"com.theoplayer.android.api.abr","c":"AbrStrategyConfiguration.Builder","l":"AbrStrategyConfiguration.Builder()","url":"com/theoplayer/android/api/abr/AbrStrategyConfiguration.Builder.html#AbrStrategyConfiguration.Builder()"}, {"p":"com.theoplayer.android.api.abr","c":"AbrStrategyConfiguration.Builder","l":"build()","url":"com/theoplayer/android/api/abr/AbrStrategyConfiguration.Builder.html#build()"}, {"p":"com.theoplayer.android.api.abr","c":"AbrStrategyConfiguration.Builder","l":"setType(AbrStrategyType)","url":"com/theoplayer/android/api/abr/AbrStrategyConfiguration.Builder.html#setType(com.theoplayer.android.api.abr.AbrStrategyType)"}, {"p":"com.theoplayer.android.api.abr","c":"AbrStrategyConfiguration.Builder","l":"setMetadata(AbrStrategyMetadata)","url":"com/theoplayer/android/api/abr/AbrStrategyConfiguration.Builder.html#setMetadata(com.theoplayer.android.api.abr.AbrStrategyMetadata)"}, {"p":"com.theoplayer.android.api.abr","c":"AbrStrategyConfiguration","l":"getType()","url":"com/theoplayer/android/api/abr/AbrStrategyConfiguration.html#getType()"}, {"p":"com.theoplayer.android.api.abr","c":"AbrStrategyConfiguration","l":"getMetadata()","url":"com/theoplayer/android/api/abr/AbrStrategyConfiguration.html#getMetadata()"}, {"p":"com.theoplayer.android.api.abr","c":"Abr","l":"setTargetBuffer(int)","url":"com/theoplayer/android/api/abr/Abr.html#setTargetBuffer(int)"}, {"p":"com.theoplayer.android.api.abr","c":"Abr","l":"getTargetBuffer()","url":"com/theoplayer/android/api/abr/Abr.html#getTargetBuffer()"}, {"p":"com.theoplayer.android.api.abr","c":"Abr","l":"getAbrStrategy()","url":"com/theoplayer/android/api/abr/Abr.html#getAbrStrategy()"}, {"p":"com.theoplayer.android.api.abr","c":"Abr","l":"setAbrStrategy(AbrStrategyConfiguration)","url":"com/theoplayer/android/api/abr/Abr.html#setAbrStrategy(com.theoplayer.android.api.abr.AbrStrategyConfiguration)"}, {"p":"com.theoplayer.android.api.abr","c":"AbrStrategyType","l":"values()","url":"com/theoplayer/android/api/abr/AbrStrategyType.html#values()"}, {"p":"com.theoplayer.android.api.abr","c":"AbrStrategyType","l":"valueOf(String)","url":"com/theoplayer/android/api/abr/AbrStrategyType.html#valueOf(java.lang.String)"}, {"p":"com.theoplayer.android.api.abr","c":"AbrStrategyMetadata.Builder","l":"AbrStrategyMetadata.Builder()","url":"com/theoplayer/android/api/abr/AbrStrategyMetadata.Builder.html#AbrStrategyMetadata.Builder()"}, {"p":"com.theoplayer.android.api.abr","c":"AbrStrategyMetadata.Builder","l":"setBitrate(int)","url":"com/theoplayer/android/api/abr/AbrStrategyMetadata.Builder.html#setBitrate(int)"}, {"p":"com.theoplayer.android.api.abr","c":"AbrStrategyMetadata.Builder","l":"build()","url":"com/theoplayer/android/api/abr/AbrStrategyMetadata.Builder.html#build()"}, {"p":"com.theoplayer.android.api.abr","c":"AbrStrategyMetadata","l":"getBitrate()","url":"com/theoplayer/android/api/abr/AbrStrategyMetadata.html#getBitrate()"}, {"p":"com.theoplayer.android.api.event","c":"Event","l":"getType()","url":"com/theoplayer/android/api/event/Event.html#getType()"}, {"p":"com.theoplayer.android.api.event","c":"Event","l":"getDate()","url":"com/theoplayer/android/api/event/Event.html#getDate()"}, {"p":"com.theoplayer.android.api.event","c":"EventDispatcher","l":"addEventListener(EventType, EventListener)","url":"com/theoplayer/android/api/event/EventDispatcher.html#addEventListener(com.theoplayer.android.api.event.EventType,com.theoplayer.android.api.event.EventListener)"}, {"p":"com.theoplayer.android.api.event","c":"EventDispatcher","l":"removeEventListener(EventType, EventListener)","url":"com/theoplayer/android/api/event/EventDispatcher.html#removeEventListener(com.theoplayer.android.api.event.EventType,com.theoplayer.android.api.event.EventListener)"}, {"p":"com.theoplayer.android.api.event","c":"EventListener","l":"handleEvent(E)","url":"com/theoplayer/android/api/event/EventListener.html#handleEvent(E)"}, {"p":"com.theoplayer.android.api.event","c":"EventType","l":"getName()","url":"com/theoplayer/android/api/event/EventType.html#getName()"}, {"p":"com.theoplayer.android.api.event.player","c":"SeekedEvent","l":"getCurrentTime()","url":"com/theoplayer/android/api/event/player/SeekedEvent.html#getCurrentTime()"}, {"p":"com.theoplayer.android.api.event.player","c":"PlayEvent","l":"getCurrentTime()","url":"com/theoplayer/android/api/event/player/PlayEvent.html#getCurrentTime()"}, {"p":"com.theoplayer.android.api.event.player","c":"ContentProtectionErrorEvent","l":"getErrorObject()","url":"com/theoplayer/android/api/event/player/ContentProtectionErrorEvent.html#getErrorObject()"}, {"p":"com.theoplayer.android.api.event.player","c":"SegmentNotFoundEvent","l":"getSegmentStartTime()","url":"com/theoplayer/android/api/event/player/SegmentNotFoundEvent.html#getSegmentStartTime()"}, {"p":"com.theoplayer.android.api.event.player","c":"SegmentNotFoundEvent","l":"getError()","url":"com/theoplayer/android/api/event/player/SegmentNotFoundEvent.html#getError()"}, {"p":"com.theoplayer.android.api.event.player","c":"SegmentNotFoundEvent","l":"getRetryCount()","url":"com/theoplayer/android/api/event/player/SegmentNotFoundEvent.html#getRetryCount()"}, {"p":"com.theoplayer.android.api.event.player","c":"WaitingEvent","l":"getCurrentTime()","url":"com/theoplayer/android/api/event/player/WaitingEvent.html#getCurrentTime()"}, {"p":"com.theoplayer.android.api.event.player","c":"MediaEncryptedEvent","l":"getCurrentTime()","url":"com/theoplayer/android/api/event/player/MediaEncryptedEvent.html#getCurrentTime()"}, {"p":"com.theoplayer.android.api.event.player","c":"MediaEncryptedEvent","l":"getInitData()","url":"com/theoplayer/android/api/event/player/MediaEncryptedEvent.html#getInitData()"}, {"p":"com.theoplayer.android.api.event.player","c":"MediaEncryptedEvent","l":"getInitDataType()","url":"com/theoplayer/android/api/event/player/MediaEncryptedEvent.html#getInitDataType()"}, {"p":"com.theoplayer.android.api.event.player","c":"PresentationModeChange","l":"getPresentationMode()","url":"com/theoplayer/android/api/event/player/PresentationModeChange.html#getPresentationMode()"}, {"p":"com.theoplayer.android.api.event.player","c":"LoadedDataEvent","l":"getCurrentTime()","url":"com/theoplayer/android/api/event/player/LoadedDataEvent.html#getCurrentTime()"}, {"p":"com.theoplayer.android.api.event.player","c":"TimeUpdateEvent","l":"getCurrentTime()","url":"com/theoplayer/android/api/event/player/TimeUpdateEvent.html#getCurrentTime()"}, {"p":"com.theoplayer.android.api.event.player","c":"TimeUpdateEvent","l":"getCurrentProgramDateTime()","url":"com/theoplayer/android/api/event/player/TimeUpdateEvent.html#getCurrentProgramDateTime()"}, {"p":"com.theoplayer.android.api.event.player","c":"SeekingEvent","l":"getCurrentTime()","url":"com/theoplayer/android/api/event/player/SeekingEvent.html#getCurrentTime()"}, {"p":"com.theoplayer.android.api.event.player","c":"ErrorEvent","l":"getErrorObject()","url":"com/theoplayer/android/api/event/player/ErrorEvent.html#getErrorObject()"}, {"p":"com.theoplayer.android.api.event.player","c":"ReadyStateChangeEvent","l":"getReadyState()","url":"com/theoplayer/android/api/event/player/ReadyStateChangeEvent.html#getReadyState()"}, {"p":"com.theoplayer.android.api.event.player","c":"ReadyStateChangeEvent","l":"getCurrentTime()","url":"com/theoplayer/android/api/event/player/ReadyStateChangeEvent.html#getCurrentTime()"}, {"p":"com.theoplayer.android.api.event.player","c":"RateChangeEvent","l":"getCurrentTime()","url":"com/theoplayer/android/api/event/player/RateChangeEvent.html#getCurrentTime()"}, {"p":"com.theoplayer.android.api.event.player","c":"RateChangeEvent","l":"getPlaybackRate()","url":"com/theoplayer/android/api/event/player/RateChangeEvent.html#getPlaybackRate()"}, {"p":"com.theoplayer.android.api.event.player","c":"CanPlayEvent","l":"getCurrentTime()","url":"com/theoplayer/android/api/event/player/CanPlayEvent.html#getCurrentTime()"}, {"p":"com.theoplayer.android.api.event.player","c":"PlayerEventTypes.Identifiers","l":"PlayerEventTypes.Identifiers()","url":"com/theoplayer/android/api/event/player/PlayerEventTypes.Identifiers.html#PlayerEventTypes.Identifiers()"}, {"p":"com.theoplayer.android.api.event.player","c":"PlayerEventTypes","l":"PlayerEventTypes()","url":"com/theoplayer/android/api/event/player/PlayerEventTypes.html#PlayerEventTypes()"}, {"p":"com.theoplayer.android.api.event.player","c":"PauseEvent","l":"getCurrentTime()","url":"com/theoplayer/android/api/event/player/PauseEvent.html#getCurrentTime()"}, {"p":"com.theoplayer.android.api.event.player","c":"ResizeEvent","l":"getCurrentTime()","url":"com/theoplayer/android/api/event/player/ResizeEvent.html#getCurrentTime()"}, {"p":"com.theoplayer.android.api.event.player","c":"ResizeEvent","l":"getWidth()","url":"com/theoplayer/android/api/event/player/ResizeEvent.html#getWidth()"}, {"p":"com.theoplayer.android.api.event.player","c":"ResizeEvent","l":"getHeight()","url":"com/theoplayer/android/api/event/player/ResizeEvent.html#getHeight()"}, {"p":"com.theoplayer.android.api.event.player","c":"PlayingEvent","l":"getCurrentTime()","url":"com/theoplayer/android/api/event/player/PlayingEvent.html#getCurrentTime()"}, {"p":"com.theoplayer.android.api.event.player","c":"LoadedMetadataEvent","l":"getCurrentTime()","url":"com/theoplayer/android/api/event/player/LoadedMetadataEvent.html#getCurrentTime()"}, {"p":"com.theoplayer.android.api.event.player","c":"DurationChangeEvent","l":"getDuration()","url":"com/theoplayer/android/api/event/player/DurationChangeEvent.html#getDuration()"}, {"p":"com.theoplayer.android.api.event.player","c":"ContentProtectionSuccessEvent","l":"getMediaTrackType()","url":"com/theoplayer/android/api/event/player/ContentProtectionSuccessEvent.html#getMediaTrackType()"}, {"p":"com.theoplayer.android.api.event.player","c":"VolumeChangeEvent","l":"getCurrentTime()","url":"com/theoplayer/android/api/event/player/VolumeChangeEvent.html#getCurrentTime()"}, {"p":"com.theoplayer.android.api.event.player","c":"VolumeChangeEvent","l":"getVolume()","url":"com/theoplayer/android/api/event/player/VolumeChangeEvent.html#getVolume()"}, {"p":"com.theoplayer.android.api.event.player","c":"ProgressEvent","l":"getCurrentTime()","url":"com/theoplayer/android/api/event/player/ProgressEvent.html#getCurrentTime()"}, {"p":"com.theoplayer.android.api.event.player","c":"CanPlayThroughEvent","l":"getCurrentTime()","url":"com/theoplayer/android/api/event/player/CanPlayThroughEvent.html#getCurrentTime()"}, {"p":"com.theoplayer.android.api.event.player","c":"EndedEvent","l":"getCurrentTime()","url":"com/theoplayer/android/api/event/player/EndedEvent.html#getCurrentTime()"}, {"p":"com.theoplayer.android.api.event.player","c":"SourceChangeEvent","l":"getSource()","url":"com/theoplayer/android/api/event/player/SourceChangeEvent.html#getSource()"}, {"p":"com.theoplayer.android.api.event.track.texttrack","c":"ChangeEvent","l":"getTrack()","url":"com/theoplayer/android/api/event/track/texttrack/ChangeEvent.html#getTrack()"}, {"p":"com.theoplayer.android.api.event.track.texttrack","c":"TextTrackEventTypes","l":"TextTrackEventTypes()","url":"com/theoplayer/android/api/event/track/texttrack/TextTrackEventTypes.html#TextTrackEventTypes()"}, {"p":"com.theoplayer.android.api.event.track.texttrack","c":"EnterCueEvent","l":"getTrack()","url":"com/theoplayer/android/api/event/track/texttrack/EnterCueEvent.html#getTrack()"}, {"p":"com.theoplayer.android.api.event.track.texttrack","c":"EnterCueEvent","l":"getCue()","url":"com/theoplayer/android/api/event/track/texttrack/EnterCueEvent.html#getCue()"}, {"p":"com.theoplayer.android.api.event.track.texttrack","c":"ExitCueEvent","l":"getTrack()","url":"com/theoplayer/android/api/event/track/texttrack/ExitCueEvent.html#getTrack()"}, {"p":"com.theoplayer.android.api.event.track.texttrack","c":"ExitCueEvent","l":"getCue()","url":"com/theoplayer/android/api/event/track/texttrack/ExitCueEvent.html#getCue()"}, {"p":"com.theoplayer.android.api.event.track.texttrack","c":"RemoveCueEvent","l":"getTrack()","url":"com/theoplayer/android/api/event/track/texttrack/RemoveCueEvent.html#getTrack()"}, {"p":"com.theoplayer.android.api.event.track.texttrack","c":"RemoveCueEvent","l":"getCue()","url":"com/theoplayer/android/api/event/track/texttrack/RemoveCueEvent.html#getCue()"}, {"p":"com.theoplayer.android.api.event.track.texttrack","c":"AddCueEvent","l":"getTrack()","url":"com/theoplayer/android/api/event/track/texttrack/AddCueEvent.html#getTrack()"}, {"p":"com.theoplayer.android.api.event.track.texttrack","c":"AddCueEvent","l":"getCue()","url":"com/theoplayer/android/api/event/track/texttrack/AddCueEvent.html#getCue()"}, {"p":"com.theoplayer.android.api.event.track.texttrack","c":"CueChangeEvent","l":"getTextTrack()","url":"com/theoplayer/android/api/event/track/texttrack/CueChangeEvent.html#getTextTrack()"}, {"p":"com.theoplayer.android.api.event.track.texttrack","c":"UpdateCueEvent","l":"getTrack()","url":"com/theoplayer/android/api/event/track/texttrack/UpdateCueEvent.html#getTrack()"}, {"p":"com.theoplayer.android.api.event.track.texttrack","c":"UpdateCueEvent","l":"getCue()","url":"com/theoplayer/android/api/event/track/texttrack/UpdateCueEvent.html#getCue()"}, {"p":"com.theoplayer.android.api.event.track.texttrack.list","c":"TextTrackListEventTypes","l":"TextTrackListEventTypes()","url":"com/theoplayer/android/api/event/track/texttrack/list/TextTrackListEventTypes.html#TextTrackListEventTypes()"}, {"p":"com.theoplayer.android.api.event.track.texttrack.texttrackcue","c":"TextTrackCueEvent","l":"getCue()","url":"com/theoplayer/android/api/event/track/texttrack/texttrackcue/TextTrackCueEvent.html#getCue()"}, {"p":"com.theoplayer.android.api.event.track.texttrack.texttrackcue","c":"TextTrackCueEventTypes","l":"TextTrackCueEventTypes()","url":"com/theoplayer/android/api/event/track/texttrack/texttrackcue/TextTrackCueEventTypes.html#TextTrackCueEventTypes()"}, {"p":"com.theoplayer.android.api.event.track.tracklist","c":"TrackListEvent","l":"getTrack()","url":"com/theoplayer/android/api/event/track/tracklist/TrackListEvent.html#getTrack()"}, {"p":"com.theoplayer.android.api.event.track.mediatrack.video","c":"VideoTrackEventTypes","l":"VideoTrackEventTypes()","url":"com/theoplayer/android/api/event/track/mediatrack/video/VideoTrackEventTypes.html#VideoTrackEventTypes()"}, {"p":"com.theoplayer.android.api.event.track.mediatrack.video.list","c":"VideoTrackListEventTypes","l":"VideoTrackListEventTypes()","url":"com/theoplayer/android/api/event/track/mediatrack/video/list/VideoTrackListEventTypes.html#VideoTrackListEventTypes()"}, {"p":"com.theoplayer.android.api.event.track.mediatrack.audio","c":"AudioTrackEventTypes","l":"AudioTrackEventTypes()","url":"com/theoplayer/android/api/event/track/mediatrack/audio/AudioTrackEventTypes.html#AudioTrackEventTypes()"}, {"p":"com.theoplayer.android.api.event.track.mediatrack.audio","c":"QualityChangedEvent","l":"getQuality()","url":"com/theoplayer/android/api/event/track/mediatrack/audio/QualityChangedEvent.html#getQuality()"}, {"p":"com.theoplayer.android.api.event.track.mediatrack.audio.list","c":"AudioTrackListEventTypes","l":"AudioTrackListEventTypes()","url":"com/theoplayer/android/api/event/track/mediatrack/audio/list/AudioTrackListEventTypes.html#AudioTrackListEventTypes()"}, {"p":"com.theoplayer.android.api.event.track.mediatrack","c":"AbstractTargetQualityChangedEvent","l":"getQuality()","url":"com/theoplayer/android/api/event/track/mediatrack/AbstractTargetQualityChangedEvent.html#getQuality()"}, {"p":"com.theoplayer.android.api.event.track.mediatrack","c":"AbstractTargetQualityChangedEvent","l":"getQualities()","url":"com/theoplayer/android/api/event/track/mediatrack/AbstractTargetQualityChangedEvent.html#getQualities()"}, {"p":"com.theoplayer.android.api.event.track.mediatrack.quality","c":"QualityEventTypes","l":"QualityEventTypes()","url":"com/theoplayer/android/api/event/track/mediatrack/quality/QualityEventTypes.html#QualityEventTypes()"}, {"p":"com.theoplayer.android.api.event.ads","c":"AdIntegrationKind","l":"from(String)","url":"com/theoplayer/android/api/event/ads/AdIntegrationKind.html#from(java.lang.String)"}, {"p":"com.theoplayer.android.api.event.ads","c":"AdIntegrationKind","l":"toString()","url":"com/theoplayer/android/api/event/ads/AdIntegrationKind.html#toString()"}, {"p":"com.theoplayer.android.api.event.ads","c":"AdIntegrationKind","l":"values()","url":"com/theoplayer/android/api/event/ads/AdIntegrationKind.html#values()"}, {"p":"com.theoplayer.android.api.event.ads","c":"AdIntegrationKind","l":"valueOf(String)","url":"com/theoplayer/android/api/event/ads/AdIntegrationKind.html#valueOf(java.lang.String)"}, {"p":"com.theoplayer.android.api.event.ads","c":"AdIntegrationKind","l":"getType()","url":"com/theoplayer/android/api/event/ads/AdIntegrationKind.html#getType()"}, {"p":"com.theoplayer.android.api.event.ads","c":"AdErrorEvent","l":"getError()","url":"com/theoplayer/android/api/event/ads/AdErrorEvent.html#getError()"}, {"p":"com.theoplayer.android.api.event.ads","c":"SingleAdEvent","l":"getAd()","url":"com/theoplayer/android/api/event/ads/SingleAdEvent.html#getAd()"}, {"p":"com.theoplayer.android.api.event.ads","c":"AdsEventTypes.Identifiers","l":"AdsEventTypes.Identifiers()","url":"com/theoplayer/android/api/event/ads/AdsEventTypes.Identifiers.html#AdsEventTypes.Identifiers()"}, {"p":"com.theoplayer.android.api.event.ads","c":"AdsEventTypes","l":"AdsEventTypes()","url":"com/theoplayer/android/api/event/ads/AdsEventTypes.html#AdsEventTypes()"}, {"p":"com.theoplayer.android.api.event.ads","c":"AdBreakEvent","l":"getAdBreak()","url":"com/theoplayer/android/api/event/ads/AdBreakEvent.html#getAdBreak()"}, {"p":"com.theoplayer.android.api.error","c":"ErrorCode","l":"getCategory()","url":"com/theoplayer/android/api/error/ErrorCode.html#getCategory()"}, {"p":"com.theoplayer.android.api.error","c":"ErrorCode","l":"fromId(int)","url":"com/theoplayer/android/api/error/ErrorCode.html#fromId(int)"}, {"p":"com.theoplayer.android.api.error","c":"ErrorCode","l":"values()","url":"com/theoplayer/android/api/error/ErrorCode.html#values()"}, {"p":"com.theoplayer.android.api.error","c":"ErrorCode","l":"valueOf(String)","url":"com/theoplayer/android/api/error/ErrorCode.html#valueOf(java.lang.String)"}, {"p":"com.theoplayer.android.api.error","c":"ErrorCode","l":"getId()","url":"com/theoplayer/android/api/error/ErrorCode.html#getId()"}, {"p":"com.theoplayer.android.api.error","c":"ContentProtectionException","l":"ContentProtectionException(ErrorCode, String, String, int, String, String, int)","url":"com/theoplayer/android/api/error/ContentProtectionException.html#ContentProtectionException(com.theoplayer.android.api.error.ErrorCode,java.lang.String,java.lang.String,int,java.lang.String,java.lang.String,int)"}, {"p":"com.theoplayer.android.api.error","c":"ContentProtectionException","l":"ContentProtectionException(ErrorCode, String, Throwable, String, int, String, String, int)","url":"com/theoplayer/android/api/error/ContentProtectionException.html#ContentProtectionException(com.theoplayer.android.api.error.ErrorCode,java.lang.String,java.lang.Throwable,java.lang.String,int,java.lang.String,java.lang.String,int)"}, {"p":"com.theoplayer.android.api.error","c":"ContentProtectionException","l":"getUrl()","url":"com/theoplayer/android/api/error/ContentProtectionException.html#getUrl()"}, {"p":"com.theoplayer.android.api.error","c":"ContentProtectionException","l":"getStatus()","url":"com/theoplayer/android/api/error/ContentProtectionException.html#getStatus()"}, {"p":"com.theoplayer.android.api.error","c":"ContentProtectionException","l":"getStatusText()","url":"com/theoplayer/android/api/error/ContentProtectionException.html#getStatusText()"}, {"p":"com.theoplayer.android.api.error","c":"ContentProtectionException","l":"getResponse()","url":"com/theoplayer/android/api/error/ContentProtectionException.html#getResponse()"}, {"p":"com.theoplayer.android.api.error","c":"ErrorCategory","l":"fromId(int)","url":"com/theoplayer/android/api/error/ErrorCategory.html#fromId(int)"}, {"p":"com.theoplayer.android.api.error","c":"ErrorCategory","l":"fromCode(ErrorCode)","url":"com/theoplayer/android/api/error/ErrorCategory.html#fromCode(com.theoplayer.android.api.error.ErrorCode)"}, {"p":"com.theoplayer.android.api.error","c":"ErrorCategory","l":"values()","url":"com/theoplayer/android/api/error/ErrorCategory.html#values()"}, {"p":"com.theoplayer.android.api.error","c":"ErrorCategory","l":"valueOf(String)","url":"com/theoplayer/android/api/error/ErrorCategory.html#valueOf(java.lang.String)"}, {"p":"com.theoplayer.android.api.error","c":"ErrorCategory","l":"getId()","url":"com/theoplayer/android/api/error/ErrorCategory.html#getId()"}, {"p":"com.theoplayer.android.api.error","c":"THEOplayerException","l":"THEOplayerException(ErrorCode, String)","url":"com/theoplayer/android/api/error/THEOplayerException.html#THEOplayerException(com.theoplayer.android.api.error.ErrorCode,java.lang.String)"}, {"p":"com.theoplayer.android.api.error","c":"THEOplayerException","l":"THEOplayerException(ErrorCode, String, Throwable)","url":"com/theoplayer/android/api/error/THEOplayerException.html#THEOplayerException(com.theoplayer.android.api.error.ErrorCode,java.lang.String,java.lang.Throwable)"}, {"p":"com.theoplayer.android.api.error","c":"THEOplayerException","l":"getCode()","url":"com/theoplayer/android/api/error/THEOplayerException.html#getCode()"}, {"p":"com.theoplayer.android.api.error","c":"THEOplayerException","l":"getCategory()","url":"com/theoplayer/android/api/error/THEOplayerException.html#getCategory()"}, {"p":"com.theoplayer.android.api.contentprotection","c":"RequestMethod","l":"values()","url":"com/theoplayer/android/api/contentprotection/RequestMethod.html#values()"}, {"p":"com.theoplayer.android.api.contentprotection","c":"RequestMethod","l":"valueOf(String)","url":"com/theoplayer/android/api/contentprotection/RequestMethod.html#valueOf(java.lang.String)"}, {"p":"com.theoplayer.android.api.contentprotection","c":"LicenseRequestCallback","l":"request(Request)","url":"com/theoplayer/android/api/contentprotection/LicenseRequestCallback.html#request(com.theoplayer.android.api.contentprotection.Request)"}, {"p":"com.theoplayer.android.api.contentprotection","c":"ContentProtectionIntegration","l":"ContentProtectionIntegration()","url":"com/theoplayer/android/api/contentprotection/ContentProtectionIntegration.html#ContentProtectionIntegration()"}, {"p":"com.theoplayer.android.api.contentprotection","c":"ContentProtectionIntegration","l":"onCertificateRequest(Request, CertificateRequestCallback)","url":"com/theoplayer/android/api/contentprotection/ContentProtectionIntegration.html#onCertificateRequest(com.theoplayer.android.api.contentprotection.Request,com.theoplayer.android.api.contentprotection.CertificateRequestCallback)"}, {"p":"com.theoplayer.android.api.contentprotection","c":"ContentProtectionIntegration","l":"onCertificateResponse(Response, CertificateResponseCallback)","url":"com/theoplayer/android/api/contentprotection/ContentProtectionIntegration.html#onCertificateResponse(com.theoplayer.android.api.contentprotection.Response,com.theoplayer.android.api.contentprotection.CertificateResponseCallback)"}, {"p":"com.theoplayer.android.api.contentprotection","c":"ContentProtectionIntegration","l":"onLicenseRequest(Request, LicenseRequestCallback)","url":"com/theoplayer/android/api/contentprotection/ContentProtectionIntegration.html#onLicenseRequest(com.theoplayer.android.api.contentprotection.Request,com.theoplayer.android.api.contentprotection.LicenseRequestCallback)"}, {"p":"com.theoplayer.android.api.contentprotection","c":"ContentProtectionIntegration","l":"onLicenseResponse(Response, LicenseResponseCallback)","url":"com/theoplayer/android/api/contentprotection/ContentProtectionIntegration.html#onLicenseResponse(com.theoplayer.android.api.contentprotection.Response,com.theoplayer.android.api.contentprotection.LicenseResponseCallback)"}, {"p":"com.theoplayer.android.api.contentprotection","c":"LicenseResponseCallback","l":"respond(Array)","url":"com/theoplayer/android/api/contentprotection/LicenseResponseCallback.html#respond(kotlin.Array)"}, {"p":"com.theoplayer.android.api.contentprotection","c":"LicenseResponseCallback","l":"error(Throwable)","url":"com/theoplayer/android/api/contentprotection/LicenseResponseCallback.html#error(java.lang.Throwable)"}, {"p":"com.theoplayer.android.api.contentprotection","c":"ContentProtectionIntegrationFactory","l":"build(DRMConfiguration)","url":"com/theoplayer/android/api/contentprotection/ContentProtectionIntegrationFactory.html#build(com.theoplayer.android.api.source.drm.DRMConfiguration)"}, {"p":"com.theoplayer.android.api.contentprotection","c":"Request","l":"Request(String)","url":"com/theoplayer/android/api/contentprotection/Request.html#Request(java.lang.String)"}, {"p":"com.theoplayer.android.api.contentprotection","c":"Request","l":"getUrl()","url":"com/theoplayer/android/api/contentprotection/Request.html#getUrl()"}, {"p":"com.theoplayer.android.api.contentprotection","c":"Request","l":"setUrl(String)","url":"com/theoplayer/android/api/contentprotection/Request.html#setUrl(java.lang.String)"}, {"p":"com.theoplayer.android.api.contentprotection","c":"Request","l":"getMethod()","url":"com/theoplayer/android/api/contentprotection/Request.html#getMethod()"}, {"p":"com.theoplayer.android.api.contentprotection","c":"Request","l":"setMethod(RequestMethod)","url":"com/theoplayer/android/api/contentprotection/Request.html#setMethod(com.theoplayer.android.api.contentprotection.RequestMethod)"}, {"p":"com.theoplayer.android.api.contentprotection","c":"Request","l":"getHeaders()","url":"com/theoplayer/android/api/contentprotection/Request.html#getHeaders()"}, {"p":"com.theoplayer.android.api.contentprotection","c":"Request","l":"setHeaders(Map)","url":"com/theoplayer/android/api/contentprotection/Request.html#setHeaders(java.util.Map)"}, {"p":"com.theoplayer.android.api.contentprotection","c":"Request","l":"getBody()","url":"com/theoplayer/android/api/contentprotection/Request.html#getBody()"}, {"p":"com.theoplayer.android.api.contentprotection","c":"Request","l":"setBody(Array)","url":"com/theoplayer/android/api/contentprotection/Request.html#setBody(kotlin.Array)"}, {"p":"com.theoplayer.android.api.contentprotection","c":"CertificateRequestCallback","l":"request(Request)","url":"com/theoplayer/android/api/contentprotection/CertificateRequestCallback.html#request(com.theoplayer.android.api.contentprotection.Request)"}, {"p":"com.theoplayer.android.api.contentprotection","c":"KeySystemId","l":"values()","url":"com/theoplayer/android/api/contentprotection/KeySystemId.html#values()"}, {"p":"com.theoplayer.android.api.contentprotection","c":"KeySystemId","l":"valueOf(String)","url":"com/theoplayer/android/api/contentprotection/KeySystemId.html#valueOf(java.lang.String)"}, {"p":"com.theoplayer.android.api.contentprotection","c":"Response","l":"getRequest()","url":"com/theoplayer/android/api/contentprotection/Response.html#getRequest()"}, {"p":"com.theoplayer.android.api.contentprotection","c":"Response","l":"getUrl()","url":"com/theoplayer/android/api/contentprotection/Response.html#getUrl()"}, {"p":"com.theoplayer.android.api.contentprotection","c":"Response","l":"getStatus()","url":"com/theoplayer/android/api/contentprotection/Response.html#getStatus()"}, {"p":"com.theoplayer.android.api.contentprotection","c":"Response","l":"getStatusText()","url":"com/theoplayer/android/api/contentprotection/Response.html#getStatusText()"}, {"p":"com.theoplayer.android.api.contentprotection","c":"Response","l":"getHeaders()","url":"com/theoplayer/android/api/contentprotection/Response.html#getHeaders()"}, {"p":"com.theoplayer.android.api.contentprotection","c":"Response","l":"getBody()","url":"com/theoplayer/android/api/contentprotection/Response.html#getBody()"}, {"p":"com.theoplayer.android.api.contentprotection","c":"CertificateResponseCallback","l":"respond(Array)","url":"com/theoplayer/android/api/contentprotection/CertificateResponseCallback.html#respond(kotlin.Array)"}, {"p":"com.theoplayer.android.api.contentprotection","c":"CertificateResponseCallback","l":"error(Throwable)","url":"com/theoplayer/android/api/contentprotection/CertificateResponseCallback.html#error(java.lang.Throwable)"}, {"p":"com.theoplayer.android.api.source.addescription","c":"GoogleImaAdDescription.Builder","l":"GoogleImaAdDescription.Builder(String)","url":"com/theoplayer/android/api/source/addescription/GoogleImaAdDescription.Builder.html#GoogleImaAdDescription.Builder(java.lang.String)"}, {"p":"com.theoplayer.android.api.source.addescription","c":"GoogleImaAdDescription.Builder","l":"timeOffset(String)","url":"com/theoplayer/android/api/source/addescription/GoogleImaAdDescription.Builder.html#timeOffset(java.lang.String)"}, {"p":"com.theoplayer.android.api.source.addescription","c":"GoogleImaAdDescription.Builder","l":"build()","url":"com/theoplayer/android/api/source/addescription/GoogleImaAdDescription.Builder.html#build()"}, {"p":"com.theoplayer.android.api.source.addescription","c":"GoogleImaAdDescription","l":"getSources()","url":"com/theoplayer/android/api/source/addescription/GoogleImaAdDescription.html#getSources()"}, {"p":"com.theoplayer.android.api.source.addescription","c":"GoogleImaAdDescription","l":"getTimeOffset()","url":"com/theoplayer/android/api/source/addescription/GoogleImaAdDescription.html#getTimeOffset()"}, {"p":"com.theoplayer.android.api.source.addescription","c":"AdDescription","l":"AdDescription(AdIntegration)","url":"com/theoplayer/android/api/source/addescription/AdDescription.html#AdDescription(com.theoplayer.android.api.source.AdIntegration)"}, {"p":"com.theoplayer.android.api.source.addescription","c":"AdDescription","l":"getIntegration()","url":"com/theoplayer/android/api/ads/theoads/TheoAdDescription.html#getIntegration()"}, {"p":"com.theoplayer.android.api.source.dash","c":"DashPlaybackConfiguration.Builder","l":"DashPlaybackConfiguration.Builder()","url":"com/theoplayer/android/api/source/dash/DashPlaybackConfiguration.Builder.html#DashPlaybackConfiguration.Builder()"}, {"p":"com.theoplayer.android.api.source.dash","c":"DashPlaybackConfiguration.Builder","l":"ignoreAvailabilityWindow(Boolean)","url":"com/theoplayer/android/api/source/dash/DashPlaybackConfiguration.Builder.html#ignoreAvailabilityWindow(java.lang.Boolean)"}, {"p":"com.theoplayer.android.api.source.dash","c":"DashPlaybackConfiguration.Builder","l":"build()","url":"com/theoplayer/android/api/source/dash/DashPlaybackConfiguration.Builder.html#build()"}, {"p":"com.theoplayer.android.api.source.dash","c":"DashPlaybackConfiguration","l":"ignoreAvailabilityWindow()","url":"com/theoplayer/android/api/source/dash/DashPlaybackConfiguration.html#ignoreAvailabilityWindow()"}, {"p":"com.theoplayer.android.api.source.dash","c":"DashPlaybackConfiguration","l":"equals(Object)","url":"com/theoplayer/android/api/source/dash/DashPlaybackConfiguration.html#equals(Object)"}, {"p":"com.theoplayer.android.api.source.dash","c":"DashPlaybackConfiguration","l":"hashCode()","url":"com/theoplayer/android/api/source/dash/DashPlaybackConfiguration.html#hashCode()"}, {"p":"com.theoplayer.android.api.source.drm","c":"LicenseType","l":"values()","url":"com/theoplayer/android/api/source/drm/LicenseType.html#values()"}, {"p":"com.theoplayer.android.api.source.drm","c":"LicenseType","l":"valueOf(String)","url":"com/theoplayer/android/api/source/drm/LicenseType.html#valueOf(java.lang.String)"}, {"p":"com.theoplayer.android.api.source.drm","c":"KeySystemConfiguration.Builder","l":"KeySystemConfiguration.Builder(String)","url":"com/theoplayer/android/api/source/drm/KeySystemConfiguration.Builder.html#KeySystemConfiguration.Builder(java.lang.String)"}, {"p":"com.theoplayer.android.api.source.drm","c":"KeySystemConfiguration.Builder","l":"headers(Map)","url":"com/theoplayer/android/api/source/drm/KeySystemConfiguration.Builder.html#headers(java.util.Map)"}, {"p":"com.theoplayer.android.api.source.drm","c":"KeySystemConfiguration.Builder","l":"useCredentials(boolean)","url":"com/theoplayer/android/api/source/drm/KeySystemConfiguration.Builder.html#useCredentials(boolean)"}, {"p":"com.theoplayer.android.api.source.drm","c":"KeySystemConfiguration.Builder","l":"queryParameters(Map)","url":"com/theoplayer/android/api/source/drm/KeySystemConfiguration.Builder.html#queryParameters(java.util.Map)"}, {"p":"com.theoplayer.android.api.source.drm","c":"KeySystemConfiguration.Builder","l":"licenseType(LicenseType)","url":"com/theoplayer/android/api/source/drm/KeySystemConfiguration.Builder.html#licenseType(com.theoplayer.android.api.source.drm.LicenseType)"}, {"p":"com.theoplayer.android.api.source.drm","c":"KeySystemConfiguration.Builder","l":"certificate(Array)","url":"com/theoplayer/android/api/source/drm/KeySystemConfiguration.Builder.html#certificate(kotlin.Array)"}, {"p":"com.theoplayer.android.api.source.drm","c":"KeySystemConfiguration.Builder","l":"build()","url":"com/theoplayer/android/api/source/drm/KeySystemConfiguration.Builder.html#build()"}, {"p":"com.theoplayer.android.api.source.drm","c":"KeySystemConfiguration","l":"KeySystemConfiguration(String, Map, boolean, Map, LicenseType, String)","url":"com/theoplayer/android/api/source/drm/KeySystemConfiguration.html#KeySystemConfiguration(java.lang.String,java.util.Map,boolean,java.util.Map,com.theoplayer.android.api.source.drm.LicenseType,java.lang.String)"}, {"p":"com.theoplayer.android.api.source.drm","c":"KeySystemConfiguration","l":"getLicenseAcquisitionURL()","url":"com/theoplayer/android/api/source/drm/preintegration/KeyOSKeySystemConfiguration.html#getLicenseAcquisitionURL()"}, {"p":"com.theoplayer.android.api.source.drm","c":"KeySystemConfiguration","l":"getHeaders()","url":"com/theoplayer/android/api/source/drm/preintegration/KeyOSKeySystemConfiguration.html#getHeaders()"}, {"p":"com.theoplayer.android.api.source.drm","c":"KeySystemConfiguration","l":"getQueryParameters()","url":"com/theoplayer/android/api/source/drm/preintegration/KeyOSKeySystemConfiguration.html#getQueryParameters()"}, {"p":"com.theoplayer.android.api.source.drm","c":"KeySystemConfiguration","l":"getLicenseType()","url":"com/theoplayer/android/api/source/drm/preintegration/KeyOSKeySystemConfiguration.html#getLicenseType()"}, {"p":"com.theoplayer.android.api.source.drm","c":"KeySystemConfiguration","l":"isUseCredentials()","url":"com/theoplayer/android/api/source/drm/preintegration/KeyOSKeySystemConfiguration.html#isUseCredentials()"}, {"p":"com.theoplayer.android.api.source.drm","c":"KeySystemConfiguration","l":"getCertificate()","url":"com/theoplayer/android/api/source/drm/preintegration/KeyOSKeySystemConfiguration.html#getCertificate()"}, {"p":"com.theoplayer.android.api.source.drm","c":"KeySystemConfiguration","l":"equals(Object)","url":"com/theoplayer/android/api/source/drm/preintegration/KeyOSKeySystemConfiguration.html#equals(Object)"}, {"p":"com.theoplayer.android.api.source.drm","c":"KeySystemConfiguration","l":"hashCode()","url":"com/theoplayer/android/api/source/drm/preintegration/KeyOSKeySystemConfiguration.html#hashCode()"}, {"p":"com.theoplayer.android.api.source.drm","c":"ClearkeyKeySystemConfiguration.ClearkeyDecryptionKey","l":"ClearkeyKeySystemConfiguration.ClearkeyDecryptionKey(String, String)","url":"com/theoplayer/android/api/source/drm/ClearkeyKeySystemConfiguration.ClearkeyDecryptionKey.html#ClearkeyKeySystemConfiguration.ClearkeyDecryptionKey(java.lang.String,java.lang.String)"}, {"p":"com.theoplayer.android.api.source.drm","c":"ClearkeyKeySystemConfiguration.ClearkeyDecryptionKey","l":"getId()","url":"com/theoplayer/android/api/source/drm/ClearkeyKeySystemConfiguration.ClearkeyDecryptionKey.html#getId()"}, {"p":"com.theoplayer.android.api.source.drm","c":"ClearkeyKeySystemConfiguration.ClearkeyDecryptionKey","l":"getValue()","url":"com/theoplayer/android/api/source/drm/ClearkeyKeySystemConfiguration.ClearkeyDecryptionKey.html#getValue()"}, {"p":"com.theoplayer.android.api.source.drm","c":"ClearkeyKeySystemConfiguration.Builder","l":"ClearkeyKeySystemConfiguration.Builder(String)","url":"com/theoplayer/android/api/source/drm/ClearkeyKeySystemConfiguration.Builder.html#ClearkeyKeySystemConfiguration.Builder(java.lang.String)"}, {"p":"com.theoplayer.android.api.source.drm","c":"ClearkeyKeySystemConfiguration.Builder","l":"keys(Array)","url":"com/theoplayer/android/api/source/drm/ClearkeyKeySystemConfiguration.Builder.html#keys(kotlin.Array)"}, {"p":"com.theoplayer.android.api.source.drm","c":"ClearkeyKeySystemConfiguration.Builder","l":"headers(Map)","url":"com/theoplayer/android/api/source/drm/ClearkeyKeySystemConfiguration.Builder.html#headers(java.util.Map)"}, {"p":"com.theoplayer.android.api.source.drm","c":"ClearkeyKeySystemConfiguration.Builder","l":"useCredentials(boolean)","url":"com/theoplayer/android/api/source/drm/ClearkeyKeySystemConfiguration.Builder.html#useCredentials(boolean)"}, {"p":"com.theoplayer.android.api.source.drm","c":"ClearkeyKeySystemConfiguration.Builder","l":"queryParameters(Map)","url":"com/theoplayer/android/api/source/drm/ClearkeyKeySystemConfiguration.Builder.html#queryParameters(java.util.Map)"}, {"p":"com.theoplayer.android.api.source.drm","c":"ClearkeyKeySystemConfiguration.Builder","l":"build()","url":"com/theoplayer/android/api/source/drm/ClearkeyKeySystemConfiguration.Builder.html#build()"}, {"p":"com.theoplayer.android.api.source.drm","c":"ClearkeyKeySystemConfiguration","l":"getKeys()","url":"com/theoplayer/android/api/source/drm/ClearkeyKeySystemConfiguration.html#getKeys()"}, {"p":"com.theoplayer.android.api.source.drm","c":"DRMConfiguration.Builder","l":"DRMConfiguration.Builder()","url":"com/theoplayer/android/api/source/drm/DRMConfiguration.Builder.html#DRMConfiguration.Builder()"}, {"p":"com.theoplayer.android.api.source.drm","c":"DRMConfiguration.Builder","l":"fairplay(FairPlayKeySystemConfiguration)","url":"com/theoplayer/android/api/source/drm/DRMConfiguration.Builder.html#fairplay(com.theoplayer.android.api.source.drm.FairPlayKeySystemConfiguration)"}, {"p":"com.theoplayer.android.api.source.drm","c":"DRMConfiguration.Builder","l":"playready(KeySystemConfiguration)","url":"com/theoplayer/android/api/source/drm/DRMConfiguration.Builder.html#playready(com.theoplayer.android.api.source.drm.KeySystemConfiguration)"}, {"p":"com.theoplayer.android.api.source.drm","c":"DRMConfiguration.Builder","l":"widevine(KeySystemConfiguration)","url":"com/theoplayer/android/api/source/drm/DRMConfiguration.Builder.html#widevine(com.theoplayer.android.api.source.drm.KeySystemConfiguration)"}, {"p":"com.theoplayer.android.api.source.drm","c":"DRMConfiguration.Builder","l":"clearkey(ClearkeyKeySystemConfiguration)","url":"com/theoplayer/android/api/source/drm/DRMConfiguration.Builder.html#clearkey(com.theoplayer.android.api.source.drm.ClearkeyKeySystemConfiguration)"}, {"p":"com.theoplayer.android.api.source.drm","c":"DRMConfiguration.Builder","l":"integrationParameters(Map)","url":"com/theoplayer/android/api/source/drm/DRMConfiguration.Builder.html#integrationParameters(java.util.Map)"}, {"p":"com.theoplayer.android.api.source.drm","c":"DRMConfiguration.Builder","l":"customIntegrationId(String)","url":"com/theoplayer/android/api/source/drm/DRMConfiguration.Builder.html#customIntegrationId(java.lang.String)"}, {"p":"com.theoplayer.android.api.source.drm","c":"DRMConfiguration.Builder","l":"build()","url":"com/theoplayer/android/api/source/drm/DRMConfiguration.Builder.html#build()"}, {"p":"com.theoplayer.android.api.source.drm","c":"DRMConfiguration","l":"DRMConfiguration(FairPlayKeySystemConfiguration, KeySystemConfiguration, KeySystemConfiguration, ClearkeyKeySystemConfiguration, Map, String, DRMIntegrationId)","url":"com/theoplayer/android/api/source/drm/DRMConfiguration.html#DRMConfiguration(com.theoplayer.android.api.source.drm.FairPlayKeySystemConfiguration,com.theoplayer.android.api.source.drm.KeySystemConfiguration,com.theoplayer.android.api.source.drm.KeySystemConfiguration,com.theoplayer.android.api.source.drm.ClearkeyKeySystemConfiguration,java.util.Map,java.lang.String,com.theoplayer.android.api.source.drm.DRMIntegrationId)"}, {"p":"com.theoplayer.android.api.source.drm","c":"DRMConfiguration","l":"getFairplay()","url":"com/theoplayer/android/api/source/drm/preintegration/XstreamConfiguration.html#getFairplay()"}, {"p":"com.theoplayer.android.api.source.drm","c":"DRMConfiguration","l":"getPlayready()","url":"com/theoplayer/android/api/source/drm/preintegration/XstreamConfiguration.html#getPlayready()"}, {"p":"com.theoplayer.android.api.source.drm","c":"DRMConfiguration","l":"getWidevine()","url":"com/theoplayer/android/api/source/drm/preintegration/XstreamConfiguration.html#getWidevine()"}, {"p":"com.theoplayer.android.api.source.drm","c":"DRMConfiguration","l":"getClearkey()","url":"com/theoplayer/android/api/source/drm/preintegration/XstreamConfiguration.html#getClearkey()"}, {"p":"com.theoplayer.android.api.source.drm","c":"DRMConfiguration","l":"getIntegrationParameters()","url":"com/theoplayer/android/api/source/drm/preintegration/XstreamConfiguration.html#getIntegrationParameters()"}, {"p":"com.theoplayer.android.api.source.drm","c":"DRMConfiguration","l":"getIntegration()","url":"com/theoplayer/android/api/source/drm/preintegration/XstreamConfiguration.html#getIntegration()"}, {"p":"com.theoplayer.android.api.source.drm","c":"DRMConfiguration","l":"getCustomIntegrationId()","url":"com/theoplayer/android/api/source/drm/preintegration/XstreamConfiguration.html#getCustomIntegrationId()"}, {"p":"com.theoplayer.android.api.source.drm","c":"DRMConfiguration","l":"equals(Object)","url":"com/theoplayer/android/api/source/drm/preintegration/IrdetoConfiguration.html#equals(Object)"}, {"p":"com.theoplayer.android.api.source.drm","c":"DRMConfiguration","l":"hashCode()","url":"com/theoplayer/android/api/source/drm/preintegration/IrdetoConfiguration.html#hashCode()"}, {"p":"com.theoplayer.android.api.source.drm","c":"DRMIntegrationId","l":"from(String)","url":"com/theoplayer/android/api/source/drm/DRMIntegrationId.html#from(java.lang.String)"}, {"p":"com.theoplayer.android.api.source.drm","c":"DRMIntegrationId","l":"values()","url":"com/theoplayer/android/api/source/drm/DRMIntegrationId.html#values()"}, {"p":"com.theoplayer.android.api.source.drm","c":"DRMIntegrationId","l":"valueOf(String)","url":"com/theoplayer/android/api/source/drm/DRMIntegrationId.html#valueOf(java.lang.String)"}, {"p":"com.theoplayer.android.api.source.drm","c":"DRMIntegrationId","l":"getIntegrationId()","url":"com/theoplayer/android/api/source/drm/DRMIntegrationId.html#getIntegrationId()"}, {"p":"com.theoplayer.android.api.source.drm","c":"FairPlayKeySystemConfiguration.Builder","l":"FairPlayKeySystemConfiguration.Builder(String, String)","url":"com/theoplayer/android/api/source/drm/FairPlayKeySystemConfiguration.Builder.html#FairPlayKeySystemConfiguration.Builder(java.lang.String,java.lang.String)"}, {"p":"com.theoplayer.android.api.source.drm","c":"FairPlayKeySystemConfiguration.Builder","l":"headers(Map)","url":"com/theoplayer/android/api/source/drm/FairPlayKeySystemConfiguration.Builder.html#headers(java.util.Map)"}, {"p":"com.theoplayer.android.api.source.drm","c":"FairPlayKeySystemConfiguration.Builder","l":"useCredentials(boolean)","url":"com/theoplayer/android/api/source/drm/FairPlayKeySystemConfiguration.Builder.html#useCredentials(boolean)"}, {"p":"com.theoplayer.android.api.source.drm","c":"FairPlayKeySystemConfiguration.Builder","l":"queryParameters(Map)","url":"com/theoplayer/android/api/source/drm/FairPlayKeySystemConfiguration.Builder.html#queryParameters(java.util.Map)"}, {"p":"com.theoplayer.android.api.source.drm","c":"FairPlayKeySystemConfiguration.Builder","l":"build()","url":"com/theoplayer/android/api/source/drm/FairPlayKeySystemConfiguration.Builder.html#build()"}, {"p":"com.theoplayer.android.api.source.drm","c":"FairPlayKeySystemConfiguration","l":"getCertificateURL()","url":"com/theoplayer/android/api/source/drm/FairPlayKeySystemConfiguration.html#getCertificateURL()"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"DRMPreIntegrationConfiguration","l":"DRMPreIntegrationConfiguration(DRMIntegrationId, FairPlayKeySystemConfiguration, KeySystemConfiguration, KeySystemConfiguration, ClearkeyKeySystemConfiguration)","url":"com/theoplayer/android/api/source/drm/preintegration/DRMPreIntegrationConfiguration.html#DRMPreIntegrationConfiguration(com.theoplayer.android.api.source.drm.DRMIntegrationId,com.theoplayer.android.api.source.drm.FairPlayKeySystemConfiguration,com.theoplayer.android.api.source.drm.KeySystemConfiguration,com.theoplayer.android.api.source.drm.KeySystemConfiguration,com.theoplayer.android.api.source.drm.ClearkeyKeySystemConfiguration)"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"VudrmDRMConfiguration.Builder","l":"VudrmDRMConfiguration.Builder(String)","url":"com/theoplayer/android/api/source/drm/preintegration/VudrmDRMConfiguration.Builder.html#VudrmDRMConfiguration.Builder(java.lang.String)"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"VudrmDRMConfiguration.Builder","l":"playready(KeySystemConfiguration)","url":"com/theoplayer/android/api/source/drm/preintegration/VudrmDRMConfiguration.Builder.html#playready(com.theoplayer.android.api.source.drm.KeySystemConfiguration)"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"VudrmDRMConfiguration.Builder","l":"widevine(KeySystemConfiguration)","url":"com/theoplayer/android/api/source/drm/preintegration/VudrmDRMConfiguration.Builder.html#widevine(com.theoplayer.android.api.source.drm.KeySystemConfiguration)"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"VudrmDRMConfiguration.Builder","l":"build()","url":"com/theoplayer/android/api/source/drm/preintegration/VudrmDRMConfiguration.Builder.html#build()"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"VudrmDRMConfiguration","l":"getToken()","url":"com/theoplayer/android/api/source/drm/preintegration/VudrmDRMConfiguration.html#getToken()"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"KeyOSDRMConfiguration.Builder","l":"KeyOSDRMConfiguration.Builder()","url":"com/theoplayer/android/api/source/drm/preintegration/KeyOSDRMConfiguration.Builder.html#KeyOSDRMConfiguration.Builder()"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"KeyOSDRMConfiguration.Builder","l":"customdata(String)","url":"com/theoplayer/android/api/source/drm/preintegration/KeyOSDRMConfiguration.Builder.html#customdata(java.lang.String)"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"KeyOSDRMConfiguration.Builder","l":"playready(KeyOSKeySystemConfiguration)","url":"com/theoplayer/android/api/source/drm/preintegration/KeyOSDRMConfiguration.Builder.html#playready(com.theoplayer.android.api.source.drm.preintegration.KeyOSKeySystemConfiguration)"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"KeyOSDRMConfiguration.Builder","l":"playready(String)","url":"com/theoplayer/android/api/source/drm/preintegration/KeyOSDRMConfiguration.Builder.html#playready(java.lang.String)"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"KeyOSDRMConfiguration.Builder","l":"widevine(KeyOSKeySystemConfiguration)","url":"com/theoplayer/android/api/source/drm/preintegration/KeyOSDRMConfiguration.Builder.html#widevine(com.theoplayer.android.api.source.drm.preintegration.KeyOSKeySystemConfiguration)"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"KeyOSDRMConfiguration.Builder","l":"widevine(String)","url":"com/theoplayer/android/api/source/drm/preintegration/KeyOSDRMConfiguration.Builder.html#widevine(java.lang.String)"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"KeyOSDRMConfiguration.Builder","l":"build()","url":"com/theoplayer/android/api/source/drm/preintegration/KeyOSDRMConfiguration.Builder.html#build()"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"KeyOSDRMConfiguration","l":"getCustomdata()","url":"com/theoplayer/android/api/source/drm/preintegration/KeyOSDRMConfiguration.html#getCustomdata()"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"ConaxDRMConfiguration.Builder","l":"ConaxDRMConfiguration.Builder(String, String)","url":"com/theoplayer/android/api/source/drm/preintegration/ConaxDRMConfiguration.Builder.html#ConaxDRMConfiguration.Builder(java.lang.String,java.lang.String)"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"ConaxDRMConfiguration.Builder","l":"widevine(KeySystemConfiguration)","url":"com/theoplayer/android/api/source/drm/preintegration/ConaxDRMConfiguration.Builder.html#widevine(com.theoplayer.android.api.source.drm.KeySystemConfiguration)"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"ConaxDRMConfiguration.Builder","l":"clearkey(ClearkeyKeySystemConfiguration)","url":"com/theoplayer/android/api/source/drm/preintegration/ConaxDRMConfiguration.Builder.html#clearkey(com.theoplayer.android.api.source.drm.ClearkeyKeySystemConfiguration)"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"ConaxDRMConfiguration.Builder","l":"fairPlay(FairPlayKeySystemConfiguration)","url":"com/theoplayer/android/api/source/drm/preintegration/ConaxDRMConfiguration.Builder.html#fairPlay(com.theoplayer.android.api.source.drm.FairPlayKeySystemConfiguration)"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"ConaxDRMConfiguration.Builder","l":"playready(KeySystemConfiguration)","url":"com/theoplayer/android/api/source/drm/preintegration/ConaxDRMConfiguration.Builder.html#playready(com.theoplayer.android.api.source.drm.KeySystemConfiguration)"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"ConaxDRMConfiguration.Builder","l":"build()","url":"com/theoplayer/android/api/source/drm/preintegration/ConaxDRMConfiguration.Builder.html#build()"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"ConaxDRMConfiguration","l":"getDeviceId()","url":"com/theoplayer/android/api/source/drm/preintegration/ConaxDRMConfiguration.html#getDeviceId()"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"ConaxDRMConfiguration","l":"getToken()","url":"com/theoplayer/android/api/source/drm/preintegration/ConaxDRMConfiguration.html#getToken()"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"KeyOSKeySystemConfiguration.Builder","l":"KeyOSKeySystemConfiguration.Builder(String)","url":"com/theoplayer/android/api/source/drm/preintegration/KeyOSKeySystemConfiguration.Builder.html#KeyOSKeySystemConfiguration.Builder(java.lang.String)"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"KeyOSKeySystemConfiguration.Builder","l":"customdata(String)","url":"com/theoplayer/android/api/source/drm/preintegration/KeyOSKeySystemConfiguration.Builder.html#customdata(java.lang.String)"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"KeyOSKeySystemConfiguration.Builder","l":"headers(Map)","url":"com/theoplayer/android/api/source/drm/preintegration/KeyOSKeySystemConfiguration.Builder.html#headers(java.util.Map)"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"KeyOSKeySystemConfiguration.Builder","l":"useCredentials(boolean)","url":"com/theoplayer/android/api/source/drm/preintegration/KeyOSKeySystemConfiguration.Builder.html#useCredentials(boolean)"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"KeyOSKeySystemConfiguration.Builder","l":"queryParameters(Map)","url":"com/theoplayer/android/api/source/drm/preintegration/KeyOSKeySystemConfiguration.Builder.html#queryParameters(java.util.Map)"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"KeyOSKeySystemConfiguration.Builder","l":"build()","url":"com/theoplayer/android/api/source/drm/preintegration/KeyOSKeySystemConfiguration.Builder.html#build()"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"KeyOSKeySystemConfiguration","l":"getCustomdata()","url":"com/theoplayer/android/api/source/drm/preintegration/KeyOSKeySystemConfiguration.html#getCustomdata()"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"AxinomDRMConfiguration.Builder","l":"AxinomDRMConfiguration.Builder(String)","url":"com/theoplayer/android/api/source/drm/preintegration/AxinomDRMConfiguration.Builder.html#AxinomDRMConfiguration.Builder(java.lang.String)"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"AxinomDRMConfiguration.Builder","l":"fairplay(FairPlayKeySystemConfiguration)","url":"com/theoplayer/android/api/source/drm/preintegration/AxinomDRMConfiguration.Builder.html#fairplay(com.theoplayer.android.api.source.drm.FairPlayKeySystemConfiguration)"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"AxinomDRMConfiguration.Builder","l":"playready(KeySystemConfiguration)","url":"com/theoplayer/android/api/source/drm/preintegration/AxinomDRMConfiguration.Builder.html#playready(com.theoplayer.android.api.source.drm.KeySystemConfiguration)"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"AxinomDRMConfiguration.Builder","l":"widevine(KeySystemConfiguration)","url":"com/theoplayer/android/api/source/drm/preintegration/AxinomDRMConfiguration.Builder.html#widevine(com.theoplayer.android.api.source.drm.KeySystemConfiguration)"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"AxinomDRMConfiguration.Builder","l":"clearkey(ClearkeyKeySystemConfiguration)","url":"com/theoplayer/android/api/source/drm/preintegration/AxinomDRMConfiguration.Builder.html#clearkey(com.theoplayer.android.api.source.drm.ClearkeyKeySystemConfiguration)"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"AxinomDRMConfiguration.Builder","l":"build()","url":"com/theoplayer/android/api/source/drm/preintegration/AxinomDRMConfiguration.Builder.html#build()"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"AxinomDRMConfiguration","l":"getToken()","url":"com/theoplayer/android/api/source/drm/preintegration/AxinomDRMConfiguration.html#getToken()"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"AxinomDRMConfiguration","l":"equals(Object)","url":"com/theoplayer/android/api/source/drm/preintegration/AxinomDRMConfiguration.html#equals(Object)"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"AxinomDRMConfiguration","l":"hashCode()","url":"com/theoplayer/android/api/source/drm/preintegration/AxinomDRMConfiguration.html#hashCode()"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"AzureDRMConfiguration.Builder","l":"AzureDRMConfiguration.Builder(String, String)","url":"com/theoplayer/android/api/source/drm/preintegration/AzureDRMConfiguration.Builder.html#AzureDRMConfiguration.Builder(java.lang.String,java.lang.String)"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"AzureDRMConfiguration.Builder","l":"fairplay(FairPlayKeySystemConfiguration)","url":"com/theoplayer/android/api/source/drm/preintegration/AzureDRMConfiguration.Builder.html#fairplay(com.theoplayer.android.api.source.drm.FairPlayKeySystemConfiguration)"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"AzureDRMConfiguration.Builder","l":"playready(KeySystemConfiguration)","url":"com/theoplayer/android/api/source/drm/preintegration/AzureDRMConfiguration.Builder.html#playready(com.theoplayer.android.api.source.drm.KeySystemConfiguration)"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"AzureDRMConfiguration.Builder","l":"widevine(KeySystemConfiguration)","url":"com/theoplayer/android/api/source/drm/preintegration/AzureDRMConfiguration.Builder.html#widevine(com.theoplayer.android.api.source.drm.KeySystemConfiguration)"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"AzureDRMConfiguration.Builder","l":"clearkey(ClearkeyKeySystemConfiguration)","url":"com/theoplayer/android/api/source/drm/preintegration/AzureDRMConfiguration.Builder.html#clearkey(com.theoplayer.android.api.source.drm.ClearkeyKeySystemConfiguration)"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"AzureDRMConfiguration.Builder","l":"build()","url":"com/theoplayer/android/api/source/drm/preintegration/AzureDRMConfiguration.Builder.html#build()"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"AzureDRMConfiguration","l":"getCertificateURL()","url":"com/theoplayer/android/api/source/drm/preintegration/AzureDRMConfiguration.html#getCertificateURL()"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"AzureDRMConfiguration","l":"getToken()","url":"com/theoplayer/android/api/source/drm/preintegration/AzureDRMConfiguration.html#getToken()"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"AzureDRMConfiguration","l":"equals(Object)","url":"com/theoplayer/android/api/source/drm/preintegration/AzureDRMConfiguration.html#equals(Object)"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"AzureDRMConfiguration","l":"hashCode()","url":"com/theoplayer/android/api/source/drm/preintegration/AzureDRMConfiguration.html#hashCode()"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"DRMTodayConfiguration.Builder","l":"DRMTodayConfiguration.Builder(String)","url":"com/theoplayer/android/api/source/drm/preintegration/DRMTodayConfiguration.Builder.html#DRMTodayConfiguration.Builder(java.lang.String)"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"DRMTodayConfiguration.Builder","l":"DRMTodayConfiguration.Builder(KeySystemConfiguration)","url":"com/theoplayer/android/api/source/drm/preintegration/DRMTodayConfiguration.Builder.html#DRMTodayConfiguration.Builder(com.theoplayer.android.api.source.drm.KeySystemConfiguration)"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"DRMTodayConfiguration.Builder","l":"token(String)","url":"com/theoplayer/android/api/source/drm/preintegration/DRMTodayConfiguration.Builder.html#token(java.lang.String)"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"DRMTodayConfiguration.Builder","l":"userId(String)","url":"com/theoplayer/android/api/source/drm/preintegration/DRMTodayConfiguration.Builder.html#userId(java.lang.String)"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"DRMTodayConfiguration.Builder","l":"sessionId(String)","url":"com/theoplayer/android/api/source/drm/preintegration/DRMTodayConfiguration.Builder.html#sessionId(java.lang.String)"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"DRMTodayConfiguration.Builder","l":"merchant(String)","url":"com/theoplayer/android/api/source/drm/preintegration/DRMTodayConfiguration.Builder.html#merchant(java.lang.String)"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"DRMTodayConfiguration.Builder","l":"build()","url":"com/theoplayer/android/api/source/drm/preintegration/DRMTodayConfiguration.Builder.html#build()"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"DRMTodayConfiguration","l":"getToken()","url":"com/theoplayer/android/api/source/drm/preintegration/DRMTodayConfiguration.html#getToken()"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"DRMTodayConfiguration","l":"getUserId()","url":"com/theoplayer/android/api/source/drm/preintegration/DRMTodayConfiguration.html#getUserId()"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"DRMTodayConfiguration","l":"getSessionId()","url":"com/theoplayer/android/api/source/drm/preintegration/DRMTodayConfiguration.html#getSessionId()"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"DRMTodayConfiguration","l":"getMerchant()","url":"com/theoplayer/android/api/source/drm/preintegration/DRMTodayConfiguration.html#getMerchant()"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"TitaniumDRMConfiguration.Builder","l":"TitaniumDRMConfiguration.Builder(String, String, String)","url":"com/theoplayer/android/api/source/drm/preintegration/TitaniumDRMConfiguration.Builder.html#TitaniumDRMConfiguration.Builder(java.lang.String,java.lang.String,java.lang.String)"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"TitaniumDRMConfiguration.Builder","l":"friendlyName(String)","url":"com/theoplayer/android/api/source/drm/preintegration/TitaniumDRMConfiguration.Builder.html#friendlyName(java.lang.String)"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"TitaniumDRMConfiguration.Builder","l":"authToken(String)","url":"com/theoplayer/android/api/source/drm/preintegration/TitaniumDRMConfiguration.Builder.html#authToken(java.lang.String)"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"TitaniumDRMConfiguration.Builder","l":"playready(KeySystemConfiguration)","url":"com/theoplayer/android/api/source/drm/preintegration/TitaniumDRMConfiguration.Builder.html#playready(com.theoplayer.android.api.source.drm.KeySystemConfiguration)"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"TitaniumDRMConfiguration.Builder","l":"widevine(KeySystemConfiguration)","url":"com/theoplayer/android/api/source/drm/preintegration/TitaniumDRMConfiguration.Builder.html#widevine(com.theoplayer.android.api.source.drm.KeySystemConfiguration)"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"TitaniumDRMConfiguration.Builder","l":"version(String)","url":"com/theoplayer/android/api/source/drm/preintegration/TitaniumDRMConfiguration.Builder.html#version(java.lang.String)"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"TitaniumDRMConfiguration.Builder","l":"build()","url":"com/theoplayer/android/api/source/drm/preintegration/TitaniumDRMConfiguration.Builder.html#build()"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"TitaniumDRMConfiguration","l":"getAccountName()","url":"com/theoplayer/android/api/source/drm/preintegration/TitaniumDRMConfiguration.html#getAccountName()"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"TitaniumDRMConfiguration","l":"getCustomerName()","url":"com/theoplayer/android/api/source/drm/preintegration/TitaniumDRMConfiguration.html#getCustomerName()"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"TitaniumDRMConfiguration","l":"getPortalId()","url":"com/theoplayer/android/api/source/drm/preintegration/TitaniumDRMConfiguration.html#getPortalId()"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"TitaniumDRMConfiguration","l":"getFriendlyName()","url":"com/theoplayer/android/api/source/drm/preintegration/TitaniumDRMConfiguration.html#getFriendlyName()"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"TitaniumDRMConfiguration","l":"getAuthToken()","url":"com/theoplayer/android/api/source/drm/preintegration/TitaniumDRMConfiguration.html#getAuthToken()"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"TitaniumDRMConfiguration","l":"getVersion()","url":"com/theoplayer/android/api/source/drm/preintegration/TitaniumDRMConfiguration.html#getVersion()"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"IrdetoConfiguration.Builder","l":"IrdetoConfiguration.Builder(String)","url":"com/theoplayer/android/api/source/drm/preintegration/IrdetoConfiguration.Builder.html#IrdetoConfiguration.Builder(java.lang.String)"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"IrdetoConfiguration.Builder","l":"IrdetoConfiguration.Builder(KeySystemConfiguration)","url":"com/theoplayer/android/api/source/drm/preintegration/IrdetoConfiguration.Builder.html#IrdetoConfiguration.Builder(com.theoplayer.android.api.source.drm.KeySystemConfiguration)"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"IrdetoConfiguration.Builder","l":"crmId(String)","url":"com/theoplayer/android/api/source/drm/preintegration/IrdetoConfiguration.Builder.html#crmId(java.lang.String)"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"IrdetoConfiguration.Builder","l":"accountId(String)","url":"com/theoplayer/android/api/source/drm/preintegration/IrdetoConfiguration.Builder.html#accountId(java.lang.String)"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"IrdetoConfiguration.Builder","l":"sessionId(String)","url":"com/theoplayer/android/api/source/drm/preintegration/IrdetoConfiguration.Builder.html#sessionId(java.lang.String)"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"IrdetoConfiguration.Builder","l":"contentId(String)","url":"com/theoplayer/android/api/source/drm/preintegration/IrdetoConfiguration.Builder.html#contentId(java.lang.String)"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"IrdetoConfiguration.Builder","l":"ticket(String)","url":"com/theoplayer/android/api/source/drm/preintegration/IrdetoConfiguration.Builder.html#ticket(java.lang.String)"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"IrdetoConfiguration.Builder","l":"build()","url":"com/theoplayer/android/api/source/drm/preintegration/IrdetoConfiguration.Builder.html#build()"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"IrdetoConfiguration","l":"getCrmId()","url":"com/theoplayer/android/api/source/drm/preintegration/IrdetoConfiguration.html#getCrmId()"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"IrdetoConfiguration","l":"getTicket()","url":"com/theoplayer/android/api/source/drm/preintegration/IrdetoConfiguration.html#getTicket()"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"IrdetoConfiguration","l":"getAccountId()","url":"com/theoplayer/android/api/source/drm/preintegration/IrdetoConfiguration.html#getAccountId()"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"IrdetoConfiguration","l":"getContentId()","url":"com/theoplayer/android/api/source/drm/preintegration/IrdetoConfiguration.html#getContentId()"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"IrdetoConfiguration","l":"getSessionId()","url":"com/theoplayer/android/api/source/drm/preintegration/IrdetoConfiguration.html#getSessionId()"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"XstreamConfiguration.Builder","l":"XstreamConfiguration.Builder(String, String)","url":"com/theoplayer/android/api/source/drm/preintegration/XstreamConfiguration.Builder.html#XstreamConfiguration.Builder(java.lang.String,java.lang.String)"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"XstreamConfiguration.Builder","l":"sessionId(String)","url":"com/theoplayer/android/api/source/drm/preintegration/XstreamConfiguration.Builder.html#sessionId(java.lang.String)"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"XstreamConfiguration.Builder","l":"playready(KeySystemConfiguration)","url":"com/theoplayer/android/api/source/drm/preintegration/XstreamConfiguration.Builder.html#playready(com.theoplayer.android.api.source.drm.KeySystemConfiguration)"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"XstreamConfiguration.Builder","l":"widevine(KeySystemConfiguration)","url":"com/theoplayer/android/api/source/drm/preintegration/XstreamConfiguration.Builder.html#widevine(com.theoplayer.android.api.source.drm.KeySystemConfiguration)"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"XstreamConfiguration.Builder","l":"build()","url":"com/theoplayer/android/api/source/drm/preintegration/XstreamConfiguration.Builder.html#build()"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"XstreamConfiguration","l":"getSessionId()","url":"com/theoplayer/android/api/source/drm/preintegration/XstreamConfiguration.html#getSessionId()"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"XstreamConfiguration","l":"getStreamId()","url":"com/theoplayer/android/api/source/drm/preintegration/XstreamConfiguration.html#getStreamId()"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"XstreamConfiguration","l":"getTicketAcquisitionUrl()","url":"com/theoplayer/android/api/source/drm/preintegration/XstreamConfiguration.html#getTicketAcquisitionUrl()"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"XstreamConfiguration","l":"equals(Object)","url":"com/theoplayer/android/api/source/drm/preintegration/XstreamConfiguration.html#equals(Object)"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"XstreamConfiguration","l":"hashCode()","url":"com/theoplayer/android/api/source/drm/preintegration/XstreamConfiguration.html#hashCode()"}, {"p":"com.theoplayer.android.api.source.ssai","c":"StreamType","l":"from(String)","url":"com/theoplayer/android/api/source/ssai/StreamType.html#from(java.lang.String)"}, {"p":"com.theoplayer.android.api.source.ssai","c":"StreamType","l":"values()","url":"com/theoplayer/android/api/source/ssai/StreamType.html#values()"}, {"p":"com.theoplayer.android.api.source.ssai","c":"StreamType","l":"valueOf(String)","url":"com/theoplayer/android/api/source/ssai/StreamType.html#valueOf(java.lang.String)"}, {"p":"com.theoplayer.android.api.source.ssai","c":"SsaiDescription","l":"getIntegration()","url":"com/theoplayer/android/api/source/ssai/dai/GoogleDaiVodConfiguration.html#getIntegration()"}, {"p":"com.theoplayer.android.api.source.ssai","c":"GoogleDaiConfiguration.Builder","l":"GoogleDaiConfiguration.Builder(String)","url":"com/theoplayer/android/api/source/ssai/GoogleDaiConfiguration.Builder.html#GoogleDaiConfiguration.Builder(java.lang.String)"}, {"p":"com.theoplayer.android.api.source.ssai","c":"GoogleDaiConfiguration.Builder","l":"authToken(String)","url":"com/theoplayer/android/api/source/ssai/dai/GoogleDaiVodConfiguration.Builder.html#authToken(java.lang.String)"}, {"p":"com.theoplayer.android.api.source.ssai","c":"GoogleDaiConfiguration.Builder","l":"streamActivityMonitorID(String)","url":"com/theoplayer/android/api/source/ssai/dai/GoogleDaiVodConfiguration.Builder.html#streamActivityMonitorID(java.lang.String)"}, {"p":"com.theoplayer.android.api.source.ssai","c":"GoogleDaiConfiguration.Builder","l":"adTagParameters(Map)","url":"com/theoplayer/android/api/source/ssai/dai/GoogleDaiVodConfiguration.Builder.html#adTagParameters(java.util.Map)"}, {"p":"com.theoplayer.android.api.source.ssai","c":"GoogleDaiConfiguration","l":"GoogleDaiConfiguration(StreamType, String, String, String, Map, SourceType)","url":"com/theoplayer/android/api/source/ssai/GoogleDaiConfiguration.html#GoogleDaiConfiguration(com.theoplayer.android.api.source.ssai.StreamType,java.lang.String,java.lang.String,java.lang.String,java.util.Map,com.theoplayer.android.api.source.SourceType)"}, {"p":"com.theoplayer.android.api.source.ssai","c":"GoogleDaiConfiguration","l":"getAvailabilityType()","url":"com/theoplayer/android/api/source/ssai/dai/GoogleDaiVodConfiguration.html#getAvailabilityType()"}, {"p":"com.theoplayer.android.api.source.ssai","c":"GoogleDaiConfiguration","l":"getApiKey()","url":"com/theoplayer/android/api/source/ssai/dai/GoogleDaiVodConfiguration.html#getApiKey()"}, {"p":"com.theoplayer.android.api.source.ssai","c":"GoogleDaiConfiguration","l":"getAuthToken()","url":"com/theoplayer/android/api/source/ssai/dai/GoogleDaiVodConfiguration.html#getAuthToken()"}, {"p":"com.theoplayer.android.api.source.ssai","c":"GoogleDaiConfiguration","l":"getStreamActivityMonitorID()","url":"com/theoplayer/android/api/source/ssai/dai/GoogleDaiVodConfiguration.html#getStreamActivityMonitorID()"}, {"p":"com.theoplayer.android.api.source.ssai","c":"GoogleDaiConfiguration","l":"getAdTagParameters()","url":"com/theoplayer/android/api/source/ssai/dai/GoogleDaiVodConfiguration.html#getAdTagParameters()"}, {"p":"com.theoplayer.android.api.source.ssai","c":"GoogleDaiConfiguration","l":"getFormat()","url":"com/theoplayer/android/api/source/ssai/dai/GoogleDaiVodConfiguration.html#getFormat()"}, {"p":"com.theoplayer.android.api.source.ssai","c":"GoogleDaiConfiguration","l":"equals(Object)","url":"com/theoplayer/android/api/source/ssai/GoogleDaiConfiguration.html#equals(Object)"}, {"p":"com.theoplayer.android.api.source.ssai","c":"GoogleDaiConfiguration","l":"hashCode()","url":"com/theoplayer/android/api/source/ssai/GoogleDaiConfiguration.html#hashCode()"}, {"p":"com.theoplayer.android.api.source.ssai","c":"SsaiIntegration","l":"from(String)","url":"com/theoplayer/android/api/source/ssai/SsaiIntegration.html#from(java.lang.String)"}, {"p":"com.theoplayer.android.api.source.ssai","c":"SsaiIntegration","l":"values()","url":"com/theoplayer/android/api/source/ssai/SsaiIntegration.html#values()"}, {"p":"com.theoplayer.android.api.source.ssai","c":"SsaiIntegration","l":"valueOf(String)","url":"com/theoplayer/android/api/source/ssai/SsaiIntegration.html#valueOf(java.lang.String)"}, {"p":"com.theoplayer.android.api.source.ssai","c":"CustomSsaiDescription","l":"CustomSsaiDescription()","url":"com/theoplayer/android/api/source/ssai/CustomSsaiDescription.html#CustomSsaiDescription()"}, {"p":"com.theoplayer.android.api.source.ssai","c":"CustomSsaiDescription","l":"getCustomIntegration()","url":"com/theoplayer/android/api/source/ssai/CustomSsaiDescription.html#getCustomIntegration()"}, {"p":"com.theoplayer.android.api.source.ssai","c":"CustomSsaiDescriptionSerializer","l":"fromJson(String)","url":"com/theoplayer/android/api/source/ssai/CustomSsaiDescriptionSerializer.html#fromJson(java.lang.String)"}, {"p":"com.theoplayer.android.api.source.ssai","c":"CustomSsaiDescriptionSerializer","l":"toJson(CustomSsaiDescription)","url":"com/theoplayer/android/api/source/ssai/CustomSsaiDescriptionSerializer.html#toJson(com.theoplayer.android.api.source.ssai.CustomSsaiDescription)"}, {"p":"com.theoplayer.android.api.source.ssai","c":"CustomSsaiDescriptionRegistry","l":"register(String, CustomSsaiDescriptionSerializer)","url":"com/theoplayer/android/api/source/ssai/CustomSsaiDescriptionRegistry.html#register(java.lang.String,com.theoplayer.android.api.source.ssai.CustomSsaiDescriptionSerializer)"}, {"p":"com.theoplayer.android.api.source.ssai","c":"CustomSsaiDescriptionRegistry","l":"deserialize(String, String)","url":"com/theoplayer/android/api/source/ssai/CustomSsaiDescriptionRegistry.html#deserialize(java.lang.String,java.lang.String)"}, {"p":"com.theoplayer.android.api.source.ssai","c":"CustomSsaiDescriptionRegistry","l":"serialize(CustomSsaiDescription)","url":"com/theoplayer/android/api/source/ssai/CustomSsaiDescriptionRegistry.html#serialize(com.theoplayer.android.api.source.ssai.CustomSsaiDescription)"}, {"p":"com.theoplayer.android.api.source.ssai.dai","c":"GoogleDaiLiveConfiguration.Builder","l":"GoogleDaiLiveConfiguration.Builder(String, String)","url":"com/theoplayer/android/api/source/ssai/dai/GoogleDaiLiveConfiguration.Builder.html#GoogleDaiLiveConfiguration.Builder(java.lang.String,java.lang.String)"}, {"p":"com.theoplayer.android.api.source.ssai.dai","c":"GoogleDaiLiveConfiguration.Builder","l":"build()","url":"com/theoplayer/android/api/source/ssai/dai/GoogleDaiLiveConfiguration.Builder.html#build()"}, {"p":"com.theoplayer.android.api.source.ssai.dai","c":"GoogleDaiLiveConfiguration","l":"getAssetKey()","url":"com/theoplayer/android/api/source/ssai/dai/GoogleDaiLiveConfiguration.html#getAssetKey()"}, {"p":"com.theoplayer.android.api.source.ssai.dai","c":"GoogleDaiLiveConfiguration","l":"equals(Object)","url":"com/theoplayer/android/api/source/ssai/dai/GoogleDaiLiveConfiguration.html#equals(Object)"}, {"p":"com.theoplayer.android.api.source.ssai.dai","c":"GoogleDaiLiveConfiguration","l":"hashCode()","url":"com/theoplayer/android/api/source/ssai/dai/GoogleDaiLiveConfiguration.html#hashCode()"}, {"p":"com.theoplayer.android.api.source.ssai.dai","c":"GoogleDaiVodConfiguration.Builder","l":"GoogleDaiVodConfiguration.Builder(String, String, String)","url":"com/theoplayer/android/api/source/ssai/dai/GoogleDaiVodConfiguration.Builder.html#GoogleDaiVodConfiguration.Builder(java.lang.String,java.lang.String,java.lang.String)"}, {"p":"com.theoplayer.android.api.source.ssai.dai","c":"GoogleDaiVodConfiguration.Builder","l":"build()","url":"com/theoplayer/android/api/source/ssai/dai/GoogleDaiVodConfiguration.Builder.html#build()"}, {"p":"com.theoplayer.android.api.source.ssai.dai","c":"GoogleDaiVodConfiguration","l":"getContentSourceID()","url":"com/theoplayer/android/api/source/ssai/dai/GoogleDaiVodConfiguration.html#getContentSourceID()"}, {"p":"com.theoplayer.android.api.source.ssai.dai","c":"GoogleDaiVodConfiguration","l":"getVideoID()","url":"com/theoplayer/android/api/source/ssai/dai/GoogleDaiVodConfiguration.html#getVideoID()"}, {"p":"com.theoplayer.android.api.source.ssai.dai","c":"GoogleDaiVodConfiguration","l":"equals(Object)","url":"com/theoplayer/android/api/source/ssai/dai/GoogleDaiVodConfiguration.html#equals(Object)"}, {"p":"com.theoplayer.android.api.source.ssai.dai","c":"GoogleDaiVodConfiguration","l":"hashCode()","url":"com/theoplayer/android/api/source/ssai/dai/GoogleDaiVodConfiguration.html#hashCode()"}, {"p":"com.theoplayer.android.api.source.hls","c":"HlsPlaybackConfiguration.Builder","l":"HlsPlaybackConfiguration.Builder()","url":"com/theoplayer/android/api/source/hls/HlsPlaybackConfiguration.Builder.html#HlsPlaybackConfiguration.Builder()"}, {"p":"com.theoplayer.android.api.source.hls","c":"HlsPlaybackConfiguration.Builder","l":"delaySubtitlePreload(boolean)","url":"com/theoplayer/android/api/source/hls/HlsPlaybackConfiguration.Builder.html#delaySubtitlePreload(boolean)"}, {"p":"com.theoplayer.android.api.source.hls","c":"HlsPlaybackConfiguration.Builder","l":"build()","url":"com/theoplayer/android/api/source/hls/HlsPlaybackConfiguration.Builder.html#build()"}, {"p":"com.theoplayer.android.api.source.hls","c":"HlsPlaybackConfiguration","l":"isDelaySubtitlePreload()","url":"com/theoplayer/android/api/source/hls/HlsPlaybackConfiguration.html#isDelaySubtitlePreload()"}, {"p":"com.theoplayer.android.api.source.hls","c":"HlsPlaybackConfiguration","l":"equals(Object)","url":"com/theoplayer/android/api/source/hls/HlsPlaybackConfiguration.html#equals(Object)"}, {"p":"com.theoplayer.android.api.source.hls","c":"HlsPlaybackConfiguration","l":"hashCode()","url":"com/theoplayer/android/api/source/hls/HlsPlaybackConfiguration.html#hashCode()"}, {"p":"com.theoplayer.android.api.metrics","c":"Metrics","l":"getBufferedSegments()","url":"com/theoplayer/android/api/metrics/Metrics.html#getBufferedSegments()"}, {"p":"com.theoplayer.android.api.metrics","c":"Metrics","l":"getCorruptedVideoFrames()","url":"com/theoplayer/android/api/metrics/Metrics.html#getCorruptedVideoFrames()"}, {"p":"com.theoplayer.android.api.metrics","c":"Metrics","l":"getCurrentBandwidthEstimate()","url":"com/theoplayer/android/api/metrics/Metrics.html#getCurrentBandwidthEstimate()"}, {"p":"com.theoplayer.android.api.metrics","c":"Metrics","l":"getDroppedVideoFrames()","url":"com/theoplayer/android/api/metrics/Metrics.html#getDroppedVideoFrames()"}, {"p":"com.theoplayer.android.api.metrics","c":"Metrics","l":"getTotalVideoFrames()","url":"com/theoplayer/android/api/metrics/Metrics.html#getTotalVideoFrames()"}, {"p":"com.theoplayer.android.api.metrics","c":"Metrics","l":"getTotalBytesLoaded()","url":"com/theoplayer/android/api/metrics/Metrics.html#getTotalBytesLoaded()"}, {"p":"com.theoplayer.android.api.metrics","c":"BufferedSegments","l":"getAmountOfBufferedAudioSegments()","url":"com/theoplayer/android/api/metrics/BufferedSegments.html#getAmountOfBufferedAudioSegments()"}, {"p":"com.theoplayer.android.api.metrics","c":"BufferedSegments","l":"getAmountOfBufferedVideoSegments()","url":"com/theoplayer/android/api/metrics/BufferedSegments.html#getAmountOfBufferedVideoSegments()"}, {"p":"com.theoplayer.android.api.timerange","c":"TimeRange","l":"getStart()","url":"com/theoplayer/android/api/timerange/TimeRange.html#getStart()"}, {"p":"com.theoplayer.android.api.timerange","c":"TimeRange","l":"getEnd()","url":"com/theoplayer/android/api/timerange/TimeRange.html#getEnd()"}, {"p":"com.theoplayer.android.api.timerange","c":"TimeRanges","l":"getStart(int)","url":"com/theoplayer/android/api/timerange/TimeRanges.html#getStart(int)"}, {"p":"com.theoplayer.android.api.timerange","c":"TimeRanges","l":"getEnd(int)","url":"com/theoplayer/android/api/timerange/TimeRanges.html#getEnd(int)"}, {"p":"com.theoplayer.android.api.timerange","c":"TimeRanges","l":"length()","url":"com/theoplayer/android/api/timerange/TimeRanges.html#length()"}, {"p":"com.theoplayer.android.api.latency","c":"LatencyConfiguration.Builder","l":"LatencyConfiguration.Builder()","url":"com/theoplayer/android/api/latency/LatencyConfiguration.Builder.html#LatencyConfiguration.Builder()"}, {"p":"com.theoplayer.android.api.latency","c":"LatencyConfiguration.Builder","l":"setMinimumOffset(Double)","url":"com/theoplayer/android/api/latency/LatencyConfiguration.Builder.html#setMinimumOffset(java.lang.Double)"}, {"p":"com.theoplayer.android.api.latency","c":"LatencyConfiguration.Builder","l":"setMaximumOffset(Double)","url":"com/theoplayer/android/api/latency/LatencyConfiguration.Builder.html#setMaximumOffset(java.lang.Double)"}, {"p":"com.theoplayer.android.api.latency","c":"LatencyConfiguration.Builder","l":"setTargetOffset(Double)","url":"com/theoplayer/android/api/latency/LatencyConfiguration.Builder.html#setTargetOffset(java.lang.Double)"}, {"p":"com.theoplayer.android.api.latency","c":"LatencyConfiguration.Builder","l":"setForceSeekOffset(Double)","url":"com/theoplayer/android/api/latency/LatencyConfiguration.Builder.html#setForceSeekOffset(java.lang.Double)"}, {"p":"com.theoplayer.android.api.latency","c":"LatencyConfiguration.Builder","l":"setMinimumPlaybackRate(Double)","url":"com/theoplayer/android/api/latency/LatencyConfiguration.Builder.html#setMinimumPlaybackRate(java.lang.Double)"}, {"p":"com.theoplayer.android.api.latency","c":"LatencyConfiguration.Builder","l":"setMaximumPlaybackRate(Double)","url":"com/theoplayer/android/api/latency/LatencyConfiguration.Builder.html#setMaximumPlaybackRate(java.lang.Double)"}, {"p":"com.theoplayer.android.api.latency","c":"LatencyConfiguration.Builder","l":"build()","url":"com/theoplayer/android/api/latency/LatencyConfiguration.Builder.html#build()"}, {"p":"com.theoplayer.android.api.latency","c":"LatencyConfiguration","l":"getMinimumOffset()","url":"com/theoplayer/android/api/latency/LatencyConfiguration.html#getMinimumOffset()"}, {"p":"com.theoplayer.android.api.latency","c":"LatencyConfiguration","l":"getMaximumOffset()","url":"com/theoplayer/android/api/latency/LatencyConfiguration.html#getMaximumOffset()"}, {"p":"com.theoplayer.android.api.latency","c":"LatencyConfiguration","l":"getTargetOffset()","url":"com/theoplayer/android/api/latency/LatencyConfiguration.html#getTargetOffset()"}, {"p":"com.theoplayer.android.api.latency","c":"LatencyConfiguration","l":"getForceSeekOffset()","url":"com/theoplayer/android/api/latency/LatencyConfiguration.html#getForceSeekOffset()"}, {"p":"com.theoplayer.android.api.latency","c":"LatencyConfiguration","l":"getMinimumPlaybackRate()","url":"com/theoplayer/android/api/latency/LatencyConfiguration.html#getMinimumPlaybackRate()"}, {"p":"com.theoplayer.android.api.latency","c":"LatencyConfiguration","l":"getMaximumPlaybackRate()","url":"com/theoplayer/android/api/latency/LatencyConfiguration.html#getMaximumPlaybackRate()"}, {"p":"com.theoplayer.android.api.latency","c":"LatencyManager","l":"isEnabled()","url":"com/theoplayer/android/api/latency/LatencyManager.html#isEnabled()"}, {"p":"com.theoplayer.android.api.latency","c":"LatencyManager","l":"setEnabled(Boolean)","url":"com/theoplayer/android/api/latency/LatencyManager.html#setEnabled(java.lang.Boolean)"}, {"p":"com.theoplayer.android.api.latency","c":"LatencyManager","l":"isMonitoringLivePlayback()","url":"com/theoplayer/android/api/latency/LatencyManager.html#isMonitoringLivePlayback()"}, {"p":"com.theoplayer.android.api.latency","c":"LatencyManager","l":"getCurrentLatency()","url":"com/theoplayer/android/api/latency/LatencyManager.html#getCurrentLatency()"}, {"p":"com.theoplayer.android.api.latency","c":"LatencyManager","l":"getCurrentLatencyConfiguration()","url":"com/theoplayer/android/api/latency/LatencyManager.html#getCurrentLatencyConfiguration()"}, {"p":"com.theoplayer.android.api.network","c":"Network","l":"addHTTPInterceptor(HTTPInterceptor)","url":"com/theoplayer/android/api/network/Network.html#addHTTPInterceptor(com.theoplayer.android.api.network.http.HTTPInterceptor)"}, {"p":"com.theoplayer.android.api.network","c":"Network","l":"removeHTTPInterceptor(HTTPInterceptor)","url":"com/theoplayer/android/api/network/Network.html#removeHTTPInterceptor(com.theoplayer.android.api.network.http.HTTPInterceptor)"}, {"p":"com.theoplayer.android.api.network.http","c":"HTTPInterceptor","l":"onRequest(InterceptableHTTPRequest)","url":"com/theoplayer/android/api/network/http/HTTPInterceptor.html#onRequest(com.theoplayer.android.api.network.http.InterceptableHTTPRequest)"}, {"p":"com.theoplayer.android.api.network.http","c":"HTTPInterceptor","l":"onResponse(InterceptableHTTPResponse)","url":"com/theoplayer/android/api/network/http/HTTPInterceptor.html#onResponse(com.theoplayer.android.api.network.http.InterceptableHTTPResponse)"}, {"p":"com.theoplayer.android.api.network.http","c":"HTTPRequest","l":"getMethod()","url":"com/theoplayer/android/api/network/http/HTTPRequest.html#getMethod()"}, {"p":"com.theoplayer.android.api.network.http","c":"HTTPRequest","l":"getUrl()","url":"com/theoplayer/android/api/network/http/HTTPRequest.html#getUrl()"}, {"p":"com.theoplayer.android.api.network.http","c":"HTTPRequest","l":"getHeaders()","url":"com/theoplayer/android/api/network/http/HTTPRequest.html#getHeaders()"}, {"p":"com.theoplayer.android.api.network.http","c":"HTTPRequest","l":"getBody()","url":"com/theoplayer/android/api/network/http/HTTPRequest.html#getBody()"}, {"p":"com.theoplayer.android.api.network.http","c":"HTTPRequest","l":"getType()","url":"com/theoplayer/android/api/network/http/HTTPRequest.html#getType()"}, {"p":"com.theoplayer.android.api.network.http","c":"HTTPRequest","l":"getSubType()","url":"com/theoplayer/android/api/network/http/HTTPRequest.html#getSubType()"}, {"p":"com.theoplayer.android.api.network.http","c":"HTTPRequest","l":"getMediaType()","url":"com/theoplayer/android/api/network/http/HTTPRequest.html#getMediaType()"}, {"p":"com.theoplayer.android.api.network.http","c":"HTTPRequest","l":"getResponseType()","url":"com/theoplayer/android/api/network/http/HTTPRequest.html#getResponseType()"}, {"p":"com.theoplayer.android.api.network.http","c":"HTTPRequest","l":"getConnectTimeout()","url":"com/theoplayer/android/api/network/http/HTTPRequest.html#getConnectTimeout()"}, {"p":"com.theoplayer.android.api.network.http","c":"HTTPRequest","l":"getReadTimeout()","url":"com/theoplayer/android/api/network/http/HTTPRequest.html#getReadTimeout()"}, {"p":"com.theoplayer.android.api.network.http","c":"InterceptableHTTPRequest","l":"respondWith(CompleteHTTPResponse)","url":"com/theoplayer/android/api/network/http/InterceptableHTTPRequest.html#respondWith(com.theoplayer.android.api.network.http.CompleteHTTPResponse)"}, {"p":"com.theoplayer.android.api.network.http","c":"InterceptableHTTPRequest","l":"getMethod()","url":"com/theoplayer/android/api/network/http/InterceptableHTTPRequest.html#getMethod()"}, {"p":"com.theoplayer.android.api.network.http","c":"InterceptableHTTPRequest","l":"setMethod(String)","url":"com/theoplayer/android/api/network/http/InterceptableHTTPRequest.html#setMethod(java.lang.String)"}, {"p":"com.theoplayer.android.api.network.http","c":"InterceptableHTTPRequest","l":"getUrl()","url":"com/theoplayer/android/api/network/http/InterceptableHTTPRequest.html#getUrl()"}, {"p":"com.theoplayer.android.api.network.http","c":"InterceptableHTTPRequest","l":"setUrl(URL)","url":"com/theoplayer/android/api/network/http/InterceptableHTTPRequest.html#setUrl(java.net.URL)"}, {"p":"com.theoplayer.android.api.network.http","c":"InterceptableHTTPRequest","l":"getHeaders()","url":"com/theoplayer/android/api/network/http/InterceptableHTTPRequest.html#getHeaders()"}, {"p":"com.theoplayer.android.api.network.http","c":"InterceptableHTTPRequest","l":"setHeaders(Map)","url":"com/theoplayer/android/api/network/http/InterceptableHTTPRequest.html#setHeaders(java.util.Map)"}, {"p":"com.theoplayer.android.api.network.http","c":"InterceptableHTTPRequest","l":"getBody()","url":"com/theoplayer/android/api/network/http/InterceptableHTTPRequest.html#getBody()"}, {"p":"com.theoplayer.android.api.network.http","c":"InterceptableHTTPRequest","l":"setBody(ByteArray)","url":"com/theoplayer/android/api/network/http/InterceptableHTTPRequest.html#setBody(kotlin.ByteArray)"}, {"p":"com.theoplayer.android.api.network.http","c":"InterceptableHTTPRequest","l":"getConnectTimeout()","url":"com/theoplayer/android/api/network/http/InterceptableHTTPRequest.html#getConnectTimeout()"}, {"p":"com.theoplayer.android.api.network.http","c":"InterceptableHTTPRequest","l":"setConnectTimeout(Integer)","url":"com/theoplayer/android/api/network/http/InterceptableHTTPRequest.html#setConnectTimeout(java.lang.Integer)"}, {"p":"com.theoplayer.android.api.network.http","c":"InterceptableHTTPRequest","l":"getReadTimeout()","url":"com/theoplayer/android/api/network/http/InterceptableHTTPRequest.html#getReadTimeout()"}, {"p":"com.theoplayer.android.api.network.http","c":"InterceptableHTTPRequest","l":"setReadTimeout(Integer)","url":"com/theoplayer/android/api/network/http/InterceptableHTTPRequest.html#setReadTimeout(java.lang.Integer)"}, {"p":"com.theoplayer.android.api.network.http","c":"ChunkInterceptor","l":"onChunk(ByteArray)","url":"com/theoplayer/android/api/network/http/ChunkInterceptor.html#onChunk(kotlin.ByteArray)"}, {"p":"com.theoplayer.android.api.network.http","c":"BodyInterceptor","l":"onBody(ByteArray)","url":"com/theoplayer/android/api/network/http/BodyInterceptor.html#onBody(kotlin.ByteArray)"}, {"p":"com.theoplayer.android.api.network.http","c":"HTTPResponse","l":"getRequest()","url":"com/theoplayer/android/api/network/http/HTTPResponse.html#getRequest()"}, {"p":"com.theoplayer.android.api.network.http","c":"HTTPResponse","l":"getUrl()","url":"com/theoplayer/android/api/network/http/HTTPResponse.html#getUrl()"}, {"p":"com.theoplayer.android.api.network.http","c":"HTTPResponse","l":"getHeaders()","url":"com/theoplayer/android/api/network/http/HTTPResponse.html#getHeaders()"}, {"p":"com.theoplayer.android.api.network.http","c":"HTTPResponse","l":"getStatus()","url":"com/theoplayer/android/api/network/http/HTTPResponse.html#getStatus()"}, {"p":"com.theoplayer.android.api.network.http","c":"HTTPResponse","l":"getStatusText()","url":"com/theoplayer/android/api/network/http/HTTPResponse.html#getStatusText()"}, {"p":"com.theoplayer.android.api.network.http","c":"CompleteHTTPResponse","l":"CompleteHTTPResponse(HTTPRequest, URL, Map, Integer, String, ByteArray)","url":"com/theoplayer/android/api/network/http/CompleteHTTPResponse.html#CompleteHTTPResponse(com.theoplayer.android.api.network.http.HTTPRequest,java.net.URL,java.util.Map,java.lang.Integer,java.lang.String,kotlin.ByteArray)"}, {"p":"com.theoplayer.android.api.network.http","c":"CompleteHTTPResponse","l":"getRequest()","url":"com/theoplayer/android/api/network/http/CompleteHTTPResponse.html#getRequest()"}, {"p":"com.theoplayer.android.api.network.http","c":"CompleteHTTPResponse","l":"getUrl()","url":"com/theoplayer/android/api/network/http/CompleteHTTPResponse.html#getUrl()"}, {"p":"com.theoplayer.android.api.network.http","c":"CompleteHTTPResponse","l":"getHeaders()","url":"com/theoplayer/android/api/network/http/CompleteHTTPResponse.html#getHeaders()"}, {"p":"com.theoplayer.android.api.network.http","c":"CompleteHTTPResponse","l":"getStatus()","url":"com/theoplayer/android/api/network/http/CompleteHTTPResponse.html#getStatus()"}, {"p":"com.theoplayer.android.api.network.http","c":"CompleteHTTPResponse","l":"getStatusText()","url":"com/theoplayer/android/api/network/http/CompleteHTTPResponse.html#getStatusText()"}, {"p":"com.theoplayer.android.api.network.http","c":"CompleteHTTPResponse","l":"getBody()","url":"com/theoplayer/android/api/network/http/CompleteHTTPResponse.html#getBody()"}, {"p":"com.theoplayer.android.api.network.http","c":"InterceptableHTTPResponse","l":"onChunk(ChunkInterceptor)","url":"com/theoplayer/android/api/network/http/InterceptableHTTPResponse.html#onChunk(com.theoplayer.android.api.network.http.ChunkInterceptor)"}, {"p":"com.theoplayer.android.api.network.http","c":"InterceptableHTTPResponse","l":"onBody(BodyInterceptor)","url":"com/theoplayer/android/api/network/http/InterceptableHTTPResponse.html#onBody(com.theoplayer.android.api.network.http.BodyInterceptor)"}, {"p":"com.theoplayer.android.api.network.http","c":"InterceptableHTTPResponse","l":"getUrl()","url":"com/theoplayer/android/api/network/http/InterceptableHTTPResponse.html#getUrl()"}, {"p":"com.theoplayer.android.api.network.http","c":"InterceptableHTTPResponse","l":"setUrl(URL)","url":"com/theoplayer/android/api/network/http/InterceptableHTTPResponse.html#setUrl(java.net.URL)"}, {"p":"com.theoplayer.android.api.network.http","c":"InterceptableHTTPResponse","l":"getHeaders()","url":"com/theoplayer/android/api/network/http/InterceptableHTTPResponse.html#getHeaders()"}, {"p":"com.theoplayer.android.api.network.http","c":"InterceptableHTTPResponse","l":"setHeaders(Map)","url":"com/theoplayer/android/api/network/http/InterceptableHTTPResponse.html#setHeaders(java.util.Map)"}, {"p":"com.theoplayer.android.api.network.http","c":"InterceptableHTTPResponse","l":"getStatus()","url":"com/theoplayer/android/api/network/http/InterceptableHTTPResponse.html#getStatus()"}, {"p":"com.theoplayer.android.api.network.http","c":"InterceptableHTTPResponse","l":"setStatus(Integer)","url":"com/theoplayer/android/api/network/http/InterceptableHTTPResponse.html#setStatus(java.lang.Integer)"}, {"p":"com.theoplayer.android.api.network.http","c":"InterceptableHTTPResponse","l":"getStatusText()","url":"com/theoplayer/android/api/network/http/InterceptableHTTPResponse.html#getStatusText()"}, {"p":"com.theoplayer.android.api.network.http","c":"InterceptableHTTPResponse","l":"setStatusText(String)","url":"com/theoplayer/android/api/network/http/InterceptableHTTPResponse.html#setStatusText(java.lang.String)"}, {"p":"com.theoplayer.android.api.network.http","c":"JavaHTTPInterceptor","l":"onRequestAsync(InterceptableHTTPRequest, JavaCallback)","url":"com/theoplayer/android/api/network/http/JavaHTTPInterceptor.html#onRequestAsync(com.theoplayer.android.api.network.http.InterceptableHTTPRequest,com.theoplayer.android.api.util.JavaCallback)"}, {"p":"com.theoplayer.android.api.network.http","c":"JavaHTTPInterceptor","l":"onResponseAsync(InterceptableHTTPResponse, JavaCallback)","url":"com/theoplayer/android/api/network/http/JavaHTTPInterceptor.html#onResponseAsync(com.theoplayer.android.api.network.http.InterceptableHTTPResponse,com.theoplayer.android.api.util.JavaCallback)"}, {"p":"com.theoplayer.android.api.network.http","c":"JavaHTTPInterceptor","l":"onRequest(InterceptableHTTPRequest)","url":"com/theoplayer/android/api/network/http/JavaHTTPInterceptor.html#onRequest(com.theoplayer.android.api.network.http.InterceptableHTTPRequest)"}, {"p":"com.theoplayer.android.api.network.http","c":"JavaHTTPInterceptor","l":"onResponse(InterceptableHTTPResponse)","url":"com/theoplayer/android/api/network/http/JavaHTTPInterceptor.html#onResponse(com.theoplayer.android.api.network.http.InterceptableHTTPResponse)"}, {"p":"com.theoplayer.android.api.network.http","c":"JavaChunkInterceptor","l":"onChunkAsync(ByteArray, JavaCallback)","url":"com/theoplayer/android/api/network/http/JavaChunkInterceptor.html#onChunkAsync(kotlin.ByteArray,com.theoplayer.android.api.util.JavaCallback)"}, {"p":"com.theoplayer.android.api.network.http","c":"JavaChunkInterceptor","l":"onChunk(ByteArray)","url":"com/theoplayer/android/api/network/http/JavaChunkInterceptor.html#onChunk(kotlin.ByteArray)"}, {"p":"com.theoplayer.android.api.network.http","c":"JavaBodyInterceptor","l":"onBodyAsync(ByteArray, JavaCallback)","url":"com/theoplayer/android/api/network/http/JavaBodyInterceptor.html#onBodyAsync(kotlin.ByteArray,com.theoplayer.android.api.util.JavaCallback)"}, {"p":"com.theoplayer.android.api.network.http","c":"JavaBodyInterceptor","l":"onBody(ByteArray)","url":"com/theoplayer/android/api/network/http/JavaBodyInterceptor.html#onBody(kotlin.ByteArray)"}, {"p":"com.theoplayer.android.api.network.http","c":"RequestType","l":"valueOf(String)","url":"com/theoplayer/android/api/network/http/RequestType.html#valueOf(java.lang.String)"}, {"p":"com.theoplayer.android.api.network.http","c":"RequestType","l":"values()","url":"com/theoplayer/android/api/network/http/RequestType.html#values()"}, {"p":"com.theoplayer.android.api.network.http","c":"RequestType","l":"getEntries()","url":"com/theoplayer/android/api/network/http/RequestType.html#getEntries()"}, {"p":"com.theoplayer.android.api.network.http","c":"RequestSubType","l":"valueOf(String)","url":"com/theoplayer/android/api/network/http/RequestSubType.html#valueOf(java.lang.String)"}, {"p":"com.theoplayer.android.api.network.http","c":"RequestSubType","l":"values()","url":"com/theoplayer/android/api/network/http/RequestSubType.html#values()"}, {"p":"com.theoplayer.android.api.network.http","c":"RequestSubType","l":"getEntries()","url":"com/theoplayer/android/api/network/http/RequestSubType.html#getEntries()"}, {"p":"com.theoplayer.android.api.network.http","c":"RequestMediaType","l":"valueOf(String)","url":"com/theoplayer/android/api/network/http/RequestMediaType.html#valueOf(java.lang.String)"}, {"p":"com.theoplayer.android.api.network.http","c":"RequestMediaType","l":"values()","url":"com/theoplayer/android/api/network/http/RequestMediaType.html#values()"}, {"p":"com.theoplayer.android.api.network.http","c":"RequestMediaType","l":"getEntries()","url":"com/theoplayer/android/api/network/http/RequestMediaType.html#getEntries()"}, {"p":"com.theoplayer.android.api.network.http","c":"ResponseType","l":"valueOf(String)","url":"com/theoplayer/android/api/network/http/ResponseType.html#valueOf(java.lang.String)"}, {"p":"com.theoplayer.android.api.network.http","c":"ResponseType","l":"values()","url":"com/theoplayer/android/api/network/http/ResponseType.html#values()"}, {"p":"com.theoplayer.android.api.network.http","c":"ResponseType","l":"getEntries()","url":"com/theoplayer/android/api/network/http/ResponseType.html#getEntries()"}, {"p":"com.theoplayer.android.api.ads.ima","c":"GoogleImaAdBreak","l":"getImaAdPodInfo()","url":"com/theoplayer/android/api/ads/ima/GoogleImaAdBreak.html#getImaAdPodInfo()"}, {"p":"com.theoplayer.android.api.ads.ima","c":"GoogleImaAdErrorEvent","l":"getAdError()","url":"com/theoplayer/android/api/ads/ima/GoogleImaAdErrorEvent.html#getAdError()"}, {"p":"com.theoplayer.android.api.ads.ima","c":"GoogleImaAdEvent","l":"getType()","url":"com/theoplayer/android/api/ads/ima/GoogleImaAdEvent.html#getType()"}, {"p":"com.theoplayer.android.api.ads.ima","c":"GoogleImaAdEvent","l":"getAd()","url":"com/theoplayer/android/api/ads/ima/GoogleImaAdEvent.html#getAd()"}, {"p":"com.theoplayer.android.api.ads.ima","c":"GoogleImaAdEvent","l":"getAdData()","url":"com/theoplayer/android/api/ads/ima/GoogleImaAdEvent.html#getAdData()"}, {"p":"com.theoplayer.android.api.ads.ima","c":"GoogleImaAdEventType","l":"getName()","url":"com/theoplayer/android/api/ads/ima/GoogleImaAdEventType.html#getName()"}, {"p":"com.theoplayer.android.api.ads.ima","c":"GoogleImaAdEventType","l":"valueOf(String)","url":"com/theoplayer/android/api/ads/ima/GoogleImaAdEventType.html#valueOf(java.lang.String)"}, {"p":"com.theoplayer.android.api.ads.ima","c":"GoogleImaAdEventType","l":"values()","url":"com/theoplayer/android/api/ads/ima/GoogleImaAdEventType.html#values()"}, {"p":"com.theoplayer.android.api.ads.ima","c":"GoogleImaAdEventType","l":"getEntries()","url":"com/theoplayer/android/api/ads/ima/GoogleImaAdEventType.html#getEntries()"}, {"p":"com.theoplayer.android.api.ads.ima","c":"GoogleImaCompanionAd","l":"getImaCompanionAd()","url":"com/theoplayer/android/api/ads/ima/GoogleImaCompanionAd.html#getImaCompanionAd()"}, {"p":"com.theoplayer.android.api.ads.ima","c":"GoogleImaIntegration","l":"setAdsRenderingSettings(AdsRenderingSettings)","url":"com/theoplayer/android/api/ads/ima/GoogleImaIntegration.html#setAdsRenderingSettings(com.google.ads.interactivemedia.v3.api.AdsRenderingSettings)"}, {"p":"com.theoplayer.android.api.ads.ima","c":"GoogleImaIntegration","l":"getAdsRenderingSettings()","url":"com/theoplayer/android/api/ads/ima/GoogleImaIntegration.html#getAdsRenderingSettings()"}, {"p":"com.theoplayer.android.api.ads.ima","c":"GoogleImaIntegration","l":"requestAds(AdsRequest, AdsRenderingSettings)","url":"com/theoplayer/android/api/ads/ima/GoogleImaIntegration.html#requestAds(com.google.ads.interactivemedia.v3.api.AdsRequest,com.google.ads.interactivemedia.v3.api.AdsRenderingSettings)"}, {"p":"com.theoplayer.android.api.ads.ima","c":"GoogleImaIntegration","l":"schedule(GoogleImaAdDescription)","url":"com/theoplayer/android/api/ads/ima/GoogleImaIntegration.html#schedule(com.theoplayer.android.api.source.addescription.GoogleImaAdDescription)"}, {"p":"com.theoplayer.android.api.ads.ima","c":"GoogleImaIntegration","l":"focus()","url":"com/theoplayer/android/api/ads/ima/GoogleImaIntegration.html#focus()"}, {"p":"com.theoplayer.android.api.ads.ima","c":"GoogleImaIntegrationFactory","l":"createGoogleImaIntegration(THEOplayerView, ImaSdkSettings)","url":"com/theoplayer/android/api/ads/ima/GoogleImaIntegrationFactory.html#createGoogleImaIntegration(com.theoplayer.android.api.THEOplayerView,com.google.ads.interactivemedia.v3.api.ImaSdkSettings)"}, {"p":"com.theoplayer.android.api.ads.ima","c":"GoogleImaIntegrationFactory","l":"createGoogleImaIntegration(THEOplayerView)","url":"com/theoplayer/android/api/ads/ima/GoogleImaIntegrationFactory.html#createGoogleImaIntegration(com.theoplayer.android.api.THEOplayerView,com.google.ads.interactivemedia.v3.api.ImaSdkSettings)"}, {"p":"com.theoplayer.android.api.ads.ima","c":"GoogleImaUniversalAdId","l":"getImaUniversalAdId()","url":"com/theoplayer/android/api/ads/ima/GoogleImaUniversalAdId.html#getImaUniversalAdId()"}, {"p":"com.theoplayer.android.api.ads.mediatailor","c":"MediaTailorAd","l":"getDuration()","url":"com/theoplayer/android/api/ads/mediatailor/MediaTailorAd.html#getDuration()"}, {"p":"com.theoplayer.android.api.ads.mediatailor","c":"MediaTailorAd","l":"getStartTime()","url":"com/theoplayer/android/api/ads/mediatailor/MediaTailorAd.html#getStartTime()"}, {"p":"com.theoplayer.android.api.ads.mediatailor","c":"MediaTailorAd","l":"getTrackingEvents()","url":"com/theoplayer/android/api/ads/mediatailor/MediaTailorAd.html#getTrackingEvents()"}, {"p":"com.theoplayer.android.api.ads.mediatailor","c":"MediaTailorAdAvail","l":"getDuration()","url":"com/theoplayer/android/api/ads/mediatailor/MediaTailorAdAvail.html#getDuration()"}, {"p":"com.theoplayer.android.api.ads.mediatailor","c":"MediaTailorAdAvail","l":"getStartTime()","url":"com/theoplayer/android/api/ads/mediatailor/MediaTailorAdAvail.html#getStartTime()"}, {"p":"com.theoplayer.android.api.ads.mediatailor","c":"MediaTailorAdAvail","l":"getId()","url":"com/theoplayer/android/api/ads/mediatailor/MediaTailorAdAvail.html#getId()"}, {"p":"com.theoplayer.android.api.ads.mediatailor","c":"MediaTailorAdBreakEvent","l":"getType()","url":"com/theoplayer/android/api/ads/mediatailor/MediaTailorAdBreakEvent.html#getType()"}, {"p":"com.theoplayer.android.api.ads.mediatailor","c":"MediaTailorAdBreakEvent","l":"getAdAvail()","url":"com/theoplayer/android/api/ads/mediatailor/MediaTailorAdBreakEvent.html#getAdAvail()"}, {"p":"com.theoplayer.android.api.ads.mediatailor","c":"MediaTailorAdBreakEventType","l":"getName()","url":"com/theoplayer/android/api/ads/mediatailor/MediaTailorAdBreakEventType.html#getName()"}, {"p":"com.theoplayer.android.api.ads.mediatailor","c":"MediaTailorAdBreakEventType","l":"valueOf(String)","url":"com/theoplayer/android/api/ads/mediatailor/MediaTailorAdBreakEventType.html#valueOf(java.lang.String)"}, {"p":"com.theoplayer.android.api.ads.mediatailor","c":"MediaTailorAdBreakEventType","l":"values()","url":"com/theoplayer/android/api/ads/mediatailor/MediaTailorAdBreakEventType.html#values()"}, {"p":"com.theoplayer.android.api.ads.mediatailor","c":"MediaTailorAdBreakEventType","l":"getEntries()","url":"com/theoplayer/android/api/ads/mediatailor/MediaTailorAdBreakEventType.html#getEntries()"}, {"p":"com.theoplayer.android.api.ads.mediatailor","c":"MediaTailorAdEvent","l":"getType()","url":"com/theoplayer/android/api/ads/mediatailor/MediaTailorAdEvent.html#getType()"}, {"p":"com.theoplayer.android.api.ads.mediatailor","c":"MediaTailorAdEvent","l":"getAd()","url":"com/theoplayer/android/api/ads/mediatailor/MediaTailorAdEvent.html#getAd()"}, {"p":"com.theoplayer.android.api.ads.mediatailor","c":"MediaTailorAdEventType","l":"getName()","url":"com/theoplayer/android/api/ads/mediatailor/MediaTailorAdEventType.html#getName()"}, {"p":"com.theoplayer.android.api.ads.mediatailor","c":"MediaTailorAdEventType","l":"valueOf(String)","url":"com/theoplayer/android/api/ads/mediatailor/MediaTailorAdEventType.html#valueOf(java.lang.String)"}, {"p":"com.theoplayer.android.api.ads.mediatailor","c":"MediaTailorAdEventType","l":"values()","url":"com/theoplayer/android/api/ads/mediatailor/MediaTailorAdEventType.html#values()"}, {"p":"com.theoplayer.android.api.ads.mediatailor","c":"MediaTailorAdEventType","l":"getEntries()","url":"com/theoplayer/android/api/ads/mediatailor/MediaTailorAdEventType.html#getEntries()"}, {"p":"com.theoplayer.android.api.ads.mediatailor","c":"MediaTailorIntegrationFactory","l":"createMediaTailorIntegration(THEOplayerView)","url":"com/theoplayer/android/api/ads/mediatailor/MediaTailorIntegrationFactory.html#createMediaTailorIntegration(com.theoplayer.android.api.THEOplayerView)"}, {"p":"com.theoplayer.android.api.ads.theoads","c":"TheoAdDescription","l":"TheoAdDescription(String, String, String, String, TheoAdsLayoutOverride, Map, Boolean)","url":"com/theoplayer/android/api/ads/theoads/TheoAdDescription.html#TheoAdDescription(java.lang.String,java.lang.String,java.lang.String,java.lang.String,com.theoplayer.android.api.ads.theoads.TheoAdsLayoutOverride,java.util.Map,java.lang.Boolean)"}, {"p":"com.theoplayer.android.api.ads.theoads","c":"TheoAdDescription","l":"getNetworkCode()","url":"com/theoplayer/android/api/ads/theoads/TheoAdDescription.html#getNetworkCode()"}, {"p":"com.theoplayer.android.api.ads.theoads","c":"TheoAdDescription","l":"getCustomAssetKey()","url":"com/theoplayer/android/api/ads/theoads/TheoAdDescription.html#getCustomAssetKey()"}, {"p":"com.theoplayer.android.api.ads.theoads","c":"TheoAdDescription","l":"getBackdropDoubleBox()","url":"com/theoplayer/android/api/ads/theoads/TheoAdDescription.html#getBackdropDoubleBox()"}, {"p":"com.theoplayer.android.api.ads.theoads","c":"TheoAdDescription","l":"getBackdropLShape()","url":"com/theoplayer/android/api/ads/theoads/TheoAdDescription.html#getBackdropLShape()"}, {"p":"com.theoplayer.android.api.ads.theoads","c":"TheoAdDescription","l":"getOverrideLayout()","url":"com/theoplayer/android/api/ads/theoads/TheoAdDescription.html#getOverrideLayout()"}, {"p":"com.theoplayer.android.api.ads.theoads","c":"TheoAdDescription","l":"getAdTagParameters()","url":"com/theoplayer/android/api/ads/theoads/TheoAdDescription.html#getAdTagParameters()"}, {"p":"com.theoplayer.android.api.ads.theoads","c":"TheoAdDescription","l":"getUseId3()","url":"com/theoplayer/android/api/ads/theoads/TheoAdDescription.html#getUseId3()"}, {"p":"com.theoplayer.android.api.ads.theoads","c":"TheoAdsLayoutOverride","l":"valueOf(String)","url":"com/theoplayer/android/api/ads/theoads/TheoAdsLayoutOverride.html#valueOf(java.lang.String)"}, {"p":"com.theoplayer.android.api.ads.theoads","c":"TheoAdsLayoutOverride","l":"values()","url":"com/theoplayer/android/api/ads/theoads/TheoAdsLayoutOverride.html#values()"}, {"p":"com.theoplayer.android.api.ads.theoads","c":"TheoAdsLayoutOverride","l":"getEntries()","url":"com/theoplayer/android/api/ads/theoads/TheoAdsLayoutOverride.html#getEntries()"}, {"p":"com.theoplayer.android.api.ads.theoads","c":"TheoAdsIntegration","l":"replaceAdTagParameters(Map)","url":"com/theoplayer/android/api/ads/theoads/TheoAdsIntegration.html#replaceAdTagParameters(java.util.Map)"}, {"p":"com.theoplayer.android.api.ads.theoads","c":"TheoAdsIntegrationFactory","l":"createTheoAdsIntegration(THEOplayerView)","url":"com/theoplayer/android/api/ads/theoads/TheoAdsIntegrationFactory.html#createTheoAdsIntegration(com.theoplayer.android.api.THEOplayerView)"}, {"p":"com.theoplayer.android.api.ads.dai","c":"GoogleDaiIntegration","l":"setAdsRenderingSettings(AdsRenderingSettings)","url":"com/theoplayer/android/api/ads/dai/GoogleDaiIntegration.html#setAdsRenderingSettings(com.google.ads.interactivemedia.v3.api.AdsRenderingSettings)"}, {"p":"com.theoplayer.android.api.ads.dai","c":"GoogleDaiIntegration","l":"getAdsRenderingSettings()","url":"com/theoplayer/android/api/ads/dai/GoogleDaiIntegration.html#getAdsRenderingSettings()"}, {"p":"com.theoplayer.android.api.ads.dai","c":"GoogleDaiIntegration","l":"requestStream(StreamRequest, AdsRenderingSettings)","url":"com/theoplayer/android/api/ads/dai/GoogleDaiIntegration.html#requestStream(com.google.ads.interactivemedia.v3.api.StreamRequest,com.google.ads.interactivemedia.v3.api.AdsRenderingSettings)"}, {"p":"com.theoplayer.android.api.ads.dai","c":"GoogleDaiIntegration","l":"contentTimeForStreamTime(Double)","url":"com/theoplayer/android/api/ads/dai/GoogleDaiIntegration.html#contentTimeForStreamTime(java.lang.Double)"}, {"p":"com.theoplayer.android.api.ads.dai","c":"GoogleDaiIntegration","l":"streamTimeForContentTime(Double)","url":"com/theoplayer/android/api/ads/dai/GoogleDaiIntegration.html#streamTimeForContentTime(java.lang.Double)"}, {"p":"com.theoplayer.android.api.ads.dai","c":"GoogleDaiIntegration","l":"getCuePoints()","url":"com/theoplayer/android/api/ads/dai/GoogleDaiIntegration.html#getCuePoints()"}, {"p":"com.theoplayer.android.api.ads.dai","c":"GoogleDaiIntegration","l":"focus()","url":"com/theoplayer/android/api/ads/dai/GoogleDaiIntegration.html#focus()"}, {"p":"com.theoplayer.android.api.ads.dai","c":"GoogleDaiIntegration","l":"getEnableSnapback()","url":"com/theoplayer/android/api/ads/dai/GoogleDaiIntegration.html#getEnableSnapback()"}, {"p":"com.theoplayer.android.api.ads.dai","c":"GoogleDaiIntegration","l":"setEnableSnapback(Boolean)","url":"com/theoplayer/android/api/ads/dai/GoogleDaiIntegration.html#setEnableSnapback(java.lang.Boolean)"}, {"p":"com.theoplayer.android.api.ads.dai","c":"GoogleDaiIntegrationFactory","l":"createGoogleDaiIntegration(THEOplayerView, ImaSdkSettings)","url":"com/theoplayer/android/api/ads/dai/GoogleDaiIntegrationFactory.html#createGoogleDaiIntegration(com.theoplayer.android.api.THEOplayerView,com.google.ads.interactivemedia.v3.api.ImaSdkSettings)"}, {"p":"com.theoplayer.android.api.ads.dai","c":"GoogleDaiIntegrationFactory","l":"createGoogleDaiIntegration(THEOplayerView)","url":"com/theoplayer/android/api/ads/dai/GoogleDaiIntegrationFactory.html#createGoogleDaiIntegration(com.theoplayer.android.api.THEOplayerView,com.google.ads.interactivemedia.v3.api.ImaSdkSettings)"}, {"p":"com.theoplayer.android.api.cast","c":"CastConfiguration","l":"castStrategy","url":"com/theoplayer/android/api/cast/CastConfiguration.html#castStrategy"}, {"p":"com.theoplayer.android.api.cast","c":"CastIntegrationFactory","l":"INSTANCE","url":"com/theoplayer/android/api/cast/CastIntegrationFactory.html#INSTANCE"}, {"p":"com.theoplayer.android.api.media3","c":"Media3PlayerIntegrationFactory","l":"INSTANCE","url":"com/theoplayer/android/api/media3/Media3PlayerIntegrationFactory.html#INSTANCE"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"LAYOUT_PARAMS_MATCH","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#LAYOUT_PARAMS_MATCH"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"DEFAULT_KEYS_DIALER","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#DEFAULT_KEYS_DIALER"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"DEFAULT_KEYS_DISABLE","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#DEFAULT_KEYS_DISABLE"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"DEFAULT_KEYS_SEARCH_GLOBAL","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#DEFAULT_KEYS_SEARCH_GLOBAL"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"DEFAULT_KEYS_SEARCH_LOCAL","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#DEFAULT_KEYS_SEARCH_LOCAL"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"DEFAULT_KEYS_SHORTCUT","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#DEFAULT_KEYS_SHORTCUT"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"FOCUSED_STATE_SET","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#FOCUSED_STATE_SET"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"FULLSCREEN_MODE_REQUEST_ENTER","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#FULLSCREEN_MODE_REQUEST_ENTER"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"FULLSCREEN_MODE_REQUEST_EXIT","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#FULLSCREEN_MODE_REQUEST_EXIT"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"OVERRIDE_TRANSITION_CLOSE","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#OVERRIDE_TRANSITION_CLOSE"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"OVERRIDE_TRANSITION_OPEN","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#OVERRIDE_TRANSITION_OPEN"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"RESULT_CANCELED","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#RESULT_CANCELED"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"RESULT_FIRST_USER","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#RESULT_FIRST_USER"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"RESULT_OK","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#RESULT_OK"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"TRIM_MEMORY_BACKGROUND","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#TRIM_MEMORY_BACKGROUND"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"TRIM_MEMORY_COMPLETE","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#TRIM_MEMORY_COMPLETE"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"TRIM_MEMORY_MODERATE","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#TRIM_MEMORY_MODERATE"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"TRIM_MEMORY_RUNNING_CRITICAL","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#TRIM_MEMORY_RUNNING_CRITICAL"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"TRIM_MEMORY_RUNNING_LOW","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#TRIM_MEMORY_RUNNING_LOW"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"TRIM_MEMORY_RUNNING_MODERATE","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#TRIM_MEMORY_RUNNING_MODERATE"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"TRIM_MEMORY_UI_HIDDEN","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#TRIM_MEMORY_UI_HIDDEN"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"ACCESSIBILITY_SERVICE","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#ACCESSIBILITY_SERVICE"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"ACCOUNT_SERVICE","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#ACCOUNT_SERVICE"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"ACTIVITY_SERVICE","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#ACTIVITY_SERVICE"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"ALARM_SERVICE","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#ALARM_SERVICE"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"APPWIDGET_SERVICE","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#APPWIDGET_SERVICE"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"APP_OPS_SERVICE","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#APP_OPS_SERVICE"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"APP_SEARCH_SERVICE","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#APP_SEARCH_SERVICE"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"AUDIO_SERVICE","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#AUDIO_SERVICE"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"BATTERY_SERVICE","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#BATTERY_SERVICE"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"BIND_ABOVE_CLIENT","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#BIND_ABOVE_CLIENT"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"BIND_ADJUST_WITH_ACTIVITY","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#BIND_ADJUST_WITH_ACTIVITY"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"BIND_ALLOW_ACTIVITY_STARTS","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#BIND_ALLOW_ACTIVITY_STARTS"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"BIND_ALLOW_OOM_MANAGEMENT","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#BIND_ALLOW_OOM_MANAGEMENT"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"BIND_AUTO_CREATE","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#BIND_AUTO_CREATE"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"BIND_DEBUG_UNBIND","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#BIND_DEBUG_UNBIND"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"BIND_EXTERNAL_SERVICE","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#BIND_EXTERNAL_SERVICE"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"BIND_EXTERNAL_SERVICE_LONG","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#BIND_EXTERNAL_SERVICE_LONG"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"BIND_IMPORTANT","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#BIND_IMPORTANT"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"BIND_INCLUDE_CAPABILITIES","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#BIND_INCLUDE_CAPABILITIES"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"BIND_NOT_FOREGROUND","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#BIND_NOT_FOREGROUND"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"BIND_NOT_PERCEPTIBLE","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#BIND_NOT_PERCEPTIBLE"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"BIND_SHARED_ISOLATED_PROCESS","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#BIND_SHARED_ISOLATED_PROCESS"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"BIND_WAIVE_PRIORITY","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#BIND_WAIVE_PRIORITY"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"BIOMETRIC_SERVICE","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#BIOMETRIC_SERVICE"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"BLOB_STORE_SERVICE","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#BLOB_STORE_SERVICE"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"BLUETOOTH_SERVICE","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#BLUETOOTH_SERVICE"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"BUGREPORT_SERVICE","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#BUGREPORT_SERVICE"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"CAMERA_SERVICE","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#CAMERA_SERVICE"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"CAPTIONING_SERVICE","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#CAPTIONING_SERVICE"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"CARRIER_CONFIG_SERVICE","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#CARRIER_CONFIG_SERVICE"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"CLIPBOARD_SERVICE","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#CLIPBOARD_SERVICE"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"COMPANION_DEVICE_SERVICE","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#COMPANION_DEVICE_SERVICE"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"CONNECTIVITY_DIAGNOSTICS_SERVICE","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#CONNECTIVITY_DIAGNOSTICS_SERVICE"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"CONNECTIVITY_SERVICE","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#CONNECTIVITY_SERVICE"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"CONSUMER_IR_SERVICE","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#CONSUMER_IR_SERVICE"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"CONTEXT_IGNORE_SECURITY","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#CONTEXT_IGNORE_SECURITY"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"CONTEXT_INCLUDE_CODE","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#CONTEXT_INCLUDE_CODE"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"CONTEXT_RESTRICTED","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#CONTEXT_RESTRICTED"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"CREDENTIAL_SERVICE","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#CREDENTIAL_SERVICE"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"CROSS_PROFILE_APPS_SERVICE","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#CROSS_PROFILE_APPS_SERVICE"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"DEVICE_ID_DEFAULT","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#DEVICE_ID_DEFAULT"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"DEVICE_ID_INVALID","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#DEVICE_ID_INVALID"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"DEVICE_LOCK_SERVICE","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#DEVICE_LOCK_SERVICE"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"DEVICE_POLICY_SERVICE","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#DEVICE_POLICY_SERVICE"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"DISPLAY_HASH_SERVICE","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#DISPLAY_HASH_SERVICE"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"DISPLAY_SERVICE","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#DISPLAY_SERVICE"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"DOMAIN_VERIFICATION_SERVICE","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#DOMAIN_VERIFICATION_SERVICE"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"DOWNLOAD_SERVICE","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#DOWNLOAD_SERVICE"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"DROPBOX_SERVICE","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#DROPBOX_SERVICE"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"EUICC_SERVICE","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#EUICC_SERVICE"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"FILE_INTEGRITY_SERVICE","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#FILE_INTEGRITY_SERVICE"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"FINGERPRINT_SERVICE","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#FINGERPRINT_SERVICE"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"GAME_SERVICE","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#GAME_SERVICE"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"GRAMMATICAL_INFLECTION_SERVICE","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#GRAMMATICAL_INFLECTION_SERVICE"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"HARDWARE_PROPERTIES_SERVICE","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#HARDWARE_PROPERTIES_SERVICE"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"HEALTHCONNECT_SERVICE","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#HEALTHCONNECT_SERVICE"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"INPUT_METHOD_SERVICE","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#INPUT_METHOD_SERVICE"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"INPUT_SERVICE","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#INPUT_SERVICE"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"IPSEC_SERVICE","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#IPSEC_SERVICE"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"JOB_SCHEDULER_SERVICE","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#JOB_SCHEDULER_SERVICE"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"KEYGUARD_SERVICE","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#KEYGUARD_SERVICE"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"LAUNCHER_APPS_SERVICE","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#LAUNCHER_APPS_SERVICE"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"LAYOUT_INFLATER_SERVICE","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#LAYOUT_INFLATER_SERVICE"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"LOCALE_SERVICE","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#LOCALE_SERVICE"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"LOCATION_SERVICE","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#LOCATION_SERVICE"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"MEDIA_COMMUNICATION_SERVICE","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#MEDIA_COMMUNICATION_SERVICE"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"MEDIA_METRICS_SERVICE","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#MEDIA_METRICS_SERVICE"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"MEDIA_PROJECTION_SERVICE","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#MEDIA_PROJECTION_SERVICE"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"MEDIA_ROUTER_SERVICE","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#MEDIA_ROUTER_SERVICE"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"MEDIA_SESSION_SERVICE","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#MEDIA_SESSION_SERVICE"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"MIDI_SERVICE","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#MIDI_SERVICE"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"MODE_APPEND","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#MODE_APPEND"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"MODE_ENABLE_WRITE_AHEAD_LOGGING","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#MODE_ENABLE_WRITE_AHEAD_LOGGING"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"MODE_MULTI_PROCESS","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#MODE_MULTI_PROCESS"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"MODE_NO_LOCALIZED_COLLATORS","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#MODE_NO_LOCALIZED_COLLATORS"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"MODE_PRIVATE","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#MODE_PRIVATE"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"MODE_WORLD_READABLE","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#MODE_WORLD_READABLE"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"MODE_WORLD_WRITEABLE","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#MODE_WORLD_WRITEABLE"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"NETWORK_STATS_SERVICE","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#NETWORK_STATS_SERVICE"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"NFC_SERVICE","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#NFC_SERVICE"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"NOTIFICATION_SERVICE","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#NOTIFICATION_SERVICE"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"NSD_SERVICE","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#NSD_SERVICE"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"OVERLAY_SERVICE","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#OVERLAY_SERVICE"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"PEOPLE_SERVICE","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#PEOPLE_SERVICE"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"PERFORMANCE_HINT_SERVICE","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#PERFORMANCE_HINT_SERVICE"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"POWER_SERVICE","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#POWER_SERVICE"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"PRINT_SERVICE","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#PRINT_SERVICE"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"RECEIVER_EXPORTED","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#RECEIVER_EXPORTED"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"RECEIVER_NOT_EXPORTED","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#RECEIVER_NOT_EXPORTED"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"RECEIVER_VISIBLE_TO_INSTANT_APPS","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#RECEIVER_VISIBLE_TO_INSTANT_APPS"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"RESTRICTIONS_SERVICE","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#RESTRICTIONS_SERVICE"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"ROLE_SERVICE","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#ROLE_SERVICE"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"SEARCH_SERVICE","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#SEARCH_SERVICE"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"SENSOR_SERVICE","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#SENSOR_SERVICE"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"SHORTCUT_SERVICE","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#SHORTCUT_SERVICE"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"STATUS_BAR_SERVICE","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#STATUS_BAR_SERVICE"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"STORAGE_SERVICE","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#STORAGE_SERVICE"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"STORAGE_STATS_SERVICE","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#STORAGE_STATS_SERVICE"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"SYSTEM_HEALTH_SERVICE","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#SYSTEM_HEALTH_SERVICE"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"TELECOM_SERVICE","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#TELECOM_SERVICE"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"TELEPHONY_IMS_SERVICE","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#TELEPHONY_IMS_SERVICE"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"TELEPHONY_SERVICE","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#TELEPHONY_SERVICE"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"TELEPHONY_SUBSCRIPTION_SERVICE","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#TELEPHONY_SUBSCRIPTION_SERVICE"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"TEXT_CLASSIFICATION_SERVICE","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#TEXT_CLASSIFICATION_SERVICE"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"TEXT_SERVICES_MANAGER_SERVICE","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#TEXT_SERVICES_MANAGER_SERVICE"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"TV_INPUT_SERVICE","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#TV_INPUT_SERVICE"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"TV_INTERACTIVE_APP_SERVICE","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#TV_INTERACTIVE_APP_SERVICE"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"UI_MODE_SERVICE","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#UI_MODE_SERVICE"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"USAGE_STATS_SERVICE","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#USAGE_STATS_SERVICE"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"USB_SERVICE","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#USB_SERVICE"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"USER_SERVICE","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#USER_SERVICE"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"VIBRATOR_MANAGER_SERVICE","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#VIBRATOR_MANAGER_SERVICE"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"VIBRATOR_SERVICE","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#VIBRATOR_SERVICE"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"VIRTUAL_DEVICE_SERVICE","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#VIRTUAL_DEVICE_SERVICE"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"VPN_MANAGEMENT_SERVICE","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#VPN_MANAGEMENT_SERVICE"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"WALLPAPER_SERVICE","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#WALLPAPER_SERVICE"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"WIFI_AWARE_SERVICE","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#WIFI_AWARE_SERVICE"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"WIFI_P2P_SERVICE","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#WIFI_P2P_SERVICE"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"WIFI_RTT_RANGING_SERVICE","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#WIFI_RTT_RANGING_SERVICE"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"WIFI_SERVICE","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#WIFI_SERVICE"}, {"p":"com.theoplayer.android.api.fullscreen","c":"FullScreenActivity","l":"WINDOW_SERVICE","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html#WINDOW_SERVICE"}, {"p":"com.theoplayer.android.api.event.cache.task","c":"CachingTaskEventTypes","l":"CACHING_TASK_STATE_CHANGE","url":"com/theoplayer/android/api/event/cache/task/CachingTaskEventTypes.html#CACHING_TASK_STATE_CHANGE"}, {"p":"com.theoplayer.android.api.event.cache.task","c":"CachingTaskEventTypes","l":"CACHING_TASK_PROGRESS","url":"com/theoplayer/android/api/event/cache/task/CachingTaskEventTypes.html#CACHING_TASK_PROGRESS"}, {"p":"com.theoplayer.android.api.event.cache.task","c":"CachingTaskEventTypes","l":"CACHING_TASK_ERROR","url":"com/theoplayer/android/api/event/cache/task/CachingTaskEventTypes.html#CACHING_TASK_ERROR"}, {"p":"com.theoplayer.android.api.event.cache.task","c":"CachingTaskEventTypes","l":"name","url":"com/theoplayer/android/api/event/cache/task/CachingTaskEventTypes.html#name"}, {"p":"com.theoplayer.android.api.event.cache","c":"CacheEventTypes","l":"CACHE_STATE_CHANGE","url":"com/theoplayer/android/api/event/cache/CacheEventTypes.html#CACHE_STATE_CHANGE"}, {"p":"com.theoplayer.android.api.event.cache","c":"CacheEventTypes","l":"name","url":"com/theoplayer/android/api/event/cache/CacheEventTypes.html#name"}, {"p":"com.theoplayer.android.api.event.cache.tasklist","c":"CachingTaskListEventTypes","l":"ADD_TASK","url":"com/theoplayer/android/api/event/cache/tasklist/CachingTaskListEventTypes.html#ADD_TASK"}, {"p":"com.theoplayer.android.api.event.cache.tasklist","c":"CachingTaskListEventTypes","l":"REMOVE_TASK","url":"com/theoplayer/android/api/event/cache/tasklist/CachingTaskListEventTypes.html#REMOVE_TASK"}, {"p":"com.theoplayer.android.api.event.cache.tasklist","c":"CachingTaskListEventTypes","l":"name","url":"com/theoplayer/android/api/event/cache/tasklist/CachingTaskListEventTypes.html#name"}, {"p":"com.theoplayer.android.api.event.chromecast","c":"ChromecastEventTypes","l":"STATECHANGE","url":"com/theoplayer/android/api/event/chromecast/ChromecastEventTypes.html#STATECHANGE"}, {"p":"com.theoplayer.android.api.event.chromecast","c":"ChromecastEventTypes","l":"ERROR","url":"com/theoplayer/android/api/event/chromecast/ChromecastEventTypes.html#ERROR"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"THEOPLAYERVIEW_TAG","url":"com/theoplayer/android/api/THEOplayerView.html#THEOPLAYERVIEW_TAG"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"CLIP_TO_PADDING_MASK","url":"com/theoplayer/android/api/THEOplayerView.html#CLIP_TO_PADDING_MASK"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"FOCUS_AFTER_DESCENDANTS","url":"com/theoplayer/android/api/THEOplayerView.html#FOCUS_AFTER_DESCENDANTS"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"FOCUS_BEFORE_DESCENDANTS","url":"com/theoplayer/android/api/THEOplayerView.html#FOCUS_BEFORE_DESCENDANTS"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"FOCUS_BLOCK_DESCENDANTS","url":"com/theoplayer/android/api/THEOplayerView.html#FOCUS_BLOCK_DESCENDANTS"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"LAYOUT_MODE_CLIP_BOUNDS","url":"com/theoplayer/android/api/THEOplayerView.html#LAYOUT_MODE_CLIP_BOUNDS"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"LAYOUT_MODE_OPTICAL_BOUNDS","url":"com/theoplayer/android/api/THEOplayerView.html#LAYOUT_MODE_OPTICAL_BOUNDS"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"PERSISTENT_ALL_CACHES","url":"com/theoplayer/android/api/THEOplayerView.html#PERSISTENT_ALL_CACHES"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"PERSISTENT_ANIMATION_CACHE","url":"com/theoplayer/android/api/THEOplayerView.html#PERSISTENT_ANIMATION_CACHE"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"PERSISTENT_NO_CACHE","url":"com/theoplayer/android/api/THEOplayerView.html#PERSISTENT_NO_CACHE"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"PERSISTENT_SCROLLING_CACHE","url":"com/theoplayer/android/api/THEOplayerView.html#PERSISTENT_SCROLLING_CACHE"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"ACCESSIBILITY_DATA_SENSITIVE_AUTO","url":"com/theoplayer/android/api/THEOplayerView.html#ACCESSIBILITY_DATA_SENSITIVE_AUTO"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"ACCESSIBILITY_DATA_SENSITIVE_NO","url":"com/theoplayer/android/api/THEOplayerView.html#ACCESSIBILITY_DATA_SENSITIVE_NO"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"ACCESSIBILITY_DATA_SENSITIVE_YES","url":"com/theoplayer/android/api/THEOplayerView.html#ACCESSIBILITY_DATA_SENSITIVE_YES"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"ACCESSIBILITY_LIVE_REGION_ASSERTIVE","url":"com/theoplayer/android/api/THEOplayerView.html#ACCESSIBILITY_LIVE_REGION_ASSERTIVE"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"ACCESSIBILITY_LIVE_REGION_NONE","url":"com/theoplayer/android/api/THEOplayerView.html#ACCESSIBILITY_LIVE_REGION_NONE"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"ACCESSIBILITY_LIVE_REGION_POLITE","url":"com/theoplayer/android/api/THEOplayerView.html#ACCESSIBILITY_LIVE_REGION_POLITE"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"ALPHA","url":"com/theoplayer/android/api/THEOplayerView.html#ALPHA"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"AUTOFILL_FLAG_INCLUDE_NOT_IMPORTANT_VIEWS","url":"com/theoplayer/android/api/THEOplayerView.html#AUTOFILL_FLAG_INCLUDE_NOT_IMPORTANT_VIEWS"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"AUTOFILL_HINT_CREDIT_CARD_EXPIRATION_DATE","url":"com/theoplayer/android/api/THEOplayerView.html#AUTOFILL_HINT_CREDIT_CARD_EXPIRATION_DATE"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"AUTOFILL_HINT_CREDIT_CARD_EXPIRATION_DAY","url":"com/theoplayer/android/api/THEOplayerView.html#AUTOFILL_HINT_CREDIT_CARD_EXPIRATION_DAY"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"AUTOFILL_HINT_CREDIT_CARD_EXPIRATION_MONTH","url":"com/theoplayer/android/api/THEOplayerView.html#AUTOFILL_HINT_CREDIT_CARD_EXPIRATION_MONTH"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"AUTOFILL_HINT_CREDIT_CARD_EXPIRATION_YEAR","url":"com/theoplayer/android/api/THEOplayerView.html#AUTOFILL_HINT_CREDIT_CARD_EXPIRATION_YEAR"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"AUTOFILL_HINT_CREDIT_CARD_NUMBER","url":"com/theoplayer/android/api/THEOplayerView.html#AUTOFILL_HINT_CREDIT_CARD_NUMBER"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"AUTOFILL_HINT_CREDIT_CARD_SECURITY_CODE","url":"com/theoplayer/android/api/THEOplayerView.html#AUTOFILL_HINT_CREDIT_CARD_SECURITY_CODE"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"AUTOFILL_HINT_EMAIL_ADDRESS","url":"com/theoplayer/android/api/THEOplayerView.html#AUTOFILL_HINT_EMAIL_ADDRESS"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"AUTOFILL_HINT_NAME","url":"com/theoplayer/android/api/THEOplayerView.html#AUTOFILL_HINT_NAME"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"AUTOFILL_HINT_PASSWORD","url":"com/theoplayer/android/api/THEOplayerView.html#AUTOFILL_HINT_PASSWORD"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"AUTOFILL_HINT_PHONE","url":"com/theoplayer/android/api/THEOplayerView.html#AUTOFILL_HINT_PHONE"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"AUTOFILL_HINT_POSTAL_ADDRESS","url":"com/theoplayer/android/api/THEOplayerView.html#AUTOFILL_HINT_POSTAL_ADDRESS"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"AUTOFILL_HINT_POSTAL_CODE","url":"com/theoplayer/android/api/THEOplayerView.html#AUTOFILL_HINT_POSTAL_CODE"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"AUTOFILL_HINT_USERNAME","url":"com/theoplayer/android/api/THEOplayerView.html#AUTOFILL_HINT_USERNAME"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"AUTOFILL_TYPE_DATE","url":"com/theoplayer/android/api/THEOplayerView.html#AUTOFILL_TYPE_DATE"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"AUTOFILL_TYPE_LIST","url":"com/theoplayer/android/api/THEOplayerView.html#AUTOFILL_TYPE_LIST"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"AUTOFILL_TYPE_NONE","url":"com/theoplayer/android/api/THEOplayerView.html#AUTOFILL_TYPE_NONE"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"AUTOFILL_TYPE_TEXT","url":"com/theoplayer/android/api/THEOplayerView.html#AUTOFILL_TYPE_TEXT"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"AUTOFILL_TYPE_TOGGLE","url":"com/theoplayer/android/api/THEOplayerView.html#AUTOFILL_TYPE_TOGGLE"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"DRAG_FLAG_ACCESSIBILITY_ACTION","url":"com/theoplayer/android/api/THEOplayerView.html#DRAG_FLAG_ACCESSIBILITY_ACTION"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"DRAG_FLAG_GLOBAL","url":"com/theoplayer/android/api/THEOplayerView.html#DRAG_FLAG_GLOBAL"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"DRAG_FLAG_GLOBAL_PERSISTABLE_URI_PERMISSION","url":"com/theoplayer/android/api/THEOplayerView.html#DRAG_FLAG_GLOBAL_PERSISTABLE_URI_PERMISSION"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"DRAG_FLAG_GLOBAL_PREFIX_URI_PERMISSION","url":"com/theoplayer/android/api/THEOplayerView.html#DRAG_FLAG_GLOBAL_PREFIX_URI_PERMISSION"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"DRAG_FLAG_GLOBAL_URI_READ","url":"com/theoplayer/android/api/THEOplayerView.html#DRAG_FLAG_GLOBAL_URI_READ"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"DRAG_FLAG_GLOBAL_URI_WRITE","url":"com/theoplayer/android/api/THEOplayerView.html#DRAG_FLAG_GLOBAL_URI_WRITE"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"DRAG_FLAG_OPAQUE","url":"com/theoplayer/android/api/THEOplayerView.html#DRAG_FLAG_OPAQUE"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"DRAWING_CACHE_QUALITY_AUTO","url":"com/theoplayer/android/api/THEOplayerView.html#DRAWING_CACHE_QUALITY_AUTO"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"DRAWING_CACHE_QUALITY_HIGH","url":"com/theoplayer/android/api/THEOplayerView.html#DRAWING_CACHE_QUALITY_HIGH"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"DRAWING_CACHE_QUALITY_LOW","url":"com/theoplayer/android/api/THEOplayerView.html#DRAWING_CACHE_QUALITY_LOW"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"EMPTY_STATE_SET","url":"com/theoplayer/android/api/THEOplayerView.html#EMPTY_STATE_SET"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"ENABLED_FOCUSED_SELECTED_STATE_SET","url":"com/theoplayer/android/api/THEOplayerView.html#ENABLED_FOCUSED_SELECTED_STATE_SET"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"ENABLED_FOCUSED_SELECTED_WINDOW_FOCUSED_STATE_SET","url":"com/theoplayer/android/api/THEOplayerView.html#ENABLED_FOCUSED_SELECTED_WINDOW_FOCUSED_STATE_SET"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"ENABLED_FOCUSED_STATE_SET","url":"com/theoplayer/android/api/THEOplayerView.html#ENABLED_FOCUSED_STATE_SET"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"ENABLED_FOCUSED_WINDOW_FOCUSED_STATE_SET","url":"com/theoplayer/android/api/THEOplayerView.html#ENABLED_FOCUSED_WINDOW_FOCUSED_STATE_SET"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"ENABLED_SELECTED_STATE_SET","url":"com/theoplayer/android/api/THEOplayerView.html#ENABLED_SELECTED_STATE_SET"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"ENABLED_SELECTED_WINDOW_FOCUSED_STATE_SET","url":"com/theoplayer/android/api/THEOplayerView.html#ENABLED_SELECTED_WINDOW_FOCUSED_STATE_SET"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"ENABLED_STATE_SET","url":"com/theoplayer/android/api/THEOplayerView.html#ENABLED_STATE_SET"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"ENABLED_WINDOW_FOCUSED_STATE_SET","url":"com/theoplayer/android/api/THEOplayerView.html#ENABLED_WINDOW_FOCUSED_STATE_SET"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"FIND_VIEWS_WITH_CONTENT_DESCRIPTION","url":"com/theoplayer/android/api/THEOplayerView.html#FIND_VIEWS_WITH_CONTENT_DESCRIPTION"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"FIND_VIEWS_WITH_TEXT","url":"com/theoplayer/android/api/THEOplayerView.html#FIND_VIEWS_WITH_TEXT"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"FOCUSABLE","url":"com/theoplayer/android/api/THEOplayerView.html#FOCUSABLE"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"FOCUSABLES_ALL","url":"com/theoplayer/android/api/THEOplayerView.html#FOCUSABLES_ALL"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"FOCUSABLES_TOUCH_MODE","url":"com/theoplayer/android/api/THEOplayerView.html#FOCUSABLES_TOUCH_MODE"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"FOCUSABLE_AUTO","url":"com/theoplayer/android/api/THEOplayerView.html#FOCUSABLE_AUTO"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"FOCUSED_SELECTED_STATE_SET","url":"com/theoplayer/android/api/THEOplayerView.html#FOCUSED_SELECTED_STATE_SET"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"FOCUSED_SELECTED_WINDOW_FOCUSED_STATE_SET","url":"com/theoplayer/android/api/THEOplayerView.html#FOCUSED_SELECTED_WINDOW_FOCUSED_STATE_SET"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"FOCUSED_STATE_SET","url":"com/theoplayer/android/api/THEOplayerView.html#FOCUSED_STATE_SET"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"FOCUSED_WINDOW_FOCUSED_STATE_SET","url":"com/theoplayer/android/api/THEOplayerView.html#FOCUSED_WINDOW_FOCUSED_STATE_SET"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"FOCUS_BACKWARD","url":"com/theoplayer/android/api/THEOplayerView.html#FOCUS_BACKWARD"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"FOCUS_DOWN","url":"com/theoplayer/android/api/THEOplayerView.html#FOCUS_DOWN"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"FOCUS_FORWARD","url":"com/theoplayer/android/api/THEOplayerView.html#FOCUS_FORWARD"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"FOCUS_LEFT","url":"com/theoplayer/android/api/THEOplayerView.html#FOCUS_LEFT"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"FOCUS_RIGHT","url":"com/theoplayer/android/api/THEOplayerView.html#FOCUS_RIGHT"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"FOCUS_UP","url":"com/theoplayer/android/api/THEOplayerView.html#FOCUS_UP"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"GONE","url":"com/theoplayer/android/api/THEOplayerView.html#GONE"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"HAPTIC_FEEDBACK_ENABLED","url":"com/theoplayer/android/api/THEOplayerView.html#HAPTIC_FEEDBACK_ENABLED"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"IMPORTANT_FOR_ACCESSIBILITY_AUTO","url":"com/theoplayer/android/api/THEOplayerView.html#IMPORTANT_FOR_ACCESSIBILITY_AUTO"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"IMPORTANT_FOR_ACCESSIBILITY_NO","url":"com/theoplayer/android/api/THEOplayerView.html#IMPORTANT_FOR_ACCESSIBILITY_NO"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"IMPORTANT_FOR_ACCESSIBILITY_NO_HIDE_DESCENDANTS","url":"com/theoplayer/android/api/THEOplayerView.html#IMPORTANT_FOR_ACCESSIBILITY_NO_HIDE_DESCENDANTS"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"IMPORTANT_FOR_ACCESSIBILITY_YES","url":"com/theoplayer/android/api/THEOplayerView.html#IMPORTANT_FOR_ACCESSIBILITY_YES"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"IMPORTANT_FOR_AUTOFILL_AUTO","url":"com/theoplayer/android/api/THEOplayerView.html#IMPORTANT_FOR_AUTOFILL_AUTO"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"IMPORTANT_FOR_AUTOFILL_NO","url":"com/theoplayer/android/api/THEOplayerView.html#IMPORTANT_FOR_AUTOFILL_NO"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"IMPORTANT_FOR_AUTOFILL_NO_EXCLUDE_DESCENDANTS","url":"com/theoplayer/android/api/THEOplayerView.html#IMPORTANT_FOR_AUTOFILL_NO_EXCLUDE_DESCENDANTS"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"IMPORTANT_FOR_AUTOFILL_YES","url":"com/theoplayer/android/api/THEOplayerView.html#IMPORTANT_FOR_AUTOFILL_YES"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"IMPORTANT_FOR_AUTOFILL_YES_EXCLUDE_DESCENDANTS","url":"com/theoplayer/android/api/THEOplayerView.html#IMPORTANT_FOR_AUTOFILL_YES_EXCLUDE_DESCENDANTS"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"IMPORTANT_FOR_CONTENT_CAPTURE_AUTO","url":"com/theoplayer/android/api/THEOplayerView.html#IMPORTANT_FOR_CONTENT_CAPTURE_AUTO"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"IMPORTANT_FOR_CONTENT_CAPTURE_NO","url":"com/theoplayer/android/api/THEOplayerView.html#IMPORTANT_FOR_CONTENT_CAPTURE_NO"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"IMPORTANT_FOR_CONTENT_CAPTURE_NO_EXCLUDE_DESCENDANTS","url":"com/theoplayer/android/api/THEOplayerView.html#IMPORTANT_FOR_CONTENT_CAPTURE_NO_EXCLUDE_DESCENDANTS"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"IMPORTANT_FOR_CONTENT_CAPTURE_YES","url":"com/theoplayer/android/api/THEOplayerView.html#IMPORTANT_FOR_CONTENT_CAPTURE_YES"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"IMPORTANT_FOR_CONTENT_CAPTURE_YES_EXCLUDE_DESCENDANTS","url":"com/theoplayer/android/api/THEOplayerView.html#IMPORTANT_FOR_CONTENT_CAPTURE_YES_EXCLUDE_DESCENDANTS"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"INVISIBLE","url":"com/theoplayer/android/api/THEOplayerView.html#INVISIBLE"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"KEEP_SCREEN_ON","url":"com/theoplayer/android/api/THEOplayerView.html#KEEP_SCREEN_ON"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"LAYER_TYPE_HARDWARE","url":"com/theoplayer/android/api/THEOplayerView.html#LAYER_TYPE_HARDWARE"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"LAYER_TYPE_NONE","url":"com/theoplayer/android/api/THEOplayerView.html#LAYER_TYPE_NONE"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"LAYER_TYPE_SOFTWARE","url":"com/theoplayer/android/api/THEOplayerView.html#LAYER_TYPE_SOFTWARE"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"LAYOUT_DIRECTION_INHERIT","url":"com/theoplayer/android/api/THEOplayerView.html#LAYOUT_DIRECTION_INHERIT"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"LAYOUT_DIRECTION_LOCALE","url":"com/theoplayer/android/api/THEOplayerView.html#LAYOUT_DIRECTION_LOCALE"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"LAYOUT_DIRECTION_LTR","url":"com/theoplayer/android/api/THEOplayerView.html#LAYOUT_DIRECTION_LTR"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"LAYOUT_DIRECTION_RTL","url":"com/theoplayer/android/api/THEOplayerView.html#LAYOUT_DIRECTION_RTL"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"MEASURED_HEIGHT_STATE_SHIFT","url":"com/theoplayer/android/api/THEOplayerView.html#MEASURED_HEIGHT_STATE_SHIFT"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"MEASURED_SIZE_MASK","url":"com/theoplayer/android/api/THEOplayerView.html#MEASURED_SIZE_MASK"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"MEASURED_STATE_MASK","url":"com/theoplayer/android/api/THEOplayerView.html#MEASURED_STATE_MASK"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"MEASURED_STATE_TOO_SMALL","url":"com/theoplayer/android/api/THEOplayerView.html#MEASURED_STATE_TOO_SMALL"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"NOT_FOCUSABLE","url":"com/theoplayer/android/api/THEOplayerView.html#NOT_FOCUSABLE"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"NO_ID","url":"com/theoplayer/android/api/THEOplayerView.html#NO_ID"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"OVER_SCROLL_ALWAYS","url":"com/theoplayer/android/api/THEOplayerView.html#OVER_SCROLL_ALWAYS"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"OVER_SCROLL_IF_CONTENT_SCROLLS","url":"com/theoplayer/android/api/THEOplayerView.html#OVER_SCROLL_IF_CONTENT_SCROLLS"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"OVER_SCROLL_NEVER","url":"com/theoplayer/android/api/THEOplayerView.html#OVER_SCROLL_NEVER"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"PRESSED_ENABLED_FOCUSED_SELECTED_STATE_SET","url":"com/theoplayer/android/api/THEOplayerView.html#PRESSED_ENABLED_FOCUSED_SELECTED_STATE_SET"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"PRESSED_ENABLED_FOCUSED_SELECTED_WINDOW_FOCUSED_STATE_SET","url":"com/theoplayer/android/api/THEOplayerView.html#PRESSED_ENABLED_FOCUSED_SELECTED_WINDOW_FOCUSED_STATE_SET"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"PRESSED_ENABLED_FOCUSED_STATE_SET","url":"com/theoplayer/android/api/THEOplayerView.html#PRESSED_ENABLED_FOCUSED_STATE_SET"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"PRESSED_ENABLED_FOCUSED_WINDOW_FOCUSED_STATE_SET","url":"com/theoplayer/android/api/THEOplayerView.html#PRESSED_ENABLED_FOCUSED_WINDOW_FOCUSED_STATE_SET"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"PRESSED_ENABLED_SELECTED_STATE_SET","url":"com/theoplayer/android/api/THEOplayerView.html#PRESSED_ENABLED_SELECTED_STATE_SET"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"PRESSED_ENABLED_SELECTED_WINDOW_FOCUSED_STATE_SET","url":"com/theoplayer/android/api/THEOplayerView.html#PRESSED_ENABLED_SELECTED_WINDOW_FOCUSED_STATE_SET"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"PRESSED_ENABLED_STATE_SET","url":"com/theoplayer/android/api/THEOplayerView.html#PRESSED_ENABLED_STATE_SET"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"PRESSED_ENABLED_WINDOW_FOCUSED_STATE_SET","url":"com/theoplayer/android/api/THEOplayerView.html#PRESSED_ENABLED_WINDOW_FOCUSED_STATE_SET"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"PRESSED_FOCUSED_SELECTED_STATE_SET","url":"com/theoplayer/android/api/THEOplayerView.html#PRESSED_FOCUSED_SELECTED_STATE_SET"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"PRESSED_FOCUSED_SELECTED_WINDOW_FOCUSED_STATE_SET","url":"com/theoplayer/android/api/THEOplayerView.html#PRESSED_FOCUSED_SELECTED_WINDOW_FOCUSED_STATE_SET"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"PRESSED_FOCUSED_STATE_SET","url":"com/theoplayer/android/api/THEOplayerView.html#PRESSED_FOCUSED_STATE_SET"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"PRESSED_FOCUSED_WINDOW_FOCUSED_STATE_SET","url":"com/theoplayer/android/api/THEOplayerView.html#PRESSED_FOCUSED_WINDOW_FOCUSED_STATE_SET"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"PRESSED_SELECTED_STATE_SET","url":"com/theoplayer/android/api/THEOplayerView.html#PRESSED_SELECTED_STATE_SET"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"PRESSED_SELECTED_WINDOW_FOCUSED_STATE_SET","url":"com/theoplayer/android/api/THEOplayerView.html#PRESSED_SELECTED_WINDOW_FOCUSED_STATE_SET"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"PRESSED_STATE_SET","url":"com/theoplayer/android/api/THEOplayerView.html#PRESSED_STATE_SET"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"PRESSED_WINDOW_FOCUSED_STATE_SET","url":"com/theoplayer/android/api/THEOplayerView.html#PRESSED_WINDOW_FOCUSED_STATE_SET"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"ROTATION","url":"com/theoplayer/android/api/THEOplayerView.html#ROTATION"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"ROTATION_X","url":"com/theoplayer/android/api/THEOplayerView.html#ROTATION_X"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"ROTATION_Y","url":"com/theoplayer/android/api/THEOplayerView.html#ROTATION_Y"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"SCALE_X","url":"com/theoplayer/android/api/THEOplayerView.html#SCALE_X"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"SCALE_Y","url":"com/theoplayer/android/api/THEOplayerView.html#SCALE_Y"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"SCREEN_STATE_OFF","url":"com/theoplayer/android/api/THEOplayerView.html#SCREEN_STATE_OFF"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"SCREEN_STATE_ON","url":"com/theoplayer/android/api/THEOplayerView.html#SCREEN_STATE_ON"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"SCROLLBARS_INSIDE_INSET","url":"com/theoplayer/android/api/THEOplayerView.html#SCROLLBARS_INSIDE_INSET"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"SCROLLBARS_INSIDE_OVERLAY","url":"com/theoplayer/android/api/THEOplayerView.html#SCROLLBARS_INSIDE_OVERLAY"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"SCROLLBARS_OUTSIDE_INSET","url":"com/theoplayer/android/api/THEOplayerView.html#SCROLLBARS_OUTSIDE_INSET"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"SCROLLBARS_OUTSIDE_OVERLAY","url":"com/theoplayer/android/api/THEOplayerView.html#SCROLLBARS_OUTSIDE_OVERLAY"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"SCROLLBAR_POSITION_DEFAULT","url":"com/theoplayer/android/api/THEOplayerView.html#SCROLLBAR_POSITION_DEFAULT"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"SCROLLBAR_POSITION_LEFT","url":"com/theoplayer/android/api/THEOplayerView.html#SCROLLBAR_POSITION_LEFT"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"SCROLLBAR_POSITION_RIGHT","url":"com/theoplayer/android/api/THEOplayerView.html#SCROLLBAR_POSITION_RIGHT"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"SCROLL_AXIS_HORIZONTAL","url":"com/theoplayer/android/api/THEOplayerView.html#SCROLL_AXIS_HORIZONTAL"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"SCROLL_AXIS_NONE","url":"com/theoplayer/android/api/THEOplayerView.html#SCROLL_AXIS_NONE"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"SCROLL_AXIS_VERTICAL","url":"com/theoplayer/android/api/THEOplayerView.html#SCROLL_AXIS_VERTICAL"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"SCROLL_CAPTURE_HINT_AUTO","url":"com/theoplayer/android/api/THEOplayerView.html#SCROLL_CAPTURE_HINT_AUTO"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"SCROLL_CAPTURE_HINT_EXCLUDE","url":"com/theoplayer/android/api/THEOplayerView.html#SCROLL_CAPTURE_HINT_EXCLUDE"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"SCROLL_CAPTURE_HINT_EXCLUDE_DESCENDANTS","url":"com/theoplayer/android/api/THEOplayerView.html#SCROLL_CAPTURE_HINT_EXCLUDE_DESCENDANTS"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"SCROLL_CAPTURE_HINT_INCLUDE","url":"com/theoplayer/android/api/THEOplayerView.html#SCROLL_CAPTURE_HINT_INCLUDE"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"SCROLL_INDICATOR_BOTTOM","url":"com/theoplayer/android/api/THEOplayerView.html#SCROLL_INDICATOR_BOTTOM"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"SCROLL_INDICATOR_END","url":"com/theoplayer/android/api/THEOplayerView.html#SCROLL_INDICATOR_END"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"SCROLL_INDICATOR_LEFT","url":"com/theoplayer/android/api/THEOplayerView.html#SCROLL_INDICATOR_LEFT"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"SCROLL_INDICATOR_RIGHT","url":"com/theoplayer/android/api/THEOplayerView.html#SCROLL_INDICATOR_RIGHT"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"SCROLL_INDICATOR_START","url":"com/theoplayer/android/api/THEOplayerView.html#SCROLL_INDICATOR_START"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"SCROLL_INDICATOR_TOP","url":"com/theoplayer/android/api/THEOplayerView.html#SCROLL_INDICATOR_TOP"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"SELECTED_STATE_SET","url":"com/theoplayer/android/api/THEOplayerView.html#SELECTED_STATE_SET"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"SELECTED_WINDOW_FOCUSED_STATE_SET","url":"com/theoplayer/android/api/THEOplayerView.html#SELECTED_WINDOW_FOCUSED_STATE_SET"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"SOUND_EFFECTS_ENABLED","url":"com/theoplayer/android/api/THEOplayerView.html#SOUND_EFFECTS_ENABLED"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"STATUS_BAR_HIDDEN","url":"com/theoplayer/android/api/THEOplayerView.html#STATUS_BAR_HIDDEN"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"STATUS_BAR_VISIBLE","url":"com/theoplayer/android/api/THEOplayerView.html#STATUS_BAR_VISIBLE"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"SYSTEM_UI_FLAG_FULLSCREEN","url":"com/theoplayer/android/api/THEOplayerView.html#SYSTEM_UI_FLAG_FULLSCREEN"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"SYSTEM_UI_FLAG_HIDE_NAVIGATION","url":"com/theoplayer/android/api/THEOplayerView.html#SYSTEM_UI_FLAG_HIDE_NAVIGATION"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"SYSTEM_UI_FLAG_IMMERSIVE","url":"com/theoplayer/android/api/THEOplayerView.html#SYSTEM_UI_FLAG_IMMERSIVE"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"SYSTEM_UI_FLAG_IMMERSIVE_STICKY","url":"com/theoplayer/android/api/THEOplayerView.html#SYSTEM_UI_FLAG_IMMERSIVE_STICKY"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN","url":"com/theoplayer/android/api/THEOplayerView.html#SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION","url":"com/theoplayer/android/api/THEOplayerView.html#SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"SYSTEM_UI_FLAG_LAYOUT_STABLE","url":"com/theoplayer/android/api/THEOplayerView.html#SYSTEM_UI_FLAG_LAYOUT_STABLE"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"SYSTEM_UI_FLAG_LIGHT_NAVIGATION_BAR","url":"com/theoplayer/android/api/THEOplayerView.html#SYSTEM_UI_FLAG_LIGHT_NAVIGATION_BAR"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"SYSTEM_UI_FLAG_LIGHT_STATUS_BAR","url":"com/theoplayer/android/api/THEOplayerView.html#SYSTEM_UI_FLAG_LIGHT_STATUS_BAR"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"SYSTEM_UI_FLAG_LOW_PROFILE","url":"com/theoplayer/android/api/THEOplayerView.html#SYSTEM_UI_FLAG_LOW_PROFILE"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"SYSTEM_UI_FLAG_VISIBLE","url":"com/theoplayer/android/api/THEOplayerView.html#SYSTEM_UI_FLAG_VISIBLE"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"SYSTEM_UI_LAYOUT_FLAGS","url":"com/theoplayer/android/api/THEOplayerView.html#SYSTEM_UI_LAYOUT_FLAGS"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"TEXT_ALIGNMENT_CENTER","url":"com/theoplayer/android/api/THEOplayerView.html#TEXT_ALIGNMENT_CENTER"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"TEXT_ALIGNMENT_GRAVITY","url":"com/theoplayer/android/api/THEOplayerView.html#TEXT_ALIGNMENT_GRAVITY"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"TEXT_ALIGNMENT_INHERIT","url":"com/theoplayer/android/api/THEOplayerView.html#TEXT_ALIGNMENT_INHERIT"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"TEXT_ALIGNMENT_TEXT_END","url":"com/theoplayer/android/api/THEOplayerView.html#TEXT_ALIGNMENT_TEXT_END"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"TEXT_ALIGNMENT_TEXT_START","url":"com/theoplayer/android/api/THEOplayerView.html#TEXT_ALIGNMENT_TEXT_START"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"TEXT_ALIGNMENT_VIEW_END","url":"com/theoplayer/android/api/THEOplayerView.html#TEXT_ALIGNMENT_VIEW_END"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"TEXT_ALIGNMENT_VIEW_START","url":"com/theoplayer/android/api/THEOplayerView.html#TEXT_ALIGNMENT_VIEW_START"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"TEXT_DIRECTION_ANY_RTL","url":"com/theoplayer/android/api/THEOplayerView.html#TEXT_DIRECTION_ANY_RTL"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"TEXT_DIRECTION_FIRST_STRONG","url":"com/theoplayer/android/api/THEOplayerView.html#TEXT_DIRECTION_FIRST_STRONG"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"TEXT_DIRECTION_FIRST_STRONG_LTR","url":"com/theoplayer/android/api/THEOplayerView.html#TEXT_DIRECTION_FIRST_STRONG_LTR"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"TEXT_DIRECTION_FIRST_STRONG_RTL","url":"com/theoplayer/android/api/THEOplayerView.html#TEXT_DIRECTION_FIRST_STRONG_RTL"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"TEXT_DIRECTION_INHERIT","url":"com/theoplayer/android/api/THEOplayerView.html#TEXT_DIRECTION_INHERIT"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"TEXT_DIRECTION_LOCALE","url":"com/theoplayer/android/api/THEOplayerView.html#TEXT_DIRECTION_LOCALE"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"TEXT_DIRECTION_LTR","url":"com/theoplayer/android/api/THEOplayerView.html#TEXT_DIRECTION_LTR"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"TEXT_DIRECTION_RTL","url":"com/theoplayer/android/api/THEOplayerView.html#TEXT_DIRECTION_RTL"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"TRANSLATION_X","url":"com/theoplayer/android/api/THEOplayerView.html#TRANSLATION_X"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"TRANSLATION_Y","url":"com/theoplayer/android/api/THEOplayerView.html#TRANSLATION_Y"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"TRANSLATION_Z","url":"com/theoplayer/android/api/THEOplayerView.html#TRANSLATION_Z"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"VIEW_LOG_TAG","url":"com/theoplayer/android/api/THEOplayerView.html#VIEW_LOG_TAG"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"VISIBLE","url":"com/theoplayer/android/api/THEOplayerView.html#VISIBLE"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"WINDOW_FOCUSED_STATE_SET","url":"com/theoplayer/android/api/THEOplayerView.html#WINDOW_FOCUSED_STATE_SET"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"X","url":"com/theoplayer/android/api/THEOplayerView.html#X"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"Y","url":"com/theoplayer/android/api/THEOplayerView.html#Y"}, {"p":"com.theoplayer.android.api","c":"THEOplayerView","l":"Z","url":"com/theoplayer/android/api/THEOplayerView.html#Z"}, {"p":"com.theoplayer.android.api.cast.chromecast","c":"DefaultCastOptionsProvider","l":"DEFAULT_APP_ID","url":"com/theoplayer/android/api/cast/chromecast/DefaultCastOptionsProvider.html#DEFAULT_APP_ID"}, {"p":"com.theoplayer.android.api.cast.chromecast","c":"CastError","l":"errorCode","url":"com/theoplayer/android/api/cast/chromecast/CastError.html#errorCode"}, {"p":"com.theoplayer.android.api.cast.chromecast","c":"CastError","l":"description","url":"com/theoplayer/android/api/cast/chromecast/CastError.html#description"}, {"p":"com.theoplayer.android.api.ads","c":"OmidFriendlyObstruction","l":"view","url":"com/theoplayer/android/api/ads/OmidFriendlyObstruction.html#view"}, {"p":"com.theoplayer.android.api.ads","c":"OmidFriendlyObstruction","l":"purpose","url":"com/theoplayer/android/api/ads/OmidFriendlyObstruction.html#purpose"}, {"p":"com.theoplayer.android.api.ads","c":"AdInit","l":"type","url":"com/theoplayer/android/api/ads/AdInit.html#type"}, {"p":"com.theoplayer.android.api.ads","c":"AdInit","l":"timeOffset","url":"com/theoplayer/android/api/ads/AdInit.html#timeOffset"}, {"p":"com.theoplayer.android.api.ads","c":"AdInit","l":"skipOffset","url":"com/theoplayer/android/api/ads/AdInit.html#skipOffset"}, {"p":"com.theoplayer.android.api.ads","c":"AdInit","l":"id","url":"com/theoplayer/android/api/ads/AdInit.html#id"}, {"p":"com.theoplayer.android.api.ads","c":"AdInit","l":"duration","url":"com/theoplayer/android/api/ads/AdInit.html#duration"}, {"p":"com.theoplayer.android.api.ads","c":"AdInit","l":"clickThrough","url":"com/theoplayer/android/api/ads/AdInit.html#clickThrough"}, {"p":"com.theoplayer.android.api.ads","c":"AdInit","l":"resourceURI","url":"com/theoplayer/android/api/ads/AdInit.html#resourceURI"}, {"p":"com.theoplayer.android.api.ads","c":"AdInit","l":"mediaFiles","url":"com/theoplayer/android/api/ads/AdInit.html#mediaFiles"}, {"p":"com.theoplayer.android.api.ads","c":"AdInit","l":"customData","url":"com/theoplayer/android/api/ads/AdInit.html#customData"}, {"p":"com.theoplayer.android.api.ads","c":"AdBreakInit","l":"timeOffset","url":"com/theoplayer/android/api/ads/AdBreakInit.html#timeOffset"}, {"p":"com.theoplayer.android.api.ads","c":"AdBreakInit","l":"maxDuration","url":"com/theoplayer/android/api/ads/AdBreakInit.html#maxDuration"}, {"p":"com.theoplayer.android.api.ads","c":"AdBreakInit","l":"customData","url":"com/theoplayer/android/api/ads/AdBreakInit.html#customData"}, {"p":"com.theoplayer.android.api.source","c":"GoogleDaiTypedSource.Builder","l":"src","url":"com/theoplayer/android/api/source/mediatailor/MediaTailorSource.Builder.html#src"}, {"p":"com.theoplayer.android.api.source","c":"GoogleDaiTypedSource.Builder","l":"drm","url":"com/theoplayer/android/api/source/mediatailor/MediaTailorSource.Builder.html#drm"}, {"p":"com.theoplayer.android.api.source","c":"GoogleDaiTypedSource.Builder","l":"type","url":"com/theoplayer/android/api/source/mediatailor/MediaTailorSource.Builder.html#type"}, {"p":"com.theoplayer.android.api.source","c":"GoogleDaiTypedSource.Builder","l":"headers","url":"com/theoplayer/android/api/source/mediatailor/MediaTailorSource.Builder.html#headers"}, {"p":"com.theoplayer.android.api.source","c":"GoogleDaiTypedSource.Builder","l":"liveOffset","url":"com/theoplayer/android/api/source/mediatailor/MediaTailorSource.Builder.html#liveOffset"}, {"p":"com.theoplayer.android.api.source","c":"GoogleDaiTypedSource.Builder","l":"ssai","url":"com/theoplayer/android/api/source/mediatailor/MediaTailorSource.Builder.html#ssai"}, {"p":"com.theoplayer.android.api.source","c":"GoogleDaiTypedSource.Builder","l":"hlsDateRange","url":"com/theoplayer/android/api/source/mediatailor/MediaTailorSource.Builder.html#hlsDateRange"}, {"p":"com.theoplayer.android.api.source","c":"GoogleDaiTypedSource.Builder","l":"timeServer","url":"com/theoplayer/android/api/source/mediatailor/MediaTailorSource.Builder.html#timeServer"}, {"p":"com.theoplayer.android.api.source","c":"GoogleDaiTypedSource.Builder","l":"lowLatency","url":"com/theoplayer/android/api/source/mediatailor/MediaTailorSource.Builder.html#lowLatency"}, {"p":"com.theoplayer.android.api.source","c":"GoogleDaiTypedSource.Builder","l":"latencyConfiguration","url":"com/theoplayer/android/api/source/mediatailor/MediaTailorSource.Builder.html#latencyConfiguration"}, {"p":"com.theoplayer.android.api.source","c":"GoogleDaiTypedSource.Builder","l":"hls","url":"com/theoplayer/android/api/source/mediatailor/MediaTailorSource.Builder.html#hls"}, {"p":"com.theoplayer.android.api.source","c":"GoogleDaiTypedSource.Builder","l":"dash","url":"com/theoplayer/android/api/source/mediatailor/MediaTailorSource.Builder.html#dash"}, {"p":"com.theoplayer.android.api.source","c":"GoogleDaiTypedSource","l":"src","url":"com/theoplayer/android/api/source/mediatailor/MediaTailorSource.html#src"}, {"p":"com.theoplayer.android.api.source","c":"GoogleDaiTypedSource","l":"drm","url":"com/theoplayer/android/api/source/mediatailor/MediaTailorSource.html#drm"}, {"p":"com.theoplayer.android.api.source","c":"GoogleDaiTypedSource","l":"type","url":"com/theoplayer/android/api/source/mediatailor/MediaTailorSource.html#type"}, {"p":"com.theoplayer.android.api.source","c":"GoogleDaiTypedSource","l":"headers","url":"com/theoplayer/android/api/source/mediatailor/MediaTailorSource.html#headers"}, {"p":"com.theoplayer.android.api.source","c":"GoogleDaiTypedSource","l":"liveOffset","url":"com/theoplayer/android/api/source/mediatailor/MediaTailorSource.html#liveOffset"}, {"p":"com.theoplayer.android.api.source","c":"GoogleDaiTypedSource","l":"ssai","url":"com/theoplayer/android/api/source/mediatailor/MediaTailorSource.html#ssai"}, {"p":"com.theoplayer.android.api.source","c":"GoogleDaiTypedSource","l":"timeServer","url":"com/theoplayer/android/api/source/mediatailor/MediaTailorSource.html#timeServer"}, {"p":"com.theoplayer.android.api.source","c":"GoogleDaiTypedSource","l":"latencyConfiguration","url":"com/theoplayer/android/api/source/mediatailor/MediaTailorSource.html#latencyConfiguration"}, {"p":"com.theoplayer.android.api.source","c":"GoogleDaiTypedSource","l":"hls","url":"com/theoplayer/android/api/source/mediatailor/MediaTailorSource.html#hls"}, {"p":"com.theoplayer.android.api.source","c":"GoogleDaiTypedSource","l":"dash","url":"com/theoplayer/android/api/source/mediatailor/MediaTailorSource.html#dash"}, {"p":"com.theoplayer.android.api.source","c":"AdIntegration","l":"adIntegration","url":"com/theoplayer/android/api/source/AdIntegration.html#adIntegration"}, {"p":"com.theoplayer.android.api.source","c":"SourceDescription","l":"sources","url":"com/theoplayer/android/api/source/SourceDescription.html#sources"}, {"p":"com.theoplayer.android.api.source","c":"SourceDescription","l":"ads","url":"com/theoplayer/android/api/source/SourceDescription.html#ads"}, {"p":"com.theoplayer.android.api.source","c":"SourceDescription","l":"textTracks","url":"com/theoplayer/android/api/source/SourceDescription.html#textTracks"}, {"p":"com.theoplayer.android.api.source","c":"SourceDescription","l":"poster","url":"com/theoplayer/android/api/source/SourceDescription.html#poster"}, {"p":"com.theoplayer.android.api.source","c":"SourceDescription","l":"metadata","url":"com/theoplayer/android/api/source/SourceDescription.html#metadata"}, {"p":"com.theoplayer.android.api.source","c":"SourceDescription","l":"timeServer","url":"com/theoplayer/android/api/source/SourceDescription.html#timeServer"}, {"p":"com.theoplayer.android.api.source","c":"TypedSource.Builder","l":"src","url":"com/theoplayer/android/api/source/mediatailor/MediaTailorSource.Builder.html#src"}, {"p":"com.theoplayer.android.api.source","c":"TypedSource.Builder","l":"drm","url":"com/theoplayer/android/api/source/mediatailor/MediaTailorSource.Builder.html#drm"}, {"p":"com.theoplayer.android.api.source","c":"TypedSource.Builder","l":"type","url":"com/theoplayer/android/api/source/mediatailor/MediaTailorSource.Builder.html#type"}, {"p":"com.theoplayer.android.api.source","c":"TypedSource.Builder","l":"headers","url":"com/theoplayer/android/api/source/mediatailor/MediaTailorSource.Builder.html#headers"}, {"p":"com.theoplayer.android.api.source","c":"TypedSource.Builder","l":"liveOffset","url":"com/theoplayer/android/api/source/mediatailor/MediaTailorSource.Builder.html#liveOffset"}, {"p":"com.theoplayer.android.api.source","c":"TypedSource.Builder","l":"ssai","url":"com/theoplayer/android/api/source/mediatailor/MediaTailorSource.Builder.html#ssai"}, {"p":"com.theoplayer.android.api.source","c":"TypedSource.Builder","l":"hlsDateRange","url":"com/theoplayer/android/api/source/mediatailor/MediaTailorSource.Builder.html#hlsDateRange"}, {"p":"com.theoplayer.android.api.source","c":"TypedSource.Builder","l":"timeServer","url":"com/theoplayer/android/api/source/mediatailor/MediaTailorSource.Builder.html#timeServer"}, {"p":"com.theoplayer.android.api.source","c":"TypedSource.Builder","l":"lowLatency","url":"com/theoplayer/android/api/source/mediatailor/MediaTailorSource.Builder.html#lowLatency"}, {"p":"com.theoplayer.android.api.source","c":"TypedSource.Builder","l":"latencyConfiguration","url":"com/theoplayer/android/api/source/mediatailor/MediaTailorSource.Builder.html#latencyConfiguration"}, {"p":"com.theoplayer.android.api.source","c":"TypedSource.Builder","l":"hls","url":"com/theoplayer/android/api/source/mediatailor/MediaTailorSource.Builder.html#hls"}, {"p":"com.theoplayer.android.api.source","c":"TypedSource.Builder","l":"dash","url":"com/theoplayer/android/api/source/mediatailor/MediaTailorSource.Builder.html#dash"}, {"p":"com.theoplayer.android.api.source","c":"TypedSource","l":"src","url":"com/theoplayer/android/api/source/mediatailor/MediaTailorSource.html#src"}, {"p":"com.theoplayer.android.api.source","c":"TypedSource","l":"drm","url":"com/theoplayer/android/api/source/mediatailor/MediaTailorSource.html#drm"}, {"p":"com.theoplayer.android.api.source","c":"TypedSource","l":"type","url":"com/theoplayer/android/api/source/mediatailor/MediaTailorSource.html#type"}, {"p":"com.theoplayer.android.api.source","c":"TypedSource","l":"headers","url":"com/theoplayer/android/api/source/mediatailor/MediaTailorSource.html#headers"}, {"p":"com.theoplayer.android.api.source","c":"TypedSource","l":"liveOffset","url":"com/theoplayer/android/api/source/mediatailor/MediaTailorSource.html#liveOffset"}, {"p":"com.theoplayer.android.api.source","c":"TypedSource","l":"ssai","url":"com/theoplayer/android/api/source/mediatailor/MediaTailorSource.html#ssai"}, {"p":"com.theoplayer.android.api.source","c":"TypedSource","l":"timeServer","url":"com/theoplayer/android/api/source/mediatailor/MediaTailorSource.html#timeServer"}, {"p":"com.theoplayer.android.api.source","c":"TypedSource","l":"latencyConfiguration","url":"com/theoplayer/android/api/source/mediatailor/MediaTailorSource.html#latencyConfiguration"}, {"p":"com.theoplayer.android.api.source","c":"TypedSource","l":"hls","url":"com/theoplayer/android/api/source/mediatailor/MediaTailorSource.html#hls"}, {"p":"com.theoplayer.android.api.source","c":"TypedSource","l":"dash","url":"com/theoplayer/android/api/source/mediatailor/MediaTailorSource.html#dash"}, {"p":"com.theoplayer.android.api.source","c":"TextTrackDescription","l":"src","url":"com/theoplayer/android/api/source/TextTrackDescription.html#src"}, {"p":"com.theoplayer.android.api.source","c":"TextTrackDescription","l":"isDefault","url":"com/theoplayer/android/api/source/TextTrackDescription.html#isDefault()"}, {"p":"com.theoplayer.android.api.source","c":"TextTrackDescription","l":"kind","url":"com/theoplayer/android/api/source/TextTrackDescription.html#kind"}, {"p":"com.theoplayer.android.api.source","c":"TextTrackDescription","l":"srclang","url":"com/theoplayer/android/api/source/TextTrackDescription.html#srclang"}, {"p":"com.theoplayer.android.api.source","c":"TextTrackDescription","l":"label","url":"com/theoplayer/android/api/source/TextTrackDescription.html#label"}, {"p":"com.theoplayer.android.api.source.mediatailor","c":"MediaTailorSource.Builder","l":"src","url":"com/theoplayer/android/api/source/mediatailor/MediaTailorSource.Builder.html#src"}, {"p":"com.theoplayer.android.api.source.mediatailor","c":"MediaTailorSource.Builder","l":"drm","url":"com/theoplayer/android/api/source/mediatailor/MediaTailorSource.Builder.html#drm"}, {"p":"com.theoplayer.android.api.source.mediatailor","c":"MediaTailorSource.Builder","l":"type","url":"com/theoplayer/android/api/source/mediatailor/MediaTailorSource.Builder.html#type"}, {"p":"com.theoplayer.android.api.source.mediatailor","c":"MediaTailorSource.Builder","l":"headers","url":"com/theoplayer/android/api/source/mediatailor/MediaTailorSource.Builder.html#headers"}, {"p":"com.theoplayer.android.api.source.mediatailor","c":"MediaTailorSource.Builder","l":"liveOffset","url":"com/theoplayer/android/api/source/mediatailor/MediaTailorSource.Builder.html#liveOffset"}, {"p":"com.theoplayer.android.api.source.mediatailor","c":"MediaTailorSource.Builder","l":"ssai","url":"com/theoplayer/android/api/source/mediatailor/MediaTailorSource.Builder.html#ssai"}, {"p":"com.theoplayer.android.api.source.mediatailor","c":"MediaTailorSource.Builder","l":"hlsDateRange","url":"com/theoplayer/android/api/source/mediatailor/MediaTailorSource.Builder.html#hlsDateRange"}, {"p":"com.theoplayer.android.api.source.mediatailor","c":"MediaTailorSource.Builder","l":"timeServer","url":"com/theoplayer/android/api/source/mediatailor/MediaTailorSource.Builder.html#timeServer"}, {"p":"com.theoplayer.android.api.source.mediatailor","c":"MediaTailorSource.Builder","l":"lowLatency","url":"com/theoplayer/android/api/source/mediatailor/MediaTailorSource.Builder.html#lowLatency"}, {"p":"com.theoplayer.android.api.source.mediatailor","c":"MediaTailorSource.Builder","l":"latencyConfiguration","url":"com/theoplayer/android/api/source/mediatailor/MediaTailorSource.Builder.html#latencyConfiguration"}, {"p":"com.theoplayer.android.api.source.mediatailor","c":"MediaTailorSource.Builder","l":"hls","url":"com/theoplayer/android/api/source/mediatailor/MediaTailorSource.Builder.html#hls"}, {"p":"com.theoplayer.android.api.source.mediatailor","c":"MediaTailorSource.Builder","l":"dash","url":"com/theoplayer/android/api/source/mediatailor/MediaTailorSource.Builder.html#dash"}, {"p":"com.theoplayer.android.api.source.mediatailor","c":"MediaTailorSource","l":"adParams","url":"com/theoplayer/android/api/source/mediatailor/MediaTailorSource.html#adParams"}, {"p":"com.theoplayer.android.api.source.mediatailor","c":"MediaTailorSource","l":"src","url":"com/theoplayer/android/api/source/mediatailor/MediaTailorSource.html#src"}, {"p":"com.theoplayer.android.api.source.mediatailor","c":"MediaTailorSource","l":"drm","url":"com/theoplayer/android/api/source/mediatailor/MediaTailorSource.html#drm"}, {"p":"com.theoplayer.android.api.source.mediatailor","c":"MediaTailorSource","l":"type","url":"com/theoplayer/android/api/source/mediatailor/MediaTailorSource.html#type"}, {"p":"com.theoplayer.android.api.source.mediatailor","c":"MediaTailorSource","l":"headers","url":"com/theoplayer/android/api/source/mediatailor/MediaTailorSource.html#headers"}, {"p":"com.theoplayer.android.api.source.mediatailor","c":"MediaTailorSource","l":"liveOffset","url":"com/theoplayer/android/api/source/mediatailor/MediaTailorSource.html#liveOffset"}, {"p":"com.theoplayer.android.api.source.mediatailor","c":"MediaTailorSource","l":"ssai","url":"com/theoplayer/android/api/source/mediatailor/MediaTailorSource.html#ssai"}, {"p":"com.theoplayer.android.api.source.mediatailor","c":"MediaTailorSource","l":"timeServer","url":"com/theoplayer/android/api/source/mediatailor/MediaTailorSource.html#timeServer"}, {"p":"com.theoplayer.android.api.source.mediatailor","c":"MediaTailorSource","l":"latencyConfiguration","url":"com/theoplayer/android/api/source/mediatailor/MediaTailorSource.html#latencyConfiguration"}, {"p":"com.theoplayer.android.api.source.mediatailor","c":"MediaTailorSource","l":"hls","url":"com/theoplayer/android/api/source/mediatailor/MediaTailorSource.html#hls"}, {"p":"com.theoplayer.android.api.source.mediatailor","c":"MediaTailorSource","l":"dash","url":"com/theoplayer/android/api/source/mediatailor/MediaTailorSource.html#dash"}, {"p":"com.theoplayer.android.api.source.metadata","c":"ChromecastMetadataImage","l":"src","url":"com/theoplayer/android/api/source/metadata/ChromecastMetadataImage.html#src"}, {"p":"com.theoplayer.android.api.source.metadata","c":"ChromecastMetadataImage","l":"width","url":"com/theoplayer/android/api/source/metadata/ChromecastMetadataImage.html#width"}, {"p":"com.theoplayer.android.api.source.metadata","c":"ChromecastMetadataImage","l":"height","url":"com/theoplayer/android/api/source/metadata/ChromecastMetadataImage.html#height"}, {"p":"com.theoplayer.android.api.source.metadata","c":"ChromecastMetadataType","l":"type","url":"com/theoplayer/android/api/source/metadata/ChromecastMetadataType.html#type"}, {"p":"com.theoplayer.android.api.source.metadata","c":"ChromecastMetadataType","l":"nativeType","url":"com/theoplayer/android/api/source/metadata/ChromecastMetadataType.html#nativeType"}, {"p":"com.theoplayer.android.api.cache","c":"CachingParameters","l":"amount","url":"com/theoplayer/android/api/cache/CachingParameters.html#amount"}, {"p":"com.theoplayer.android.api.cache","c":"CachingParameters","l":"expirationDate","url":"com/theoplayer/android/api/cache/CachingParameters.html#expirationDate"}, {"p":"com.theoplayer.android.api.cache","c":"CachingParameters","l":"bandwidth","url":"com/theoplayer/android/api/cache/CachingParameters.html#bandwidth"}, {"p":"com.theoplayer.android.api.cache","c":"CachingParameters","l":"preferredTrackSelection","url":"com/theoplayer/android/api/cache/CachingParameters.html#preferredTrackSelection"}, {"p":"com.theoplayer.android.api.cache","c":"CachingPreferredTrackSelection","l":"audioTrackSelection","url":"com/theoplayer/android/api/cache/CachingPreferredTrackSelection.html#audioTrackSelection"}, {"p":"com.theoplayer.android.api.cache","c":"CachingPreferredTrackSelection","l":"textTrackSelection","url":"com/theoplayer/android/api/cache/CachingPreferredTrackSelection.html#textTrackSelection"}, {"p":"com.theoplayer.android.api.cache","c":"CachingTaskError","l":"errorCode","url":"com/theoplayer/android/api/cache/CachingTaskError.html#errorCode"}, {"p":"com.theoplayer.android.api.cache","c":"CachingTaskError","l":"description","url":"com/theoplayer/android/api/cache/CachingTaskError.html#description"}, {"p":"com.theoplayer.android.api.cache","c":"NoChangeBuilder","l":"INSTANCE","url":"com/theoplayer/android/api/cache/NoChangeBuilder.html#INSTANCE"}, {"p":"com.theoplayer.android.api.player","c":"PresentationMode","l":"mode","url":"com/theoplayer/android/api/player/PresentationMode.html#mode"}, {"p":"com.theoplayer.android.api.player","c":"PreloadType","l":"type","url":"com/theoplayer/android/api/player/PreloadType.html#type"}, {"p":"com.theoplayer.android.api.player","c":"NetworkConfiguration","l":"maxRetries","url":"com/theoplayer/android/api/player/NetworkConfiguration.html#maxRetries"}, {"p":"com.theoplayer.android.api.player","c":"NetworkConfiguration","l":"minimumBackOff","url":"com/theoplayer/android/api/player/NetworkConfiguration.html#minimumBackOff"}, {"p":"com.theoplayer.android.api.player","c":"NetworkConfiguration","l":"maximumBackOff","url":"com/theoplayer/android/api/player/NetworkConfiguration.html#maximumBackOff"}, {"p":"com.theoplayer.android.api.player.track.texttrack","c":"TextTrackType","l":"type","url":"com/theoplayer/android/api/player/track/texttrack/TextTrackType.html#type"}, {"p":"com.theoplayer.android.api.player.track.texttrack","c":"TextTrackMode","l":"mode","url":"com/theoplayer/android/api/player/track/texttrack/TextTrackMode.html#mode"}, {"p":"com.theoplayer.android.api.player.track.texttrack","c":"TextTrackKind","l":"type","url":"com/theoplayer/android/api/player/track/texttrack/TextTrackKind.html#type"}, {"p":"com.theoplayer.android.api.abr","c":"AbrStrategyConfiguration","l":"type","url":"com/theoplayer/android/api/abr/AbrStrategyConfiguration.html#type"}, {"p":"com.theoplayer.android.api.abr","c":"AbrStrategyConfiguration","l":"metadata","url":"com/theoplayer/android/api/abr/AbrStrategyConfiguration.html#metadata"}, {"p":"com.theoplayer.android.api.abr","c":"AbrStrategyMetadata","l":"bitrate","url":"com/theoplayer/android/api/abr/AbrStrategyMetadata.html#bitrate"}, {"p":"com.theoplayer.android.api.event.player","c":"PlayerEventTypes.Identifiers","l":"PLAY","url":"com/theoplayer/android/api/event/player/PlayerEventTypes.Identifiers.html#PLAY"}, {"p":"com.theoplayer.android.api.event.player","c":"PlayerEventTypes.Identifiers","l":"PAUSE","url":"com/theoplayer/android/api/event/player/PlayerEventTypes.Identifiers.html#PAUSE"}, {"p":"com.theoplayer.android.api.event.player","c":"PlayerEventTypes.Identifiers","l":"RATECHANGE","url":"com/theoplayer/android/api/event/player/PlayerEventTypes.Identifiers.html#RATECHANGE"}, {"p":"com.theoplayer.android.api.event.player","c":"PlayerEventTypes.Identifiers","l":"VOLUMECHANGE","url":"com/theoplayer/android/api/event/player/PlayerEventTypes.Identifiers.html#VOLUMECHANGE"}, {"p":"com.theoplayer.android.api.event.player","c":"PlayerEventTypes.Identifiers","l":"PROGRESS","url":"com/theoplayer/android/api/event/player/PlayerEventTypes.Identifiers.html#PROGRESS"}, {"p":"com.theoplayer.android.api.event.player","c":"PlayerEventTypes.Identifiers","l":"DURATIONCHANGE","url":"com/theoplayer/android/api/event/player/PlayerEventTypes.Identifiers.html#DURATIONCHANGE"}, {"p":"com.theoplayer.android.api.event.player","c":"PlayerEventTypes.Identifiers","l":"SOURCECHANGE","url":"com/theoplayer/android/api/event/player/PlayerEventTypes.Identifiers.html#SOURCECHANGE"}, {"p":"com.theoplayer.android.api.event.player","c":"PlayerEventTypes.Identifiers","l":"READYSTATECHANGE","url":"com/theoplayer/android/api/event/player/PlayerEventTypes.Identifiers.html#READYSTATECHANGE"}, {"p":"com.theoplayer.android.api.event.player","c":"PlayerEventTypes.Identifiers","l":"TIMEUPDATE","url":"com/theoplayer/android/api/event/player/PlayerEventTypes.Identifiers.html#TIMEUPDATE"}, {"p":"com.theoplayer.android.api.event.player","c":"PlayerEventTypes.Identifiers","l":"WAITING","url":"com/theoplayer/android/api/event/player/PlayerEventTypes.Identifiers.html#WAITING"}, {"p":"com.theoplayer.android.api.event.player","c":"PlayerEventTypes.Identifiers","l":"PLAYING","url":"com/theoplayer/android/api/event/player/PlayerEventTypes.Identifiers.html#PLAYING"}, {"p":"com.theoplayer.android.api.event.player","c":"PlayerEventTypes.Identifiers","l":"ENDED","url":"com/theoplayer/android/api/event/player/PlayerEventTypes.Identifiers.html#ENDED"}, {"p":"com.theoplayer.android.api.event.player","c":"PlayerEventTypes.Identifiers","l":"LOADEDMETADATA","url":"com/theoplayer/android/api/event/player/PlayerEventTypes.Identifiers.html#LOADEDMETADATA"}, {"p":"com.theoplayer.android.api.event.player","c":"PlayerEventTypes.Identifiers","l":"LOADEDDATA","url":"com/theoplayer/android/api/event/player/PlayerEventTypes.Identifiers.html#LOADEDDATA"}, {"p":"com.theoplayer.android.api.event.player","c":"PlayerEventTypes.Identifiers","l":"CANPLAY","url":"com/theoplayer/android/api/event/player/PlayerEventTypes.Identifiers.html#CANPLAY"}, {"p":"com.theoplayer.android.api.event.player","c":"PlayerEventTypes.Identifiers","l":"CANPLAYTHROUGH","url":"com/theoplayer/android/api/event/player/PlayerEventTypes.Identifiers.html#CANPLAYTHROUGH"}, {"p":"com.theoplayer.android.api.event.player","c":"PlayerEventTypes.Identifiers","l":"SEGMENTNOTFOUND","url":"com/theoplayer/android/api/event/player/PlayerEventTypes.Identifiers.html#SEGMENTNOTFOUND"}, {"p":"com.theoplayer.android.api.event.player","c":"PlayerEventTypes.Identifiers","l":"ERROR","url":"com/theoplayer/android/api/event/player/PlayerEventTypes.Identifiers.html#ERROR"}, {"p":"com.theoplayer.android.api.event.player","c":"PlayerEventTypes.Identifiers","l":"ENCRYPTED","url":"com/theoplayer/android/api/event/player/PlayerEventTypes.Identifiers.html#ENCRYPTED"}, {"p":"com.theoplayer.android.api.event.player","c":"PlayerEventTypes.Identifiers","l":"CONTENTPROTECTIONERROR","url":"com/theoplayer/android/api/event/player/PlayerEventTypes.Identifiers.html#CONTENTPROTECTIONERROR"}, {"p":"com.theoplayer.android.api.event.player","c":"PlayerEventTypes.Identifiers","l":"CONTENTPROTECTIONSUCCESS","url":"com/theoplayer/android/api/event/player/PlayerEventTypes.Identifiers.html#CONTENTPROTECTIONSUCCESS"}, {"p":"com.theoplayer.android.api.event.player","c":"PlayerEventTypes.Identifiers","l":"NOSUPPORTEDREPRESENTATIONFOUND","url":"com/theoplayer/android/api/event/player/PlayerEventTypes.Identifiers.html#NOSUPPORTEDREPRESENTATIONFOUND"}, {"p":"com.theoplayer.android.api.event.player","c":"PlayerEventTypes.Identifiers","l":"SEEKING","url":"com/theoplayer/android/api/event/player/PlayerEventTypes.Identifiers.html#SEEKING"}, {"p":"com.theoplayer.android.api.event.player","c":"PlayerEventTypes.Identifiers","l":"SEEKED","url":"com/theoplayer/android/api/event/player/PlayerEventTypes.Identifiers.html#SEEKED"}, {"p":"com.theoplayer.android.api.event.player","c":"PlayerEventTypes.Identifiers","l":"PRESENTATIONMODECHANGE","url":"com/theoplayer/android/api/event/player/PlayerEventTypes.Identifiers.html#PRESENTATIONMODECHANGE"}, {"p":"com.theoplayer.android.api.event.player","c":"PlayerEventTypes.Identifiers","l":"DESTROY","url":"com/theoplayer/android/api/event/player/PlayerEventTypes.Identifiers.html#DESTROY"}, {"p":"com.theoplayer.android.api.event.player","c":"PlayerEventTypes.Identifiers","l":"LOADSTART","url":"com/theoplayer/android/api/event/player/PlayerEventTypes.Identifiers.html#LOADSTART"}, {"p":"com.theoplayer.android.api.event.player","c":"PlayerEventTypes.Identifiers","l":"RESIZE","url":"com/theoplayer/android/api/event/player/PlayerEventTypes.Identifiers.html#RESIZE"}, {"p":"com.theoplayer.android.api.event.player","c":"PlayerEventTypes","l":"PLAY","url":"com/theoplayer/android/api/event/player/PlayerEventTypes.html#PLAY"}, {"p":"com.theoplayer.android.api.event.player","c":"PlayerEventTypes","l":"PAUSE","url":"com/theoplayer/android/api/event/player/PlayerEventTypes.html#PAUSE"}, {"p":"com.theoplayer.android.api.event.player","c":"PlayerEventTypes","l":"RATECHANGE","url":"com/theoplayer/android/api/event/player/PlayerEventTypes.html#RATECHANGE"}, {"p":"com.theoplayer.android.api.event.player","c":"PlayerEventTypes","l":"VOLUMECHANGE","url":"com/theoplayer/android/api/event/player/PlayerEventTypes.html#VOLUMECHANGE"}, {"p":"com.theoplayer.android.api.event.player","c":"PlayerEventTypes","l":"PROGRESS","url":"com/theoplayer/android/api/event/player/PlayerEventTypes.html#PROGRESS"}, {"p":"com.theoplayer.android.api.event.player","c":"PlayerEventTypes","l":"DURATIONCHANGE","url":"com/theoplayer/android/api/event/player/PlayerEventTypes.html#DURATIONCHANGE"}, {"p":"com.theoplayer.android.api.event.player","c":"PlayerEventTypes","l":"SOURCECHANGE","url":"com/theoplayer/android/api/event/player/PlayerEventTypes.html#SOURCECHANGE"}, {"p":"com.theoplayer.android.api.event.player","c":"PlayerEventTypes","l":"READYSTATECHANGE","url":"com/theoplayer/android/api/event/player/PlayerEventTypes.html#READYSTATECHANGE"}, {"p":"com.theoplayer.android.api.event.player","c":"PlayerEventTypes","l":"TIMEUPDATE","url":"com/theoplayer/android/api/event/player/PlayerEventTypes.html#TIMEUPDATE"}, {"p":"com.theoplayer.android.api.event.player","c":"PlayerEventTypes","l":"WAITING","url":"com/theoplayer/android/api/event/player/PlayerEventTypes.html#WAITING"}, {"p":"com.theoplayer.android.api.event.player","c":"PlayerEventTypes","l":"PLAYING","url":"com/theoplayer/android/api/event/player/PlayerEventTypes.html#PLAYING"}, {"p":"com.theoplayer.android.api.event.player","c":"PlayerEventTypes","l":"ENDED","url":"com/theoplayer/android/api/event/player/PlayerEventTypes.html#ENDED"}, {"p":"com.theoplayer.android.api.event.player","c":"PlayerEventTypes","l":"LOADEDMETADATA","url":"com/theoplayer/android/api/event/player/PlayerEventTypes.html#LOADEDMETADATA"}, {"p":"com.theoplayer.android.api.event.player","c":"PlayerEventTypes","l":"LOADEDDATA","url":"com/theoplayer/android/api/event/player/PlayerEventTypes.html#LOADEDDATA"}, {"p":"com.theoplayer.android.api.event.player","c":"PlayerEventTypes","l":"CANPLAY","url":"com/theoplayer/android/api/event/player/PlayerEventTypes.html#CANPLAY"}, {"p":"com.theoplayer.android.api.event.player","c":"PlayerEventTypes","l":"CANPLAYTHROUGH","url":"com/theoplayer/android/api/event/player/PlayerEventTypes.html#CANPLAYTHROUGH"}, {"p":"com.theoplayer.android.api.event.player","c":"PlayerEventTypes","l":"SEGMENTNOTFOUND","url":"com/theoplayer/android/api/event/player/PlayerEventTypes.html#SEGMENTNOTFOUND"}, {"p":"com.theoplayer.android.api.event.player","c":"PlayerEventTypes","l":"ERROR","url":"com/theoplayer/android/api/event/player/PlayerEventTypes.html#ERROR"}, {"p":"com.theoplayer.android.api.event.player","c":"PlayerEventTypes","l":"ENCRYPTED","url":"com/theoplayer/android/api/event/player/PlayerEventTypes.html#ENCRYPTED"}, {"p":"com.theoplayer.android.api.event.player","c":"PlayerEventTypes","l":"CONTENTPROTECTIONERROR","url":"com/theoplayer/android/api/event/player/PlayerEventTypes.html#CONTENTPROTECTIONERROR"}, {"p":"com.theoplayer.android.api.event.player","c":"PlayerEventTypes","l":"CONTENTPROTECTIONSUCCESS","url":"com/theoplayer/android/api/event/player/PlayerEventTypes.html#CONTENTPROTECTIONSUCCESS"}, {"p":"com.theoplayer.android.api.event.player","c":"PlayerEventTypes","l":"NOSUPPORTEDREPRESENTATIONFOUND","url":"com/theoplayer/android/api/event/player/PlayerEventTypes.html#NOSUPPORTEDREPRESENTATIONFOUND"}, {"p":"com.theoplayer.android.api.event.player","c":"PlayerEventTypes","l":"SEEKING","url":"com/theoplayer/android/api/event/player/PlayerEventTypes.html#SEEKING"}, {"p":"com.theoplayer.android.api.event.player","c":"PlayerEventTypes","l":"SEEKED","url":"com/theoplayer/android/api/event/player/PlayerEventTypes.html#SEEKED"}, {"p":"com.theoplayer.android.api.event.player","c":"PlayerEventTypes","l":"PRESENTATIONMODECHANGE","url":"com/theoplayer/android/api/event/player/PlayerEventTypes.html#PRESENTATIONMODECHANGE"}, {"p":"com.theoplayer.android.api.event.player","c":"PlayerEventTypes","l":"DESTROY","url":"com/theoplayer/android/api/event/player/PlayerEventTypes.html#DESTROY"}, {"p":"com.theoplayer.android.api.event.player","c":"PlayerEventTypes","l":"LOADSTART","url":"com/theoplayer/android/api/event/player/PlayerEventTypes.html#LOADSTART"}, {"p":"com.theoplayer.android.api.event.player","c":"PlayerEventTypes","l":"RESIZE","url":"com/theoplayer/android/api/event/player/PlayerEventTypes.html#RESIZE"}, {"p":"com.theoplayer.android.api.event.track.texttrack","c":"TextTrackEventTypes","l":"CUECHANGE","url":"com/theoplayer/android/api/event/track/texttrack/TextTrackEventTypes.html#CUECHANGE"}, {"p":"com.theoplayer.android.api.event.track.texttrack","c":"TextTrackEventTypes","l":"CHANGE","url":"com/theoplayer/android/api/event/track/texttrack/TextTrackEventTypes.html#CHANGE"}, {"p":"com.theoplayer.android.api.event.track.texttrack","c":"TextTrackEventTypes","l":"ADDCUE","url":"com/theoplayer/android/api/event/track/texttrack/TextTrackEventTypes.html#ADDCUE"}, {"p":"com.theoplayer.android.api.event.track.texttrack","c":"TextTrackEventTypes","l":"REMOVECUE","url":"com/theoplayer/android/api/event/track/texttrack/TextTrackEventTypes.html#REMOVECUE"}, {"p":"com.theoplayer.android.api.event.track.texttrack","c":"TextTrackEventTypes","l":"UPDATECUE","url":"com/theoplayer/android/api/event/track/texttrack/TextTrackEventTypes.html#UPDATECUE"}, {"p":"com.theoplayer.android.api.event.track.texttrack","c":"TextTrackEventTypes","l":"ENTERCUE","url":"com/theoplayer/android/api/event/track/texttrack/TextTrackEventTypes.html#ENTERCUE"}, {"p":"com.theoplayer.android.api.event.track.texttrack","c":"TextTrackEventTypes","l":"EXITCUE","url":"com/theoplayer/android/api/event/track/texttrack/TextTrackEventTypes.html#EXITCUE"}, {"p":"com.theoplayer.android.api.event.track.texttrack.list","c":"TextTrackListEventTypes","l":"ADDTRACK","url":"com/theoplayer/android/api/event/track/texttrack/list/TextTrackListEventTypes.html#ADDTRACK"}, {"p":"com.theoplayer.android.api.event.track.texttrack.list","c":"TextTrackListEventTypes","l":"REMOVETRACK","url":"com/theoplayer/android/api/event/track/texttrack/list/TextTrackListEventTypes.html#REMOVETRACK"}, {"p":"com.theoplayer.android.api.event.track.texttrack.list","c":"TextTrackListEventTypes","l":"TRACKLISTCHANGE","url":"com/theoplayer/android/api/event/track/texttrack/list/TextTrackListEventTypes.html#TRACKLISTCHANGE"}, {"p":"com.theoplayer.android.api.event.track.texttrack.texttrackcue","c":"TextTrackCueEventTypes","l":"ENTER","url":"com/theoplayer/android/api/event/track/texttrack/texttrackcue/TextTrackCueEventTypes.html#ENTER"}, {"p":"com.theoplayer.android.api.event.track.texttrack.texttrackcue","c":"TextTrackCueEventTypes","l":"EXIT","url":"com/theoplayer/android/api/event/track/texttrack/texttrackcue/TextTrackCueEventTypes.html#EXIT"}, {"p":"com.theoplayer.android.api.event.track.texttrack.texttrackcue","c":"TextTrackCueEventTypes","l":"UPDATE","url":"com/theoplayer/android/api/event/track/texttrack/texttrackcue/TextTrackCueEventTypes.html#UPDATE"}, {"p":"com.theoplayer.android.api.event.track.mediatrack.video","c":"VideoTrackEventTypes","l":"TARGETQUALITYCHANGEDEVENT","url":"com/theoplayer/android/api/event/track/mediatrack/video/VideoTrackEventTypes.html#TARGETQUALITYCHANGEDEVENT"}, {"p":"com.theoplayer.android.api.event.track.mediatrack.video","c":"VideoTrackEventTypes","l":"ACTIVEQUALITYCHANGEDEVENT","url":"com/theoplayer/android/api/event/track/mediatrack/video/VideoTrackEventTypes.html#ACTIVEQUALITYCHANGEDEVENT"}, {"p":"com.theoplayer.android.api.event.track.mediatrack.video.list","c":"VideoTrackListEventTypes","l":"ADDTRACK","url":"com/theoplayer/android/api/event/track/mediatrack/video/list/VideoTrackListEventTypes.html#ADDTRACK"}, {"p":"com.theoplayer.android.api.event.track.mediatrack.video.list","c":"VideoTrackListEventTypes","l":"REMOVETRACK","url":"com/theoplayer/android/api/event/track/mediatrack/video/list/VideoTrackListEventTypes.html#REMOVETRACK"}, {"p":"com.theoplayer.android.api.event.track.mediatrack.video.list","c":"VideoTrackListEventTypes","l":"TRACKLISTCHANGE","url":"com/theoplayer/android/api/event/track/mediatrack/video/list/VideoTrackListEventTypes.html#TRACKLISTCHANGE"}, {"p":"com.theoplayer.android.api.event.track.mediatrack.audio","c":"AudioTrackEventTypes","l":"TARGETQUALITYCHANGEDEVENT","url":"com/theoplayer/android/api/event/track/mediatrack/audio/AudioTrackEventTypes.html#TARGETQUALITYCHANGEDEVENT"}, {"p":"com.theoplayer.android.api.event.track.mediatrack.audio","c":"AudioTrackEventTypes","l":"ACTIVEQUALITYCHANGEDEVENT","url":"com/theoplayer/android/api/event/track/mediatrack/audio/AudioTrackEventTypes.html#ACTIVEQUALITYCHANGEDEVENT"}, {"p":"com.theoplayer.android.api.event.track.mediatrack.audio.list","c":"AudioTrackListEventTypes","l":"ADDTRACK","url":"com/theoplayer/android/api/event/track/mediatrack/audio/list/AudioTrackListEventTypes.html#ADDTRACK"}, {"p":"com.theoplayer.android.api.event.track.mediatrack.audio.list","c":"AudioTrackListEventTypes","l":"REMOVETRACK","url":"com/theoplayer/android/api/event/track/mediatrack/audio/list/AudioTrackListEventTypes.html#REMOVETRACK"}, {"p":"com.theoplayer.android.api.event.track.mediatrack.audio.list","c":"AudioTrackListEventTypes","l":"TRACKLISTCHANGE","url":"com/theoplayer/android/api/event/track/mediatrack/audio/list/AudioTrackListEventTypes.html#TRACKLISTCHANGE"}, {"p":"com.theoplayer.android.api.event.track.mediatrack.quality","c":"QualityEventTypes","l":"UPDATE","url":"com/theoplayer/android/api/event/track/mediatrack/quality/QualityEventTypes.html#UPDATE"}, {"p":"com.theoplayer.android.api.event.ads","c":"AdIntegrationKind","l":"type","url":"com/theoplayer/android/api/event/ads/AdIntegrationKind.html#type"}, {"p":"com.theoplayer.android.api.event.ads","c":"AdsEventTypes.Identifiers","l":"AD_BEGIN","url":"com/theoplayer/android/api/event/ads/AdsEventTypes.Identifiers.html#AD_BEGIN"}, {"p":"com.theoplayer.android.api.event.ads","c":"AdsEventTypes.Identifiers","l":"AD_END","url":"com/theoplayer/android/api/event/ads/AdsEventTypes.Identifiers.html#AD_END"}, {"p":"com.theoplayer.android.api.event.ads","c":"AdsEventTypes.Identifiers","l":"AD_SKIP","url":"com/theoplayer/android/api/event/ads/AdsEventTypes.Identifiers.html#AD_SKIP"}, {"p":"com.theoplayer.android.api.event.ads","c":"AdsEventTypes.Identifiers","l":"AD_ERROR","url":"com/theoplayer/android/api/event/ads/AdsEventTypes.Identifiers.html#AD_ERROR"}, {"p":"com.theoplayer.android.api.event.ads","c":"AdsEventTypes.Identifiers","l":"AD_BREAK_BEGIN","url":"com/theoplayer/android/api/event/ads/AdsEventTypes.Identifiers.html#AD_BREAK_BEGIN"}, {"p":"com.theoplayer.android.api.event.ads","c":"AdsEventTypes.Identifiers","l":"AD_BREAK_END","url":"com/theoplayer/android/api/event/ads/AdsEventTypes.Identifiers.html#AD_BREAK_END"}, {"p":"com.theoplayer.android.api.event.ads","c":"AdsEventTypes.Identifiers","l":"AD_LOADED","url":"com/theoplayer/android/api/event/ads/AdsEventTypes.Identifiers.html#AD_LOADED"}, {"p":"com.theoplayer.android.api.event.ads","c":"AdsEventTypes.Identifiers","l":"AD_IMPRESSION","url":"com/theoplayer/android/api/event/ads/AdsEventTypes.Identifiers.html#AD_IMPRESSION"}, {"p":"com.theoplayer.android.api.event.ads","c":"AdsEventTypes.Identifiers","l":"AD_FIRST_QUARTILE","url":"com/theoplayer/android/api/event/ads/AdsEventTypes.Identifiers.html#AD_FIRST_QUARTILE"}, {"p":"com.theoplayer.android.api.event.ads","c":"AdsEventTypes.Identifiers","l":"AD_THIRD_QUARTILE","url":"com/theoplayer/android/api/event/ads/AdsEventTypes.Identifiers.html#AD_THIRD_QUARTILE"}, {"p":"com.theoplayer.android.api.event.ads","c":"AdsEventTypes.Identifiers","l":"AD_MIDPOINT","url":"com/theoplayer/android/api/event/ads/AdsEventTypes.Identifiers.html#AD_MIDPOINT"}, {"p":"com.theoplayer.android.api.event.ads","c":"AdsEventTypes.Identifiers","l":"ADD_AD","url":"com/theoplayer/android/api/event/ads/AdsEventTypes.Identifiers.html#ADD_AD"}, {"p":"com.theoplayer.android.api.event.ads","c":"AdsEventTypes.Identifiers","l":"ADD_AD_BREAK","url":"com/theoplayer/android/api/event/ads/AdsEventTypes.Identifiers.html#ADD_AD_BREAK"}, {"p":"com.theoplayer.android.api.event.ads","c":"AdsEventTypes.Identifiers","l":"AD_BREAK_CHANGE","url":"com/theoplayer/android/api/event/ads/AdsEventTypes.Identifiers.html#AD_BREAK_CHANGE"}, {"p":"com.theoplayer.android.api.event.ads","c":"AdsEventTypes.Identifiers","l":"REMOVE_AD_BREAK","url":"com/theoplayer/android/api/event/ads/AdsEventTypes.Identifiers.html#REMOVE_AD_BREAK"}, {"p":"com.theoplayer.android.api.event.ads","c":"AdsEventTypes","l":"AD_BEGIN","url":"com/theoplayer/android/api/event/ads/AdsEventTypes.html#AD_BEGIN"}, {"p":"com.theoplayer.android.api.event.ads","c":"AdsEventTypes","l":"AD_END","url":"com/theoplayer/android/api/event/ads/AdsEventTypes.html#AD_END"}, {"p":"com.theoplayer.android.api.event.ads","c":"AdsEventTypes","l":"AD_SKIP","url":"com/theoplayer/android/api/event/ads/AdsEventTypes.html#AD_SKIP"}, {"p":"com.theoplayer.android.api.event.ads","c":"AdsEventTypes","l":"AD_ERROR","url":"com/theoplayer/android/api/event/ads/AdsEventTypes.html#AD_ERROR"}, {"p":"com.theoplayer.android.api.event.ads","c":"AdsEventTypes","l":"AD_BREAK_BEGIN","url":"com/theoplayer/android/api/event/ads/AdsEventTypes.html#AD_BREAK_BEGIN"}, {"p":"com.theoplayer.android.api.event.ads","c":"AdsEventTypes","l":"AD_BREAK_END","url":"com/theoplayer/android/api/event/ads/AdsEventTypes.html#AD_BREAK_END"}, {"p":"com.theoplayer.android.api.event.ads","c":"AdsEventTypes","l":"AD_LOADED","url":"com/theoplayer/android/api/event/ads/AdsEventTypes.html#AD_LOADED"}, {"p":"com.theoplayer.android.api.event.ads","c":"AdsEventTypes","l":"AD_IMPRESSION","url":"com/theoplayer/android/api/event/ads/AdsEventTypes.html#AD_IMPRESSION"}, {"p":"com.theoplayer.android.api.event.ads","c":"AdsEventTypes","l":"AD_FIRST_QUARTILE","url":"com/theoplayer/android/api/event/ads/AdsEventTypes.html#AD_FIRST_QUARTILE"}, {"p":"com.theoplayer.android.api.event.ads","c":"AdsEventTypes","l":"AD_THIRD_QUARTILE","url":"com/theoplayer/android/api/event/ads/AdsEventTypes.html#AD_THIRD_QUARTILE"}, {"p":"com.theoplayer.android.api.event.ads","c":"AdsEventTypes","l":"AD_MIDPOINT","url":"com/theoplayer/android/api/event/ads/AdsEventTypes.html#AD_MIDPOINT"}, {"p":"com.theoplayer.android.api.event.ads","c":"AdsEventTypes","l":"ADD_AD","url":"com/theoplayer/android/api/event/ads/AdsEventTypes.html#ADD_AD"}, {"p":"com.theoplayer.android.api.event.ads","c":"AdsEventTypes","l":"ADD_AD_BREAK","url":"com/theoplayer/android/api/event/ads/AdsEventTypes.html#ADD_AD_BREAK"}, {"p":"com.theoplayer.android.api.event.ads","c":"AdsEventTypes","l":"AD_BREAK_CHANGE","url":"com/theoplayer/android/api/event/ads/AdsEventTypes.html#AD_BREAK_CHANGE"}, {"p":"com.theoplayer.android.api.event.ads","c":"AdsEventTypes","l":"REMOVE_AD_BREAK","url":"com/theoplayer/android/api/event/ads/AdsEventTypes.html#REMOVE_AD_BREAK"}, {"p":"com.theoplayer.android.api.error","c":"ErrorCode","l":"id","url":"com/theoplayer/android/api/error/ErrorCode.html#id"}, {"p":"com.theoplayer.android.api.error","c":"ContentProtectionException","l":"url","url":"com/theoplayer/android/api/error/ContentProtectionException.html#url"}, {"p":"com.theoplayer.android.api.error","c":"ContentProtectionException","l":"status","url":"com/theoplayer/android/api/error/ContentProtectionException.html#status"}, {"p":"com.theoplayer.android.api.error","c":"ContentProtectionException","l":"statusText","url":"com/theoplayer/android/api/error/ContentProtectionException.html#statusText"}, {"p":"com.theoplayer.android.api.error","c":"ContentProtectionException","l":"response","url":"com/theoplayer/android/api/error/ContentProtectionException.html#response"}, {"p":"com.theoplayer.android.api.error","c":"ContentProtectionException","l":"code","url":"com/theoplayer/android/api/error/THEOplayerException.html#code"}, {"p":"com.theoplayer.android.api.error","c":"ErrorCategory","l":"id","url":"com/theoplayer/android/api/error/ErrorCategory.html#id"}, {"p":"com.theoplayer.android.api.error","c":"THEOplayerException","l":"code","url":"com/theoplayer/android/api/error/THEOplayerException.html#code"}, {"p":"com.theoplayer.android.api.contentprotection","c":"Request","l":"url","url":"com/theoplayer/android/api/contentprotection/Request.html#url"}, {"p":"com.theoplayer.android.api.contentprotection","c":"Request","l":"method","url":"com/theoplayer/android/api/contentprotection/Request.html#method"}, {"p":"com.theoplayer.android.api.contentprotection","c":"Request","l":"headers","url":"com/theoplayer/android/api/contentprotection/Request.html#headers"}, {"p":"com.theoplayer.android.api.contentprotection","c":"Request","l":"body","url":"com/theoplayer/android/api/contentprotection/Request.html#body"}, {"p":"com.theoplayer.android.api.source.addescription","c":"GoogleImaAdDescription","l":"sources","url":"com/theoplayer/android/api/source/addescription/GoogleImaAdDescription.html#sources"}, {"p":"com.theoplayer.android.api.source.addescription","c":"GoogleImaAdDescription","l":"timeOffset","url":"com/theoplayer/android/api/source/addescription/GoogleImaAdDescription.html#timeOffset"}, {"p":"com.theoplayer.android.api.source.addescription","c":"GoogleImaAdDescription","l":"integration","url":"com/theoplayer/android/api/source/addescription/AdDescription.html#integration"}, {"p":"com.theoplayer.android.api.source.addescription","c":"AdDescription","l":"integration","url":"com/theoplayer/android/api/source/addescription/AdDescription.html#integration"}, {"p":"com.theoplayer.android.api.source.drm","c":"KeySystemConfiguration","l":"licenseAcquisitionURL","url":"com/theoplayer/android/api/source/drm/preintegration/KeyOSKeySystemConfiguration.html#licenseAcquisitionURL"}, {"p":"com.theoplayer.android.api.source.drm","c":"KeySystemConfiguration","l":"headers","url":"com/theoplayer/android/api/source/drm/preintegration/KeyOSKeySystemConfiguration.html#headers"}, {"p":"com.theoplayer.android.api.source.drm","c":"KeySystemConfiguration","l":"queryParameters","url":"com/theoplayer/android/api/source/drm/preintegration/KeyOSKeySystemConfiguration.html#queryParameters"}, {"p":"com.theoplayer.android.api.source.drm","c":"KeySystemConfiguration","l":"licenseType","url":"com/theoplayer/android/api/source/drm/preintegration/KeyOSKeySystemConfiguration.html#licenseType"}, {"p":"com.theoplayer.android.api.source.drm","c":"ClearkeyKeySystemConfiguration.ClearkeyDecryptionKey","l":"id","url":"com/theoplayer/android/api/source/drm/ClearkeyKeySystemConfiguration.ClearkeyDecryptionKey.html#id"}, {"p":"com.theoplayer.android.api.source.drm","c":"ClearkeyKeySystemConfiguration.ClearkeyDecryptionKey","l":"value","url":"com/theoplayer/android/api/source/drm/ClearkeyKeySystemConfiguration.ClearkeyDecryptionKey.html#value"}, {"p":"com.theoplayer.android.api.source.drm","c":"ClearkeyKeySystemConfiguration","l":"keys","url":"com/theoplayer/android/api/source/drm/ClearkeyKeySystemConfiguration.html#keys"}, {"p":"com.theoplayer.android.api.source.drm","c":"ClearkeyKeySystemConfiguration","l":"licenseAcquisitionURL","url":"com/theoplayer/android/api/source/drm/preintegration/KeyOSKeySystemConfiguration.html#licenseAcquisitionURL"}, {"p":"com.theoplayer.android.api.source.drm","c":"ClearkeyKeySystemConfiguration","l":"headers","url":"com/theoplayer/android/api/source/drm/preintegration/KeyOSKeySystemConfiguration.html#headers"}, {"p":"com.theoplayer.android.api.source.drm","c":"ClearkeyKeySystemConfiguration","l":"queryParameters","url":"com/theoplayer/android/api/source/drm/preintegration/KeyOSKeySystemConfiguration.html#queryParameters"}, {"p":"com.theoplayer.android.api.source.drm","c":"ClearkeyKeySystemConfiguration","l":"licenseType","url":"com/theoplayer/android/api/source/drm/preintegration/KeyOSKeySystemConfiguration.html#licenseType"}, {"p":"com.theoplayer.android.api.source.drm","c":"DRMConfiguration","l":"fairplay","url":"com/theoplayer/android/api/source/drm/preintegration/XstreamConfiguration.html#fairplay"}, {"p":"com.theoplayer.android.api.source.drm","c":"DRMConfiguration","l":"playready","url":"com/theoplayer/android/api/source/drm/preintegration/XstreamConfiguration.html#playready"}, {"p":"com.theoplayer.android.api.source.drm","c":"DRMConfiguration","l":"widevine","url":"com/theoplayer/android/api/source/drm/preintegration/XstreamConfiguration.html#widevine"}, {"p":"com.theoplayer.android.api.source.drm","c":"DRMConfiguration","l":"clearkey","url":"com/theoplayer/android/api/source/drm/preintegration/XstreamConfiguration.html#clearkey"}, {"p":"com.theoplayer.android.api.source.drm","c":"DRMConfiguration","l":"integrationParameters","url":"com/theoplayer/android/api/source/drm/preintegration/XstreamConfiguration.html#integrationParameters"}, {"p":"com.theoplayer.android.api.source.drm","c":"DRMConfiguration","l":"integration","url":"com/theoplayer/android/api/source/drm/preintegration/XstreamConfiguration.html#integration"}, {"p":"com.theoplayer.android.api.source.drm","c":"DRMConfiguration","l":"customIntegrationId","url":"com/theoplayer/android/api/source/drm/preintegration/XstreamConfiguration.html#customIntegrationId"}, {"p":"com.theoplayer.android.api.source.drm","c":"DRMIntegrationId","l":"integrationId","url":"com/theoplayer/android/api/source/drm/DRMIntegrationId.html#integrationId"}, {"p":"com.theoplayer.android.api.source.drm","c":"FairPlayKeySystemConfiguration","l":"certificateURL","url":"com/theoplayer/android/api/source/drm/FairPlayKeySystemConfiguration.html#certificateURL"}, {"p":"com.theoplayer.android.api.source.drm","c":"FairPlayKeySystemConfiguration","l":"licenseAcquisitionURL","url":"com/theoplayer/android/api/source/drm/preintegration/KeyOSKeySystemConfiguration.html#licenseAcquisitionURL"}, {"p":"com.theoplayer.android.api.source.drm","c":"FairPlayKeySystemConfiguration","l":"headers","url":"com/theoplayer/android/api/source/drm/preintegration/KeyOSKeySystemConfiguration.html#headers"}, {"p":"com.theoplayer.android.api.source.drm","c":"FairPlayKeySystemConfiguration","l":"queryParameters","url":"com/theoplayer/android/api/source/drm/preintegration/KeyOSKeySystemConfiguration.html#queryParameters"}, {"p":"com.theoplayer.android.api.source.drm","c":"FairPlayKeySystemConfiguration","l":"licenseType","url":"com/theoplayer/android/api/source/drm/preintegration/KeyOSKeySystemConfiguration.html#licenseType"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"DRMPreIntegrationConfiguration","l":"fairplay","url":"com/theoplayer/android/api/source/drm/preintegration/XstreamConfiguration.html#fairplay"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"DRMPreIntegrationConfiguration","l":"playready","url":"com/theoplayer/android/api/source/drm/preintegration/XstreamConfiguration.html#playready"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"DRMPreIntegrationConfiguration","l":"widevine","url":"com/theoplayer/android/api/source/drm/preintegration/XstreamConfiguration.html#widevine"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"DRMPreIntegrationConfiguration","l":"clearkey","url":"com/theoplayer/android/api/source/drm/preintegration/XstreamConfiguration.html#clearkey"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"DRMPreIntegrationConfiguration","l":"integrationParameters","url":"com/theoplayer/android/api/source/drm/preintegration/XstreamConfiguration.html#integrationParameters"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"DRMPreIntegrationConfiguration","l":"integration","url":"com/theoplayer/android/api/source/drm/preintegration/XstreamConfiguration.html#integration"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"DRMPreIntegrationConfiguration","l":"customIntegrationId","url":"com/theoplayer/android/api/source/drm/preintegration/XstreamConfiguration.html#customIntegrationId"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"VudrmDRMConfiguration","l":"token","url":"com/theoplayer/android/api/source/drm/preintegration/VudrmDRMConfiguration.html#token"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"VudrmDRMConfiguration","l":"fairplay","url":"com/theoplayer/android/api/source/drm/preintegration/XstreamConfiguration.html#fairplay"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"VudrmDRMConfiguration","l":"playready","url":"com/theoplayer/android/api/source/drm/preintegration/XstreamConfiguration.html#playready"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"VudrmDRMConfiguration","l":"widevine","url":"com/theoplayer/android/api/source/drm/preintegration/XstreamConfiguration.html#widevine"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"VudrmDRMConfiguration","l":"clearkey","url":"com/theoplayer/android/api/source/drm/preintegration/XstreamConfiguration.html#clearkey"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"VudrmDRMConfiguration","l":"integrationParameters","url":"com/theoplayer/android/api/source/drm/preintegration/XstreamConfiguration.html#integrationParameters"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"VudrmDRMConfiguration","l":"integration","url":"com/theoplayer/android/api/source/drm/preintegration/XstreamConfiguration.html#integration"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"VudrmDRMConfiguration","l":"customIntegrationId","url":"com/theoplayer/android/api/source/drm/preintegration/XstreamConfiguration.html#customIntegrationId"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"KeyOSDRMConfiguration","l":"customdata","url":"com/theoplayer/android/api/source/drm/preintegration/KeyOSDRMConfiguration.html#customdata"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"KeyOSDRMConfiguration","l":"fairplay","url":"com/theoplayer/android/api/source/drm/preintegration/XstreamConfiguration.html#fairplay"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"KeyOSDRMConfiguration","l":"playready","url":"com/theoplayer/android/api/source/drm/preintegration/XstreamConfiguration.html#playready"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"KeyOSDRMConfiguration","l":"widevine","url":"com/theoplayer/android/api/source/drm/preintegration/XstreamConfiguration.html#widevine"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"KeyOSDRMConfiguration","l":"clearkey","url":"com/theoplayer/android/api/source/drm/preintegration/XstreamConfiguration.html#clearkey"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"KeyOSDRMConfiguration","l":"integrationParameters","url":"com/theoplayer/android/api/source/drm/preintegration/XstreamConfiguration.html#integrationParameters"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"KeyOSDRMConfiguration","l":"integration","url":"com/theoplayer/android/api/source/drm/preintegration/XstreamConfiguration.html#integration"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"KeyOSDRMConfiguration","l":"customIntegrationId","url":"com/theoplayer/android/api/source/drm/preintegration/XstreamConfiguration.html#customIntegrationId"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"ConaxDRMConfiguration","l":"deviceId","url":"com/theoplayer/android/api/source/drm/preintegration/ConaxDRMConfiguration.html#deviceId"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"ConaxDRMConfiguration","l":"token","url":"com/theoplayer/android/api/source/drm/preintegration/ConaxDRMConfiguration.html#token"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"ConaxDRMConfiguration","l":"fairplay","url":"com/theoplayer/android/api/source/drm/preintegration/XstreamConfiguration.html#fairplay"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"ConaxDRMConfiguration","l":"playready","url":"com/theoplayer/android/api/source/drm/preintegration/XstreamConfiguration.html#playready"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"ConaxDRMConfiguration","l":"widevine","url":"com/theoplayer/android/api/source/drm/preintegration/XstreamConfiguration.html#widevine"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"ConaxDRMConfiguration","l":"clearkey","url":"com/theoplayer/android/api/source/drm/preintegration/XstreamConfiguration.html#clearkey"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"ConaxDRMConfiguration","l":"integrationParameters","url":"com/theoplayer/android/api/source/drm/preintegration/XstreamConfiguration.html#integrationParameters"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"ConaxDRMConfiguration","l":"integration","url":"com/theoplayer/android/api/source/drm/preintegration/XstreamConfiguration.html#integration"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"ConaxDRMConfiguration","l":"customIntegrationId","url":"com/theoplayer/android/api/source/drm/preintegration/XstreamConfiguration.html#customIntegrationId"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"KeyOSKeySystemConfiguration","l":"customdata","url":"com/theoplayer/android/api/source/drm/preintegration/KeyOSKeySystemConfiguration.html#customdata"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"KeyOSKeySystemConfiguration","l":"licenseAcquisitionURL","url":"com/theoplayer/android/api/source/drm/preintegration/KeyOSKeySystemConfiguration.html#licenseAcquisitionURL"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"KeyOSKeySystemConfiguration","l":"headers","url":"com/theoplayer/android/api/source/drm/preintegration/KeyOSKeySystemConfiguration.html#headers"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"KeyOSKeySystemConfiguration","l":"queryParameters","url":"com/theoplayer/android/api/source/drm/preintegration/KeyOSKeySystemConfiguration.html#queryParameters"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"KeyOSKeySystemConfiguration","l":"licenseType","url":"com/theoplayer/android/api/source/drm/preintegration/KeyOSKeySystemConfiguration.html#licenseType"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"AxinomDRMConfiguration","l":"token","url":"com/theoplayer/android/api/source/drm/preintegration/AxinomDRMConfiguration.html#token"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"AxinomDRMConfiguration","l":"fairplay","url":"com/theoplayer/android/api/source/drm/preintegration/XstreamConfiguration.html#fairplay"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"AxinomDRMConfiguration","l":"playready","url":"com/theoplayer/android/api/source/drm/preintegration/XstreamConfiguration.html#playready"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"AxinomDRMConfiguration","l":"widevine","url":"com/theoplayer/android/api/source/drm/preintegration/XstreamConfiguration.html#widevine"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"AxinomDRMConfiguration","l":"clearkey","url":"com/theoplayer/android/api/source/drm/preintegration/XstreamConfiguration.html#clearkey"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"AxinomDRMConfiguration","l":"integrationParameters","url":"com/theoplayer/android/api/source/drm/preintegration/XstreamConfiguration.html#integrationParameters"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"AxinomDRMConfiguration","l":"integration","url":"com/theoplayer/android/api/source/drm/preintegration/XstreamConfiguration.html#integration"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"AxinomDRMConfiguration","l":"customIntegrationId","url":"com/theoplayer/android/api/source/drm/preintegration/XstreamConfiguration.html#customIntegrationId"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"AzureDRMConfiguration","l":"certificateURL","url":"com/theoplayer/android/api/source/drm/preintegration/AzureDRMConfiguration.html#certificateURL"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"AzureDRMConfiguration","l":"token","url":"com/theoplayer/android/api/source/drm/preintegration/AzureDRMConfiguration.html#token"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"AzureDRMConfiguration","l":"fairplay","url":"com/theoplayer/android/api/source/drm/preintegration/XstreamConfiguration.html#fairplay"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"AzureDRMConfiguration","l":"playready","url":"com/theoplayer/android/api/source/drm/preintegration/XstreamConfiguration.html#playready"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"AzureDRMConfiguration","l":"widevine","url":"com/theoplayer/android/api/source/drm/preintegration/XstreamConfiguration.html#widevine"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"AzureDRMConfiguration","l":"clearkey","url":"com/theoplayer/android/api/source/drm/preintegration/XstreamConfiguration.html#clearkey"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"AzureDRMConfiguration","l":"integrationParameters","url":"com/theoplayer/android/api/source/drm/preintegration/XstreamConfiguration.html#integrationParameters"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"AzureDRMConfiguration","l":"integration","url":"com/theoplayer/android/api/source/drm/preintegration/XstreamConfiguration.html#integration"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"AzureDRMConfiguration","l":"customIntegrationId","url":"com/theoplayer/android/api/source/drm/preintegration/XstreamConfiguration.html#customIntegrationId"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"DRMTodayConfiguration","l":"token","url":"com/theoplayer/android/api/source/drm/preintegration/DRMTodayConfiguration.html#token"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"DRMTodayConfiguration","l":"userId","url":"com/theoplayer/android/api/source/drm/preintegration/DRMTodayConfiguration.html#userId"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"DRMTodayConfiguration","l":"sessionId","url":"com/theoplayer/android/api/source/drm/preintegration/DRMTodayConfiguration.html#sessionId"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"DRMTodayConfiguration","l":"merchant","url":"com/theoplayer/android/api/source/drm/preintegration/DRMTodayConfiguration.html#merchant"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"DRMTodayConfiguration","l":"fairplay","url":"com/theoplayer/android/api/source/drm/preintegration/XstreamConfiguration.html#fairplay"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"DRMTodayConfiguration","l":"playready","url":"com/theoplayer/android/api/source/drm/preintegration/XstreamConfiguration.html#playready"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"DRMTodayConfiguration","l":"widevine","url":"com/theoplayer/android/api/source/drm/preintegration/XstreamConfiguration.html#widevine"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"DRMTodayConfiguration","l":"clearkey","url":"com/theoplayer/android/api/source/drm/preintegration/XstreamConfiguration.html#clearkey"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"DRMTodayConfiguration","l":"integrationParameters","url":"com/theoplayer/android/api/source/drm/preintegration/XstreamConfiguration.html#integrationParameters"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"DRMTodayConfiguration","l":"integration","url":"com/theoplayer/android/api/source/drm/preintegration/XstreamConfiguration.html#integration"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"DRMTodayConfiguration","l":"customIntegrationId","url":"com/theoplayer/android/api/source/drm/preintegration/XstreamConfiguration.html#customIntegrationId"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"TitaniumDRMConfiguration","l":"accountName","url":"com/theoplayer/android/api/source/drm/preintegration/TitaniumDRMConfiguration.html#accountName"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"TitaniumDRMConfiguration","l":"customerName","url":"com/theoplayer/android/api/source/drm/preintegration/TitaniumDRMConfiguration.html#customerName"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"TitaniumDRMConfiguration","l":"portalId","url":"com/theoplayer/android/api/source/drm/preintegration/TitaniumDRMConfiguration.html#portalId"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"TitaniumDRMConfiguration","l":"friendlyName","url":"com/theoplayer/android/api/source/drm/preintegration/TitaniumDRMConfiguration.html#friendlyName"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"TitaniumDRMConfiguration","l":"authToken","url":"com/theoplayer/android/api/source/drm/preintegration/TitaniumDRMConfiguration.html#authToken"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"TitaniumDRMConfiguration","l":"version","url":"com/theoplayer/android/api/source/drm/preintegration/TitaniumDRMConfiguration.html#version"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"TitaniumDRMConfiguration","l":"fairplay","url":"com/theoplayer/android/api/source/drm/preintegration/XstreamConfiguration.html#fairplay"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"TitaniumDRMConfiguration","l":"playready","url":"com/theoplayer/android/api/source/drm/preintegration/XstreamConfiguration.html#playready"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"TitaniumDRMConfiguration","l":"widevine","url":"com/theoplayer/android/api/source/drm/preintegration/XstreamConfiguration.html#widevine"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"TitaniumDRMConfiguration","l":"clearkey","url":"com/theoplayer/android/api/source/drm/preintegration/XstreamConfiguration.html#clearkey"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"TitaniumDRMConfiguration","l":"integrationParameters","url":"com/theoplayer/android/api/source/drm/preintegration/XstreamConfiguration.html#integrationParameters"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"TitaniumDRMConfiguration","l":"integration","url":"com/theoplayer/android/api/source/drm/preintegration/XstreamConfiguration.html#integration"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"TitaniumDRMConfiguration","l":"customIntegrationId","url":"com/theoplayer/android/api/source/drm/preintegration/XstreamConfiguration.html#customIntegrationId"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"IrdetoConfiguration","l":"crmId","url":"com/theoplayer/android/api/source/drm/preintegration/IrdetoConfiguration.html#crmId"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"IrdetoConfiguration","l":"ticket","url":"com/theoplayer/android/api/source/drm/preintegration/IrdetoConfiguration.html#ticket"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"IrdetoConfiguration","l":"accountId","url":"com/theoplayer/android/api/source/drm/preintegration/IrdetoConfiguration.html#accountId"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"IrdetoConfiguration","l":"contentId","url":"com/theoplayer/android/api/source/drm/preintegration/IrdetoConfiguration.html#contentId"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"IrdetoConfiguration","l":"sessionId","url":"com/theoplayer/android/api/source/drm/preintegration/IrdetoConfiguration.html#sessionId"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"IrdetoConfiguration","l":"fairplay","url":"com/theoplayer/android/api/source/drm/preintegration/XstreamConfiguration.html#fairplay"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"IrdetoConfiguration","l":"playready","url":"com/theoplayer/android/api/source/drm/preintegration/XstreamConfiguration.html#playready"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"IrdetoConfiguration","l":"widevine","url":"com/theoplayer/android/api/source/drm/preintegration/XstreamConfiguration.html#widevine"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"IrdetoConfiguration","l":"clearkey","url":"com/theoplayer/android/api/source/drm/preintegration/XstreamConfiguration.html#clearkey"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"IrdetoConfiguration","l":"integrationParameters","url":"com/theoplayer/android/api/source/drm/preintegration/XstreamConfiguration.html#integrationParameters"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"IrdetoConfiguration","l":"integration","url":"com/theoplayer/android/api/source/drm/preintegration/XstreamConfiguration.html#integration"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"IrdetoConfiguration","l":"customIntegrationId","url":"com/theoplayer/android/api/source/drm/preintegration/XstreamConfiguration.html#customIntegrationId"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"XstreamConfiguration","l":"sessionId","url":"com/theoplayer/android/api/source/drm/preintegration/XstreamConfiguration.html#sessionId"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"XstreamConfiguration","l":"streamId","url":"com/theoplayer/android/api/source/drm/preintegration/XstreamConfiguration.html#streamId"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"XstreamConfiguration","l":"fairplay","url":"com/theoplayer/android/api/source/drm/preintegration/XstreamConfiguration.html#fairplay"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"XstreamConfiguration","l":"playready","url":"com/theoplayer/android/api/source/drm/preintegration/XstreamConfiguration.html#playready"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"XstreamConfiguration","l":"widevine","url":"com/theoplayer/android/api/source/drm/preintegration/XstreamConfiguration.html#widevine"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"XstreamConfiguration","l":"clearkey","url":"com/theoplayer/android/api/source/drm/preintegration/XstreamConfiguration.html#clearkey"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"XstreamConfiguration","l":"integrationParameters","url":"com/theoplayer/android/api/source/drm/preintegration/XstreamConfiguration.html#integrationParameters"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"XstreamConfiguration","l":"integration","url":"com/theoplayer/android/api/source/drm/preintegration/XstreamConfiguration.html#integration"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","c":"XstreamConfiguration","l":"customIntegrationId","url":"com/theoplayer/android/api/source/drm/preintegration/XstreamConfiguration.html#customIntegrationId"}, {"p":"com.theoplayer.android.api.source.ssai","c":"SsaiDescription","l":"integration","url":"com/theoplayer/android/api/source/ssai/dai/GoogleDaiVodConfiguration.html#integration"}, {"p":"com.theoplayer.android.api.source.ssai","c":"GoogleDaiConfiguration.Builder","l":"apiKey","url":"com/theoplayer/android/api/source/ssai/dai/GoogleDaiVodConfiguration.Builder.html#apiKey"}, {"p":"com.theoplayer.android.api.source.ssai","c":"GoogleDaiConfiguration.Builder","l":"authToken","url":"com/theoplayer/android/api/source/ssai/dai/GoogleDaiVodConfiguration.Builder.html#authToken"}, {"p":"com.theoplayer.android.api.source.ssai","c":"GoogleDaiConfiguration.Builder","l":"streamActivityMonitorID","url":"com/theoplayer/android/api/source/ssai/dai/GoogleDaiVodConfiguration.Builder.html#streamActivityMonitorID"}, {"p":"com.theoplayer.android.api.source.ssai","c":"GoogleDaiConfiguration.Builder","l":"adTagParameters","url":"com/theoplayer/android/api/source/ssai/dai/GoogleDaiVodConfiguration.Builder.html#adTagParameters"}, {"p":"com.theoplayer.android.api.source.ssai","c":"GoogleDaiConfiguration.Builder","l":"sourceType","url":"com/theoplayer/android/api/source/ssai/dai/GoogleDaiVodConfiguration.Builder.html#sourceType"}, {"p":"com.theoplayer.android.api.source.ssai","c":"GoogleDaiConfiguration","l":"availabilityType","url":"com/theoplayer/android/api/source/ssai/dai/GoogleDaiVodConfiguration.html#availabilityType"}, {"p":"com.theoplayer.android.api.source.ssai","c":"GoogleDaiConfiguration","l":"apiKey","url":"com/theoplayer/android/api/source/ssai/dai/GoogleDaiVodConfiguration.html#apiKey"}, {"p":"com.theoplayer.android.api.source.ssai","c":"GoogleDaiConfiguration","l":"authToken","url":"com/theoplayer/android/api/source/ssai/dai/GoogleDaiVodConfiguration.html#authToken"}, {"p":"com.theoplayer.android.api.source.ssai","c":"GoogleDaiConfiguration","l":"streamActivityMonitorID","url":"com/theoplayer/android/api/source/ssai/dai/GoogleDaiVodConfiguration.html#streamActivityMonitorID"}, {"p":"com.theoplayer.android.api.source.ssai","c":"GoogleDaiConfiguration","l":"adTagParameters","url":"com/theoplayer/android/api/source/ssai/dai/GoogleDaiVodConfiguration.html#adTagParameters"}, {"p":"com.theoplayer.android.api.source.ssai","c":"GoogleDaiConfiguration","l":"format","url":"com/theoplayer/android/api/source/ssai/dai/GoogleDaiVodConfiguration.html#format"}, {"p":"com.theoplayer.android.api.source.ssai","c":"GoogleDaiConfiguration","l":"integration","url":"com/theoplayer/android/api/source/ssai/dai/GoogleDaiVodConfiguration.html#integration"}, {"p":"com.theoplayer.android.api.source.ssai","c":"CustomSsaiDescription","l":"customIntegration","url":"com/theoplayer/android/api/source/ssai/CustomSsaiDescription.html#customIntegration"}, {"p":"com.theoplayer.android.api.source.ssai","c":"CustomSsaiDescriptionRegistry","l":"INSTANCE","url":"com/theoplayer/android/api/source/ssai/CustomSsaiDescriptionRegistry.html#INSTANCE"}, {"p":"com.theoplayer.android.api.source.ssai.dai","c":"GoogleDaiLiveConfiguration.Builder","l":"apiKey","url":"com/theoplayer/android/api/source/ssai/dai/GoogleDaiVodConfiguration.Builder.html#apiKey"}, {"p":"com.theoplayer.android.api.source.ssai.dai","c":"GoogleDaiLiveConfiguration.Builder","l":"authToken","url":"com/theoplayer/android/api/source/ssai/dai/GoogleDaiVodConfiguration.Builder.html#authToken"}, {"p":"com.theoplayer.android.api.source.ssai.dai","c":"GoogleDaiLiveConfiguration.Builder","l":"streamActivityMonitorID","url":"com/theoplayer/android/api/source/ssai/dai/GoogleDaiVodConfiguration.Builder.html#streamActivityMonitorID"}, {"p":"com.theoplayer.android.api.source.ssai.dai","c":"GoogleDaiLiveConfiguration.Builder","l":"adTagParameters","url":"com/theoplayer/android/api/source/ssai/dai/GoogleDaiVodConfiguration.Builder.html#adTagParameters"}, {"p":"com.theoplayer.android.api.source.ssai.dai","c":"GoogleDaiLiveConfiguration.Builder","l":"sourceType","url":"com/theoplayer/android/api/source/ssai/dai/GoogleDaiVodConfiguration.Builder.html#sourceType"}, {"p":"com.theoplayer.android.api.source.ssai.dai","c":"GoogleDaiLiveConfiguration","l":"assetKey","url":"com/theoplayer/android/api/source/ssai/dai/GoogleDaiLiveConfiguration.html#assetKey"}, {"p":"com.theoplayer.android.api.source.ssai.dai","c":"GoogleDaiLiveConfiguration","l":"availabilityType","url":"com/theoplayer/android/api/source/ssai/dai/GoogleDaiVodConfiguration.html#availabilityType"}, {"p":"com.theoplayer.android.api.source.ssai.dai","c":"GoogleDaiLiveConfiguration","l":"apiKey","url":"com/theoplayer/android/api/source/ssai/dai/GoogleDaiVodConfiguration.html#apiKey"}, {"p":"com.theoplayer.android.api.source.ssai.dai","c":"GoogleDaiLiveConfiguration","l":"authToken","url":"com/theoplayer/android/api/source/ssai/dai/GoogleDaiVodConfiguration.html#authToken"}, {"p":"com.theoplayer.android.api.source.ssai.dai","c":"GoogleDaiLiveConfiguration","l":"streamActivityMonitorID","url":"com/theoplayer/android/api/source/ssai/dai/GoogleDaiVodConfiguration.html#streamActivityMonitorID"}, {"p":"com.theoplayer.android.api.source.ssai.dai","c":"GoogleDaiLiveConfiguration","l":"adTagParameters","url":"com/theoplayer/android/api/source/ssai/dai/GoogleDaiVodConfiguration.html#adTagParameters"}, {"p":"com.theoplayer.android.api.source.ssai.dai","c":"GoogleDaiLiveConfiguration","l":"format","url":"com/theoplayer/android/api/source/ssai/dai/GoogleDaiVodConfiguration.html#format"}, {"p":"com.theoplayer.android.api.source.ssai.dai","c":"GoogleDaiLiveConfiguration","l":"integration","url":"com/theoplayer/android/api/source/ssai/dai/GoogleDaiVodConfiguration.html#integration"}, {"p":"com.theoplayer.android.api.source.ssai.dai","c":"GoogleDaiVodConfiguration.Builder","l":"apiKey","url":"com/theoplayer/android/api/source/ssai/dai/GoogleDaiVodConfiguration.Builder.html#apiKey"}, {"p":"com.theoplayer.android.api.source.ssai.dai","c":"GoogleDaiVodConfiguration.Builder","l":"authToken","url":"com/theoplayer/android/api/source/ssai/dai/GoogleDaiVodConfiguration.Builder.html#authToken"}, {"p":"com.theoplayer.android.api.source.ssai.dai","c":"GoogleDaiVodConfiguration.Builder","l":"streamActivityMonitorID","url":"com/theoplayer/android/api/source/ssai/dai/GoogleDaiVodConfiguration.Builder.html#streamActivityMonitorID"}, {"p":"com.theoplayer.android.api.source.ssai.dai","c":"GoogleDaiVodConfiguration.Builder","l":"adTagParameters","url":"com/theoplayer/android/api/source/ssai/dai/GoogleDaiVodConfiguration.Builder.html#adTagParameters"}, {"p":"com.theoplayer.android.api.source.ssai.dai","c":"GoogleDaiVodConfiguration.Builder","l":"sourceType","url":"com/theoplayer/android/api/source/ssai/dai/GoogleDaiVodConfiguration.Builder.html#sourceType"}, {"p":"com.theoplayer.android.api.source.ssai.dai","c":"GoogleDaiVodConfiguration","l":"contentSourceID","url":"com/theoplayer/android/api/source/ssai/dai/GoogleDaiVodConfiguration.html#contentSourceID"}, {"p":"com.theoplayer.android.api.source.ssai.dai","c":"GoogleDaiVodConfiguration","l":"videoID","url":"com/theoplayer/android/api/source/ssai/dai/GoogleDaiVodConfiguration.html#videoID"}, {"p":"com.theoplayer.android.api.source.ssai.dai","c":"GoogleDaiVodConfiguration","l":"availabilityType","url":"com/theoplayer/android/api/source/ssai/dai/GoogleDaiVodConfiguration.html#availabilityType"}, {"p":"com.theoplayer.android.api.source.ssai.dai","c":"GoogleDaiVodConfiguration","l":"apiKey","url":"com/theoplayer/android/api/source/ssai/dai/GoogleDaiVodConfiguration.html#apiKey"}, {"p":"com.theoplayer.android.api.source.ssai.dai","c":"GoogleDaiVodConfiguration","l":"authToken","url":"com/theoplayer/android/api/source/ssai/dai/GoogleDaiVodConfiguration.html#authToken"}, {"p":"com.theoplayer.android.api.source.ssai.dai","c":"GoogleDaiVodConfiguration","l":"streamActivityMonitorID","url":"com/theoplayer/android/api/source/ssai/dai/GoogleDaiVodConfiguration.html#streamActivityMonitorID"}, {"p":"com.theoplayer.android.api.source.ssai.dai","c":"GoogleDaiVodConfiguration","l":"adTagParameters","url":"com/theoplayer/android/api/source/ssai/dai/GoogleDaiVodConfiguration.html#adTagParameters"}, {"p":"com.theoplayer.android.api.source.ssai.dai","c":"GoogleDaiVodConfiguration","l":"format","url":"com/theoplayer/android/api/source/ssai/dai/GoogleDaiVodConfiguration.html#format"}, {"p":"com.theoplayer.android.api.source.ssai.dai","c":"GoogleDaiVodConfiguration","l":"integration","url":"com/theoplayer/android/api/source/ssai/dai/GoogleDaiVodConfiguration.html#integration"}, {"p":"com.theoplayer.android.api.latency","c":"LatencyConfiguration","l":"minimumOffset","url":"com/theoplayer/android/api/latency/LatencyConfiguration.html#minimumOffset"}, {"p":"com.theoplayer.android.api.latency","c":"LatencyConfiguration","l":"maximumOffset","url":"com/theoplayer/android/api/latency/LatencyConfiguration.html#maximumOffset"}, {"p":"com.theoplayer.android.api.latency","c":"LatencyConfiguration","l":"targetOffset","url":"com/theoplayer/android/api/latency/LatencyConfiguration.html#targetOffset"}, {"p":"com.theoplayer.android.api.latency","c":"LatencyConfiguration","l":"forceSeekOffset","url":"com/theoplayer/android/api/latency/LatencyConfiguration.html#forceSeekOffset"}, {"p":"com.theoplayer.android.api.latency","c":"LatencyConfiguration","l":"minimumPlaybackRate","url":"com/theoplayer/android/api/latency/LatencyConfiguration.html#minimumPlaybackRate"}, {"p":"com.theoplayer.android.api.latency","c":"LatencyConfiguration","l":"maximumPlaybackRate","url":"com/theoplayer/android/api/latency/LatencyConfiguration.html#maximumPlaybackRate"}, {"p":"com.theoplayer.android.api.network.http","c":"CompleteHTTPResponse","l":"request","url":"com/theoplayer/android/api/network/http/CompleteHTTPResponse.html#request"}, {"p":"com.theoplayer.android.api.network.http","c":"CompleteHTTPResponse","l":"url","url":"com/theoplayer/android/api/network/http/CompleteHTTPResponse.html#url"}, {"p":"com.theoplayer.android.api.network.http","c":"CompleteHTTPResponse","l":"headers","url":"com/theoplayer/android/api/network/http/CompleteHTTPResponse.html#headers"}, {"p":"com.theoplayer.android.api.network.http","c":"CompleteHTTPResponse","l":"status","url":"com/theoplayer/android/api/network/http/CompleteHTTPResponse.html#status"}, {"p":"com.theoplayer.android.api.network.http","c":"CompleteHTTPResponse","l":"statusText","url":"com/theoplayer/android/api/network/http/CompleteHTTPResponse.html#statusText"}, {"p":"com.theoplayer.android.api.network.http","c":"CompleteHTTPResponse","l":"body","url":"com/theoplayer/android/api/network/http/CompleteHTTPResponse.html#body"}, {"p":"com.theoplayer.android.api.network.http","c":"RequestType","l":"name","url":"com/theoplayer/android/api/ads/theoads/TheoAdsLayoutOverride.html#name"}, {"p":"com.theoplayer.android.api.network.http","c":"RequestType","l":"ordinal","url":"com/theoplayer/android/api/ads/theoads/TheoAdsLayoutOverride.html#ordinal"}, {"p":"com.theoplayer.android.api.network.http","c":"RequestType","l":"entries","url":"com/theoplayer/android/api/network/http/RequestType.html#entries"}, {"p":"com.theoplayer.android.api.network.http","c":"RequestSubType","l":"name","url":"com/theoplayer/android/api/ads/theoads/TheoAdsLayoutOverride.html#name"}, {"p":"com.theoplayer.android.api.network.http","c":"RequestSubType","l":"ordinal","url":"com/theoplayer/android/api/ads/theoads/TheoAdsLayoutOverride.html#ordinal"}, {"p":"com.theoplayer.android.api.network.http","c":"RequestSubType","l":"entries","url":"com/theoplayer/android/api/network/http/RequestSubType.html#entries"}, {"p":"com.theoplayer.android.api.network.http","c":"RequestMediaType","l":"name","url":"com/theoplayer/android/api/ads/theoads/TheoAdsLayoutOverride.html#name"}, {"p":"com.theoplayer.android.api.network.http","c":"RequestMediaType","l":"ordinal","url":"com/theoplayer/android/api/ads/theoads/TheoAdsLayoutOverride.html#ordinal"}, {"p":"com.theoplayer.android.api.network.http","c":"RequestMediaType","l":"entries","url":"com/theoplayer/android/api/network/http/RequestMediaType.html#entries"}, {"p":"com.theoplayer.android.api.network.http","c":"ResponseType","l":"name","url":"com/theoplayer/android/api/ads/theoads/TheoAdsLayoutOverride.html#name"}, {"p":"com.theoplayer.android.api.network.http","c":"ResponseType","l":"ordinal","url":"com/theoplayer/android/api/ads/theoads/TheoAdsLayoutOverride.html#ordinal"}, {"p":"com.theoplayer.android.api.network.http","c":"ResponseType","l":"entries","url":"com/theoplayer/android/api/network/http/ResponseType.html#entries"}, {"p":"com.theoplayer.android.api.ads.ima","c":"GoogleImaAdEventType","l":"name","url":"com/theoplayer/android/api/ads/theoads/TheoAdsLayoutOverride.html#name"}, {"p":"com.theoplayer.android.api.ads.ima","c":"GoogleImaAdEventType","l":"ordinal","url":"com/theoplayer/android/api/ads/theoads/TheoAdsLayoutOverride.html#ordinal"}, {"p":"com.theoplayer.android.api.ads.ima","c":"GoogleImaAdEventType","l":"entries","url":"com/theoplayer/android/api/ads/ima/GoogleImaAdEventType.html#entries"}, {"p":"com.theoplayer.android.api.ads.ima","c":"GoogleImaIntegrationFactory","l":"INSTANCE","url":"com/theoplayer/android/api/ads/ima/GoogleImaIntegrationFactory.html#INSTANCE"}, {"p":"com.theoplayer.android.api.ads.mediatailor","c":"MediaTailorAdBreakEventType","l":"name","url":"com/theoplayer/android/api/ads/theoads/TheoAdsLayoutOverride.html#name"}, {"p":"com.theoplayer.android.api.ads.mediatailor","c":"MediaTailorAdBreakEventType","l":"ordinal","url":"com/theoplayer/android/api/ads/theoads/TheoAdsLayoutOverride.html#ordinal"}, {"p":"com.theoplayer.android.api.ads.mediatailor","c":"MediaTailorAdBreakEventType","l":"entries","url":"com/theoplayer/android/api/ads/mediatailor/MediaTailorAdBreakEventType.html#entries"}, {"p":"com.theoplayer.android.api.ads.mediatailor","c":"MediaTailorAdEventType","l":"name","url":"com/theoplayer/android/api/ads/theoads/TheoAdsLayoutOverride.html#name"}, {"p":"com.theoplayer.android.api.ads.mediatailor","c":"MediaTailorAdEventType","l":"ordinal","url":"com/theoplayer/android/api/ads/theoads/TheoAdsLayoutOverride.html#ordinal"}, {"p":"com.theoplayer.android.api.ads.mediatailor","c":"MediaTailorAdEventType","l":"entries","url":"com/theoplayer/android/api/ads/mediatailor/MediaTailorAdEventType.html#entries"}, {"p":"com.theoplayer.android.api.ads.mediatailor","c":"MediaTailorIntegrationFactory","l":"INSTANCE","url":"com/theoplayer/android/api/ads/mediatailor/MediaTailorIntegrationFactory.html#INSTANCE"}, {"p":"com.theoplayer.android.api.ads.theoads","c":"TheoAdDescription","l":"networkCode","url":"com/theoplayer/android/api/ads/theoads/TheoAdDescription.html#networkCode"}, {"p":"com.theoplayer.android.api.ads.theoads","c":"TheoAdDescription","l":"customAssetKey","url":"com/theoplayer/android/api/ads/theoads/TheoAdDescription.html#customAssetKey"}, {"p":"com.theoplayer.android.api.ads.theoads","c":"TheoAdDescription","l":"backdropDoubleBox","url":"com/theoplayer/android/api/ads/theoads/TheoAdDescription.html#backdropDoubleBox"}, {"p":"com.theoplayer.android.api.ads.theoads","c":"TheoAdDescription","l":"backdropLShape","url":"com/theoplayer/android/api/ads/theoads/TheoAdDescription.html#backdropLShape"}, {"p":"com.theoplayer.android.api.ads.theoads","c":"TheoAdDescription","l":"overrideLayout","url":"com/theoplayer/android/api/ads/theoads/TheoAdDescription.html#overrideLayout"}, {"p":"com.theoplayer.android.api.ads.theoads","c":"TheoAdDescription","l":"adTagParameters","url":"com/theoplayer/android/api/ads/theoads/TheoAdDescription.html#adTagParameters"}, {"p":"com.theoplayer.android.api.ads.theoads","c":"TheoAdDescription","l":"useId3","url":"com/theoplayer/android/api/ads/theoads/TheoAdDescription.html#useId3"}, {"p":"com.theoplayer.android.api.ads.theoads","c":"TheoAdsLayoutOverride","l":"name","url":"com/theoplayer/android/api/ads/theoads/TheoAdsLayoutOverride.html#name"}, {"p":"com.theoplayer.android.api.ads.theoads","c":"TheoAdsLayoutOverride","l":"ordinal","url":"com/theoplayer/android/api/ads/theoads/TheoAdsLayoutOverride.html#ordinal"}, {"p":"com.theoplayer.android.api.ads.theoads","c":"TheoAdsLayoutOverride","l":"entries","url":"com/theoplayer/android/api/ads/theoads/TheoAdsLayoutOverride.html#entries"}, {"p":"com.theoplayer.android.api.ads.theoads","c":"TheoAdsIntegrationFactory","l":"INSTANCE","url":"com/theoplayer/android/api/ads/theoads/TheoAdsIntegrationFactory.html#INSTANCE"}, {"p":"com.theoplayer.android.api.ads.dai","c":"GoogleDaiIntegrationFactory","l":"INSTANCE","url":"com/theoplayer/android/api/ads/dai/GoogleDaiIntegrationFactory.html#INSTANCE"}, {"p":"com.theoplayer.android.api.cast","c":"CastStrategy","l":"MANUAL","url":"com/theoplayer/android/api/cast/CastStrategy.html#MANUAL"}, {"p":"com.theoplayer.android.api.cast","c":"CastStrategy","l":"DISABLED","url":"com/theoplayer/android/api/cast/CastStrategy.html#DISABLED"}, {"p":"com.theoplayer.android.api.cast","c":"CastStrategy","l":"AUTO","url":"com/theoplayer/android/api/cast/CastStrategy.html#AUTO"}, {"p":"com.theoplayer.android.api.pip","c":"PiPType","l":"ACTIVITY","url":"com/theoplayer/android/api/pip/PiPType.html#ACTIVITY"}, {"p":"com.theoplayer.android.api.pip","c":"PiPType","l":"DIALOG","url":"com/theoplayer/android/api/pip/PiPType.html#DIALOG"}, {"p":"com.theoplayer.android.api.pip","c":"PiPType","l":"CUSTOM","url":"com/theoplayer/android/api/pip/PiPType.html#CUSTOM"}, {"p":"com.theoplayer.android.api","c":"IntegrationType","l":"GOOGLE_IMA","url":"com/theoplayer/android/api/IntegrationType.html#GOOGLE_IMA"}, {"p":"com.theoplayer.android.api","c":"IntegrationType","l":"GOOGLE_DAI","url":"com/theoplayer/android/api/IntegrationType.html#GOOGLE_DAI"}, {"p":"com.theoplayer.android.api","c":"IntegrationType","l":"AWS_MEDIATAILOR","url":"com/theoplayer/android/api/IntegrationType.html#AWS_MEDIATAILOR"}, {"p":"com.theoplayer.android.api","c":"IntegrationType","l":"ANALYTICS","url":"com/theoplayer/android/api/IntegrationType.html#ANALYTICS"}, {"p":"com.theoplayer.android.api","c":"IntegrationType","l":"CAST","url":"com/theoplayer/android/api/IntegrationType.html#CAST"}, {"p":"com.theoplayer.android.api","c":"IntegrationType","l":"THEO_ADS","url":"com/theoplayer/android/api/IntegrationType.html#THEO_ADS"}, {"p":"com.theoplayer.android.api","c":"IntegrationType","l":"MEDIA3","url":"com/theoplayer/android/api/IntegrationType.html#MEDIA3"}, {"p":"com.theoplayer.android.api","c":"IntegrationType","l":"MILLICAST","url":"com/theoplayer/android/api/IntegrationType.html#MILLICAST"}, {"p":"com.theoplayer.android.api.cast.chromecast","c":"ErrorCode","l":"CANCEL","url":"com/theoplayer/android/api/cast/chromecast/ErrorCode.html#CANCEL"}, {"p":"com.theoplayer.android.api.cast.chromecast","c":"ErrorCode","l":"TIMEOUT","url":"com/theoplayer/android/api/cast/chromecast/ErrorCode.html#TIMEOUT"}, {"p":"com.theoplayer.android.api.cast.chromecast","c":"ErrorCode","l":"API_NOT_INITIALIZED","url":"com/theoplayer/android/api/cast/chromecast/ErrorCode.html#API_NOT_INITIALIZED"}, {"p":"com.theoplayer.android.api.cast.chromecast","c":"ErrorCode","l":"INVALID_PARAMETER","url":"com/theoplayer/android/api/cast/chromecast/ErrorCode.html#INVALID_PARAMETER"}, {"p":"com.theoplayer.android.api.cast.chromecast","c":"ErrorCode","l":"EXTENSION_NOT_COMPATIBLE","url":"com/theoplayer/android/api/cast/chromecast/ErrorCode.html#EXTENSION_NOT_COMPATIBLE"}, {"p":"com.theoplayer.android.api.cast.chromecast","c":"ErrorCode","l":"EXTENSION_MISSING","url":"com/theoplayer/android/api/cast/chromecast/ErrorCode.html#EXTENSION_MISSING"}, {"p":"com.theoplayer.android.api.cast.chromecast","c":"ErrorCode","l":"RECEIVER_UNAVAILABLE","url":"com/theoplayer/android/api/cast/chromecast/ErrorCode.html#RECEIVER_UNAVAILABLE"}, {"p":"com.theoplayer.android.api.cast.chromecast","c":"ErrorCode","l":"SESSION_ERROR","url":"com/theoplayer/android/api/cast/chromecast/ErrorCode.html#SESSION_ERROR"}, {"p":"com.theoplayer.android.api.cast.chromecast","c":"ErrorCode","l":"CHANNEL_ERROR","url":"com/theoplayer/android/api/cast/chromecast/ErrorCode.html#CHANNEL_ERROR"}, {"p":"com.theoplayer.android.api.cast.chromecast","c":"ErrorCode","l":"LOAD_MEDIA_FAILED","url":"com/theoplayer/android/api/cast/chromecast/ErrorCode.html#LOAD_MEDIA_FAILED"}, {"p":"com.theoplayer.android.api.cast.chromecast","c":"PlayerCastState","l":"UNAVAILABLE","url":"com/theoplayer/android/api/cast/chromecast/PlayerCastState.html#UNAVAILABLE"}, {"p":"com.theoplayer.android.api.cast.chromecast","c":"PlayerCastState","l":"AVAILABLE","url":"com/theoplayer/android/api/cast/chromecast/PlayerCastState.html#AVAILABLE"}, {"p":"com.theoplayer.android.api.cast.chromecast","c":"PlayerCastState","l":"CONNECTING","url":"com/theoplayer/android/api/cast/chromecast/PlayerCastState.html#CONNECTING"}, {"p":"com.theoplayer.android.api.cast.chromecast","c":"PlayerCastState","l":"CONNECTED","url":"com/theoplayer/android/api/cast/chromecast/PlayerCastState.html#CONNECTED"}, {"p":"com.theoplayer.android.api.ads","c":"OmidFriendlyObstructionPurpose","l":"VIDEO_CONTROLS","url":"com/theoplayer/android/api/ads/OmidFriendlyObstructionPurpose.html#VIDEO_CONTROLS"}, {"p":"com.theoplayer.android.api.ads","c":"OmidFriendlyObstructionPurpose","l":"CLOSE_AD","url":"com/theoplayer/android/api/ads/OmidFriendlyObstructionPurpose.html#CLOSE_AD"}, {"p":"com.theoplayer.android.api.ads","c":"OmidFriendlyObstructionPurpose","l":"NOT_VISIBLE","url":"com/theoplayer/android/api/ads/OmidFriendlyObstructionPurpose.html#NOT_VISIBLE"}, {"p":"com.theoplayer.android.api.ads","c":"OmidFriendlyObstructionPurpose","l":"OTHER","url":"com/theoplayer/android/api/ads/OmidFriendlyObstructionPurpose.html#OTHER"}, {"p":"com.theoplayer.android.api.source","c":"AdIntegration","l":"GOOGLE_IMA","url":"com/theoplayer/android/api/source/AdIntegration.html#GOOGLE_IMA"}, {"p":"com.theoplayer.android.api.source","c":"AdIntegration","l":"THEO_ADS","url":"com/theoplayer/android/api/source/AdIntegration.html#THEO_ADS"}, {"p":"com.theoplayer.android.api.source","c":"SourceType","l":"DASH","url":"com/theoplayer/android/api/source/SourceType.html#DASH"}, {"p":"com.theoplayer.android.api.source","c":"SourceType","l":"HLS","url":"com/theoplayer/android/api/source/SourceType.html#HLS"}, {"p":"com.theoplayer.android.api.source","c":"SourceType","l":"HLSX","url":"com/theoplayer/android/api/source/SourceType.html#HLSX"}, {"p":"com.theoplayer.android.api.source","c":"SourceType","l":"MP4","url":"com/theoplayer/android/api/source/SourceType.html#MP4"}, {"p":"com.theoplayer.android.api.source","c":"SourceType","l":"AAC","url":"com/theoplayer/android/api/source/SourceType.html#AAC"}, {"p":"com.theoplayer.android.api.source","c":"SourceType","l":"MKV","url":"com/theoplayer/android/api/source/SourceType.html#MKV"}, {"p":"com.theoplayer.android.api.source","c":"SourceType","l":"MP3","url":"com/theoplayer/android/api/source/SourceType.html#MP3"}, {"p":"com.theoplayer.android.api.source","c":"SourceType","l":"WAV","url":"com/theoplayer/android/api/source/SourceType.html#WAV"}, {"p":"com.theoplayer.android.api.source","c":"SourceType","l":"HESP","url":"com/theoplayer/android/api/source/SourceType.html#HESP"}, {"p":"com.theoplayer.android.api.source","c":"SourceType","l":"MILLICAST","url":"com/theoplayer/android/api/source/SourceType.html#MILLICAST"}, {"p":"com.theoplayer.android.api.source.metadata","c":"ChromecastMetadataType","l":"MOVIE","url":"com/theoplayer/android/api/source/metadata/ChromecastMetadataType.html#MOVIE"}, {"p":"com.theoplayer.android.api.source.metadata","c":"ChromecastMetadataType","l":"AUDIO","url":"com/theoplayer/android/api/source/metadata/ChromecastMetadataType.html#AUDIO"}, {"p":"com.theoplayer.android.api.source.metadata","c":"ChromecastMetadataType","l":"TV_SHOW","url":"com/theoplayer/android/api/source/metadata/ChromecastMetadataType.html#TV_SHOW"}, {"p":"com.theoplayer.android.api.source.metadata","c":"ChromecastMetadataType","l":"GENERIC","url":"com/theoplayer/android/api/source/metadata/ChromecastMetadataType.html#GENERIC"}, {"p":"com.theoplayer.android.api.settings","c":"DecoderType","l":"AUDIO","url":"com/theoplayer/android/api/settings/DecoderType.html#AUDIO"}, {"p":"com.theoplayer.android.api.settings","c":"DecoderType","l":"VIDEO","url":"com/theoplayer/android/api/settings/DecoderType.html#VIDEO"}, {"p":"com.theoplayer.android.api.cache","c":"CacheStatus","l":"UNINITIALISED","url":"com/theoplayer/android/api/cache/CacheStatus.html#UNINITIALISED"}, {"p":"com.theoplayer.android.api.cache","c":"CacheStatus","l":"INITIALISED","url":"com/theoplayer/android/api/cache/CacheStatus.html#INITIALISED"}, {"p":"com.theoplayer.android.api.cache","c":"CachingTaskStatus","l":"IDLE","url":"com/theoplayer/android/api/cache/CachingTaskStatus.html#IDLE"}, {"p":"com.theoplayer.android.api.cache","c":"CachingTaskStatus","l":"LOADING","url":"com/theoplayer/android/api/cache/CachingTaskStatus.html#LOADING"}, {"p":"com.theoplayer.android.api.cache","c":"CachingTaskStatus","l":"DONE","url":"com/theoplayer/android/api/cache/CachingTaskStatus.html#DONE"}, {"p":"com.theoplayer.android.api.cache","c":"CachingTaskStatus","l":"ERROR","url":"com/theoplayer/android/api/cache/CachingTaskStatus.html#ERROR"}, {"p":"com.theoplayer.android.api.cache","c":"CachingTaskStatus","l":"EVICTED","url":"com/theoplayer/android/api/cache/CachingTaskStatus.html#EVICTED"}, {"p":"com.theoplayer.android.api.player","c":"AspectRatio","l":"FIT","url":"com/theoplayer/android/api/player/AspectRatio.html#FIT"}, {"p":"com.theoplayer.android.api.player","c":"AspectRatio","l":"FILL","url":"com/theoplayer/android/api/player/AspectRatio.html#FILL"}, {"p":"com.theoplayer.android.api.player","c":"AspectRatio","l":"ASPECT_FILL","url":"com/theoplayer/android/api/player/AspectRatio.html#ASPECT_FILL"}, {"p":"com.theoplayer.android.api.player","c":"RenderingTarget","l":"SURFACE_VIEW","url":"com/theoplayer/android/api/player/RenderingTarget.html#SURFACE_VIEW"}, {"p":"com.theoplayer.android.api.player","c":"RenderingTarget","l":"TEXTURE_VIEW","url":"com/theoplayer/android/api/player/RenderingTarget.html#TEXTURE_VIEW"}, {"p":"com.theoplayer.android.api.player","c":"RenderingTarget","l":"CUSTOM","url":"com/theoplayer/android/api/player/RenderingTarget.html#CUSTOM"}, {"p":"com.theoplayer.android.api.player","c":"PresentationMode","l":"INLINE","url":"com/theoplayer/android/api/player/PresentationMode.html#INLINE"}, {"p":"com.theoplayer.android.api.player","c":"PresentationMode","l":"FULLSCREEN","url":"com/theoplayer/android/api/player/PresentationMode.html#FULLSCREEN"}, {"p":"com.theoplayer.android.api.player","c":"PresentationMode","l":"PICTURE_IN_PICTURE","url":"com/theoplayer/android/api/player/PresentationMode.html#PICTURE_IN_PICTURE"}, {"p":"com.theoplayer.android.api.player","c":"PreloadType","l":"NONE","url":"com/theoplayer/android/api/player/PreloadType.html#NONE"}, {"p":"com.theoplayer.android.api.player","c":"PreloadType","l":"AUTO","url":"com/theoplayer/android/api/player/PreloadType.html#AUTO"}, {"p":"com.theoplayer.android.api.player","c":"PreloadType","l":"METADATA","url":"com/theoplayer/android/api/player/PreloadType.html#METADATA"}, {"p":"com.theoplayer.android.api.player","c":"ReadyState","l":"HAVE_NOTHING","url":"com/theoplayer/android/api/player/ReadyState.html#HAVE_NOTHING"}, {"p":"com.theoplayer.android.api.player","c":"ReadyState","l":"HAVE_METADATA","url":"com/theoplayer/android/api/player/ReadyState.html#HAVE_METADATA"}, {"p":"com.theoplayer.android.api.player","c":"ReadyState","l":"HAVE_CURRENT_DATA","url":"com/theoplayer/android/api/player/ReadyState.html#HAVE_CURRENT_DATA"}, {"p":"com.theoplayer.android.api.player","c":"ReadyState","l":"HAVE_FUTURE_DATA","url":"com/theoplayer/android/api/player/ReadyState.html#HAVE_FUTURE_DATA"}, {"p":"com.theoplayer.android.api.player","c":"ReadyState","l":"HAVE_ENOUGH_DATA","url":"com/theoplayer/android/api/player/ReadyState.html#HAVE_ENOUGH_DATA"}, {"p":"com.theoplayer.android.api.player.track.texttrack","c":"TextTrackType","l":"NONE","url":"com/theoplayer/android/api/player/track/texttrack/TextTrackType.html#NONE"}, {"p":"com.theoplayer.android.api.player.track.texttrack","c":"TextTrackType","l":"SRT","url":"com/theoplayer/android/api/player/track/texttrack/TextTrackType.html#SRT"}, {"p":"com.theoplayer.android.api.player.track.texttrack","c":"TextTrackType","l":"TTML","url":"com/theoplayer/android/api/player/track/texttrack/TextTrackType.html#TTML"}, {"p":"com.theoplayer.android.api.player.track.texttrack","c":"TextTrackType","l":"WEBVTT","url":"com/theoplayer/android/api/player/track/texttrack/TextTrackType.html#WEBVTT"}, {"p":"com.theoplayer.android.api.player.track.texttrack","c":"TextTrackType","l":"EMSG","url":"com/theoplayer/android/api/player/track/texttrack/TextTrackType.html#EMSG"}, {"p":"com.theoplayer.android.api.player.track.texttrack","c":"TextTrackType","l":"EVENTSTREAM","url":"com/theoplayer/android/api/player/track/texttrack/TextTrackType.html#EVENTSTREAM"}, {"p":"com.theoplayer.android.api.player.track.texttrack","c":"TextTrackType","l":"ID3","url":"com/theoplayer/android/api/player/track/texttrack/TextTrackType.html#ID3"}, {"p":"com.theoplayer.android.api.player.track.texttrack","c":"TextTrackType","l":"CEA608","url":"com/theoplayer/android/api/player/track/texttrack/TextTrackType.html#CEA608"}, {"p":"com.theoplayer.android.api.player.track.texttrack","c":"TextTrackType","l":"DATERANGE","url":"com/theoplayer/android/api/player/track/texttrack/TextTrackType.html#DATERANGE"}, {"p":"com.theoplayer.android.api.player.track.texttrack","c":"TextTrackStyle.EdgeType","l":"EDGE_TYPE_NONE","url":"com/theoplayer/android/api/player/track/texttrack/TextTrackStyle.EdgeType.html#EDGE_TYPE_NONE"}, {"p":"com.theoplayer.android.api.player.track.texttrack","c":"TextTrackStyle.EdgeType","l":"EDGE_TYPE_DEPRESSED","url":"com/theoplayer/android/api/player/track/texttrack/TextTrackStyle.EdgeType.html#EDGE_TYPE_DEPRESSED"}, {"p":"com.theoplayer.android.api.player.track.texttrack","c":"TextTrackStyle.EdgeType","l":"EDGE_TYPE_OUTLINE","url":"com/theoplayer/android/api/player/track/texttrack/TextTrackStyle.EdgeType.html#EDGE_TYPE_OUTLINE"}, {"p":"com.theoplayer.android.api.player.track.texttrack","c":"TextTrackStyle.EdgeType","l":"EDGE_TYPE_RAISED","url":"com/theoplayer/android/api/player/track/texttrack/TextTrackStyle.EdgeType.html#EDGE_TYPE_RAISED"}, {"p":"com.theoplayer.android.api.player.track.texttrack","c":"TextTrackStyle.EdgeType","l":"EDGE_TYPE_DROP_SHADOW","url":"com/theoplayer/android/api/player/track/texttrack/TextTrackStyle.EdgeType.html#EDGE_TYPE_DROP_SHADOW"}, {"p":"com.theoplayer.android.api.player.track.texttrack","c":"TextTrackStyle.FontStyle","l":"NORMAL","url":"com/theoplayer/android/api/player/track/texttrack/TextTrackStyle.FontStyle.html#NORMAL"}, {"p":"com.theoplayer.android.api.player.track.texttrack","c":"TextTrackStyle.FontStyle","l":"BOLD","url":"com/theoplayer/android/api/player/track/texttrack/TextTrackStyle.FontStyle.html#BOLD"}, {"p":"com.theoplayer.android.api.player.track.texttrack","c":"TextTrackStyle.FontStyle","l":"ITALIC","url":"com/theoplayer/android/api/player/track/texttrack/TextTrackStyle.FontStyle.html#ITALIC"}, {"p":"com.theoplayer.android.api.player.track.texttrack","c":"TextTrackStyle.FontStyle","l":"BOLD_ITALIC","url":"com/theoplayer/android/api/player/track/texttrack/TextTrackStyle.FontStyle.html#BOLD_ITALIC"}, {"p":"com.theoplayer.android.api.player.track.texttrack","c":"TextTrackStyle.FontFamily","l":"DEFAULT","url":"com/theoplayer/android/api/player/track/texttrack/TextTrackStyle.FontFamily.html#DEFAULT"}, {"p":"com.theoplayer.android.api.player.track.texttrack","c":"TextTrackStyle.FontFamily","l":"DEFAULT_BOLD","url":"com/theoplayer/android/api/player/track/texttrack/TextTrackStyle.FontFamily.html#DEFAULT_BOLD"}, {"p":"com.theoplayer.android.api.player.track.texttrack","c":"TextTrackStyle.FontFamily","l":"MONOSPACE","url":"com/theoplayer/android/api/player/track/texttrack/TextTrackStyle.FontFamily.html#MONOSPACE"}, {"p":"com.theoplayer.android.api.player.track.texttrack","c":"TextTrackStyle.FontFamily","l":"SANS_SERIF","url":"com/theoplayer/android/api/player/track/texttrack/TextTrackStyle.FontFamily.html#SANS_SERIF"}, {"p":"com.theoplayer.android.api.player.track.texttrack","c":"TextTrackStyle.FontFamily","l":"SERIF","url":"com/theoplayer/android/api/player/track/texttrack/TextTrackStyle.FontFamily.html#SERIF"}, {"p":"com.theoplayer.android.api.player.track.texttrack","c":"TextTrackMode","l":"DISABLED","url":"com/theoplayer/android/api/player/track/texttrack/TextTrackMode.html#DISABLED"}, {"p":"com.theoplayer.android.api.player.track.texttrack","c":"TextTrackMode","l":"HIDDEN","url":"com/theoplayer/android/api/player/track/texttrack/TextTrackMode.html#HIDDEN"}, {"p":"com.theoplayer.android.api.player.track.texttrack","c":"TextTrackMode","l":"SHOWING","url":"com/theoplayer/android/api/player/track/texttrack/TextTrackMode.html#SHOWING"}, {"p":"com.theoplayer.android.api.player.track.texttrack","c":"TextTrackReadyState","l":"NONE","url":"com/theoplayer/android/api/player/track/texttrack/TextTrackReadyState.html#NONE"}, {"p":"com.theoplayer.android.api.player.track.texttrack","c":"TextTrackReadyState","l":"LOADING","url":"com/theoplayer/android/api/player/track/texttrack/TextTrackReadyState.html#LOADING"}, {"p":"com.theoplayer.android.api.player.track.texttrack","c":"TextTrackReadyState","l":"LOADED","url":"com/theoplayer/android/api/player/track/texttrack/TextTrackReadyState.html#LOADED"}, {"p":"com.theoplayer.android.api.player.track.texttrack","c":"TextTrackReadyState","l":"ERROR","url":"com/theoplayer/android/api/player/track/texttrack/TextTrackReadyState.html#ERROR"}, {"p":"com.theoplayer.android.api.player.track.texttrack","c":"TextTrackKind","l":"SUBTITLES","url":"com/theoplayer/android/api/player/track/texttrack/TextTrackKind.html#SUBTITLES"}, {"p":"com.theoplayer.android.api.player.track.texttrack","c":"TextTrackKind","l":"CAPTIONS","url":"com/theoplayer/android/api/player/track/texttrack/TextTrackKind.html#CAPTIONS"}, {"p":"com.theoplayer.android.api.player.track.texttrack","c":"TextTrackKind","l":"DESCRIPTIONS","url":"com/theoplayer/android/api/player/track/texttrack/TextTrackKind.html#DESCRIPTIONS"}, {"p":"com.theoplayer.android.api.player.track.texttrack","c":"TextTrackKind","l":"CHAPTERS","url":"com/theoplayer/android/api/player/track/texttrack/TextTrackKind.html#CHAPTERS"}, {"p":"com.theoplayer.android.api.player.track.texttrack","c":"TextTrackKind","l":"METADATA","url":"com/theoplayer/android/api/player/track/texttrack/TextTrackKind.html#METADATA"}, {"p":"com.theoplayer.android.api.abr","c":"AbrStrategyType","l":"PERFORMANCE","url":"com/theoplayer/android/api/abr/AbrStrategyType.html#PERFORMANCE"}, {"p":"com.theoplayer.android.api.abr","c":"AbrStrategyType","l":"QUALITY","url":"com/theoplayer/android/api/abr/AbrStrategyType.html#QUALITY"}, {"p":"com.theoplayer.android.api.abr","c":"AbrStrategyType","l":"BANDWIDTH","url":"com/theoplayer/android/api/abr/AbrStrategyType.html#BANDWIDTH"}, {"p":"com.theoplayer.android.api.event.ads","c":"AdIntegrationKind","l":"THEO_ADS","url":"com/theoplayer/android/api/event/ads/AdIntegrationKind.html#THEO_ADS"}, {"p":"com.theoplayer.android.api.event.ads","c":"AdIntegrationKind","l":"GOOGLE_IMA","url":"com/theoplayer/android/api/event/ads/AdIntegrationKind.html#GOOGLE_IMA"}, {"p":"com.theoplayer.android.api.event.ads","c":"AdIntegrationKind","l":"GOOGLE_DAI","url":"com/theoplayer/android/api/event/ads/AdIntegrationKind.html#GOOGLE_DAI"}, {"p":"com.theoplayer.android.api.event.ads","c":"AdIntegrationKind","l":"MEDIATAILOR","url":"com/theoplayer/android/api/event/ads/AdIntegrationKind.html#MEDIATAILOR"}, {"p":"com.theoplayer.android.api.event.ads","c":"AdIntegrationKind","l":"CUSTOM","url":"com/theoplayer/android/api/event/ads/AdIntegrationKind.html#CUSTOM"}, {"p":"com.theoplayer.android.api.error","c":"ErrorCode","l":"CONFIGURATION_ERROR","url":"com/theoplayer/android/api/error/ErrorCode.html#CONFIGURATION_ERROR"}, {"p":"com.theoplayer.android.api.error","c":"ErrorCode","l":"LICENSE_ERROR","url":"com/theoplayer/android/api/error/ErrorCode.html#LICENSE_ERROR"}, {"p":"com.theoplayer.android.api.error","c":"ErrorCode","l":"LICENSE_INVALID_DOMAIN","url":"com/theoplayer/android/api/error/ErrorCode.html#LICENSE_INVALID_DOMAIN"}, {"p":"com.theoplayer.android.api.error","c":"ErrorCode","l":"LICENSE_INVALID_SOURCE","url":"com/theoplayer/android/api/error/ErrorCode.html#LICENSE_INVALID_SOURCE"}, {"p":"com.theoplayer.android.api.error","c":"ErrorCode","l":"LICENSE_EXPIRED","url":"com/theoplayer/android/api/error/ErrorCode.html#LICENSE_EXPIRED"}, {"p":"com.theoplayer.android.api.error","c":"ErrorCode","l":"LICENSE_INVALID_FEATURE","url":"com/theoplayer/android/api/error/ErrorCode.html#LICENSE_INVALID_FEATURE"}, {"p":"com.theoplayer.android.api.error","c":"ErrorCode","l":"SOURCE_INVALID","url":"com/theoplayer/android/api/error/ErrorCode.html#SOURCE_INVALID"}, {"p":"com.theoplayer.android.api.error","c":"ErrorCode","l":"SOURCE_NOT_SUPPORTED","url":"com/theoplayer/android/api/error/ErrorCode.html#SOURCE_NOT_SUPPORTED"}, {"p":"com.theoplayer.android.api.error","c":"ErrorCode","l":"MANIFEST_LOAD_ERROR","url":"com/theoplayer/android/api/error/ErrorCode.html#MANIFEST_LOAD_ERROR"}, {"p":"com.theoplayer.android.api.error","c":"ErrorCode","l":"MANIFEST_CORS_ERROR","url":"com/theoplayer/android/api/error/ErrorCode.html#MANIFEST_CORS_ERROR"}, {"p":"com.theoplayer.android.api.error","c":"ErrorCode","l":"MANIFEST_PARSE_ERROR","url":"com/theoplayer/android/api/error/ErrorCode.html#MANIFEST_PARSE_ERROR"}, {"p":"com.theoplayer.android.api.error","c":"ErrorCode","l":"MEDIA_NOT_SUPPORTED","url":"com/theoplayer/android/api/error/ErrorCode.html#MEDIA_NOT_SUPPORTED"}, {"p":"com.theoplayer.android.api.error","c":"ErrorCode","l":"MEDIA_LOAD_ERROR","url":"com/theoplayer/android/api/error/ErrorCode.html#MEDIA_LOAD_ERROR"}, {"p":"com.theoplayer.android.api.error","c":"ErrorCode","l":"MEDIA_DECODE_ERROR","url":"com/theoplayer/android/api/error/ErrorCode.html#MEDIA_DECODE_ERROR"}, {"p":"com.theoplayer.android.api.error","c":"ErrorCode","l":"MEDIA_AVPLAYER_ERROR","url":"com/theoplayer/android/api/error/ErrorCode.html#MEDIA_AVPLAYER_ERROR"}, {"p":"com.theoplayer.android.api.error","c":"ErrorCode","l":"MEDIA_ABORTED","url":"com/theoplayer/android/api/error/ErrorCode.html#MEDIA_ABORTED"}, {"p":"com.theoplayer.android.api.error","c":"ErrorCode","l":"NETWORK_ERROR","url":"com/theoplayer/android/api/error/ErrorCode.html#NETWORK_ERROR"}, {"p":"com.theoplayer.android.api.error","c":"ErrorCode","l":"NETWORK_TIMEOUT","url":"com/theoplayer/android/api/error/ErrorCode.html#NETWORK_TIMEOUT"}, {"p":"com.theoplayer.android.api.error","c":"ErrorCode","l":"CONTENT_PROTECTION_ERROR","url":"com/theoplayer/android/api/error/ErrorCode.html#CONTENT_PROTECTION_ERROR"}, {"p":"com.theoplayer.android.api.error","c":"ErrorCode","l":"CONTENT_PROTECTION_NOT_SUPPORTED","url":"com/theoplayer/android/api/error/ErrorCode.html#CONTENT_PROTECTION_NOT_SUPPORTED"}, {"p":"com.theoplayer.android.api.error","c":"ErrorCode","l":"CONTENT_PROTECTION_CONFIGURATION_MISSING","url":"com/theoplayer/android/api/error/ErrorCode.html#CONTENT_PROTECTION_CONFIGURATION_MISSING"}, {"p":"com.theoplayer.android.api.error","c":"ErrorCode","l":"CONTENT_PROTECTION_CONFIGURATION_INVALID","url":"com/theoplayer/android/api/error/ErrorCode.html#CONTENT_PROTECTION_CONFIGURATION_INVALID"}, {"p":"com.theoplayer.android.api.error","c":"ErrorCode","l":"CONTENT_PROTECTION_INITIALIZATION_INVALID","url":"com/theoplayer/android/api/error/ErrorCode.html#CONTENT_PROTECTION_INITIALIZATION_INVALID"}, {"p":"com.theoplayer.android.api.error","c":"ErrorCode","l":"CONTENT_PROTECTION_CERTIFICATE_ERROR","url":"com/theoplayer/android/api/error/ErrorCode.html#CONTENT_PROTECTION_CERTIFICATE_ERROR"}, {"p":"com.theoplayer.android.api.error","c":"ErrorCode","l":"CONTENT_PROTECTION_CERTIFICATE_INVALID","url":"com/theoplayer/android/api/error/ErrorCode.html#CONTENT_PROTECTION_CERTIFICATE_INVALID"}, {"p":"com.theoplayer.android.api.error","c":"ErrorCode","l":"CONTENT_PROTECTION_LICENSE_ERROR","url":"com/theoplayer/android/api/error/ErrorCode.html#CONTENT_PROTECTION_LICENSE_ERROR"}, {"p":"com.theoplayer.android.api.error","c":"ErrorCode","l":"CONTENT_PROTECTION_LICENSE_INVALID","url":"com/theoplayer/android/api/error/ErrorCode.html#CONTENT_PROTECTION_LICENSE_INVALID"}, {"p":"com.theoplayer.android.api.error","c":"ErrorCode","l":"CONTENT_PROTECTION_KEY_EXPIRED","url":"com/theoplayer/android/api/error/ErrorCode.html#CONTENT_PROTECTION_KEY_EXPIRED"}, {"p":"com.theoplayer.android.api.error","c":"ErrorCode","l":"CONTENT_PROTECTION_KEY_MISSING","url":"com/theoplayer/android/api/error/ErrorCode.html#CONTENT_PROTECTION_KEY_MISSING"}, {"p":"com.theoplayer.android.api.error","c":"ErrorCode","l":"CONTENT_PROTECTION_OUTPUT_RESTRICTED","url":"com/theoplayer/android/api/error/ErrorCode.html#CONTENT_PROTECTION_OUTPUT_RESTRICTED"}, {"p":"com.theoplayer.android.api.error","c":"ErrorCode","l":"CONTENT_PROTECTION_INTERNAL_ERROR","url":"com/theoplayer/android/api/error/ErrorCode.html#CONTENT_PROTECTION_INTERNAL_ERROR"}, {"p":"com.theoplayer.android.api.error","c":"ErrorCode","l":"SUBTITLE_LOAD_ERROR","url":"com/theoplayer/android/api/error/ErrorCode.html#SUBTITLE_LOAD_ERROR"}, {"p":"com.theoplayer.android.api.error","c":"ErrorCode","l":"SUBTITLE_CORS_ERROR","url":"com/theoplayer/android/api/error/ErrorCode.html#SUBTITLE_CORS_ERROR"}, {"p":"com.theoplayer.android.api.error","c":"ErrorCode","l":"SUBTITLE_PARSE_ERROR","url":"com/theoplayer/android/api/error/ErrorCode.html#SUBTITLE_PARSE_ERROR"}, {"p":"com.theoplayer.android.api.error","c":"ErrorCode","l":"VR_PLATFORM_UNSUPPORTED","url":"com/theoplayer/android/api/error/ErrorCode.html#VR_PLATFORM_UNSUPPORTED"}, {"p":"com.theoplayer.android.api.error","c":"ErrorCode","l":"VR_PRESENTATION_ERROR","url":"com/theoplayer/android/api/error/ErrorCode.html#VR_PRESENTATION_ERROR"}, {"p":"com.theoplayer.android.api.error","c":"ErrorCode","l":"AD_ERROR","url":"com/theoplayer/android/api/error/ErrorCode.html#AD_ERROR"}, {"p":"com.theoplayer.android.api.error","c":"ErrorCode","l":"AD_BLOCKER_DETECTED","url":"com/theoplayer/android/api/error/ErrorCode.html#AD_BLOCKER_DETECTED"}, {"p":"com.theoplayer.android.api.error","c":"ErrorCode","l":"FULLSCREEN_ERROR","url":"com/theoplayer/android/api/error/ErrorCode.html#FULLSCREEN_ERROR"}, {"p":"com.theoplayer.android.api.error","c":"ErrorCode","l":"CACHE_SOURCE_ERROR","url":"com/theoplayer/android/api/error/ErrorCode.html#CACHE_SOURCE_ERROR"}, {"p":"com.theoplayer.android.api.error","c":"ErrorCode","l":"CACHE_CONTENT_PROTECTION_ERROR","url":"com/theoplayer/android/api/error/ErrorCode.html#CACHE_CONTENT_PROTECTION_ERROR"}, {"p":"com.theoplayer.android.api.error","c":"ErrorCode","l":"THEO_LIVE_UNKNOWN_ERROR","url":"com/theoplayer/android/api/error/ErrorCode.html#THEO_LIVE_UNKNOWN_ERROR"}, {"p":"com.theoplayer.android.api.error","c":"ErrorCode","l":"THEO_LIVE_CHANNEL_NOT_FOUND","url":"com/theoplayer/android/api/error/ErrorCode.html#THEO_LIVE_CHANNEL_NOT_FOUND"}, {"p":"com.theoplayer.android.api.error","c":"ErrorCode","l":"THEO_LIVE_END_OF_DEMO","url":"com/theoplayer/android/api/error/ErrorCode.html#THEO_LIVE_END_OF_DEMO"}, {"p":"com.theoplayer.android.api.error","c":"ErrorCode","l":"THEO_LIVE_ANALYTICS_ERROR","url":"com/theoplayer/android/api/error/ErrorCode.html#THEO_LIVE_ANALYTICS_ERROR"}, {"p":"com.theoplayer.android.api.error","c":"ErrorCategory","l":"CONFIGURATION","url":"com/theoplayer/android/api/error/ErrorCategory.html#CONFIGURATION"}, {"p":"com.theoplayer.android.api.error","c":"ErrorCategory","l":"LICENSE","url":"com/theoplayer/android/api/error/ErrorCategory.html#LICENSE"}, {"p":"com.theoplayer.android.api.error","c":"ErrorCategory","l":"SOURCE","url":"com/theoplayer/android/api/error/ErrorCategory.html#SOURCE"}, {"p":"com.theoplayer.android.api.error","c":"ErrorCategory","l":"MANIFEST","url":"com/theoplayer/android/api/error/ErrorCategory.html#MANIFEST"}, {"p":"com.theoplayer.android.api.error","c":"ErrorCategory","l":"MEDIA","url":"com/theoplayer/android/api/error/ErrorCategory.html#MEDIA"}, {"p":"com.theoplayer.android.api.error","c":"ErrorCategory","l":"NETWORK","url":"com/theoplayer/android/api/error/ErrorCategory.html#NETWORK"}, {"p":"com.theoplayer.android.api.error","c":"ErrorCategory","l":"CONTENT_PROTECTION","url":"com/theoplayer/android/api/error/ErrorCategory.html#CONTENT_PROTECTION"}, {"p":"com.theoplayer.android.api.error","c":"ErrorCategory","l":"SUBTITLE","url":"com/theoplayer/android/api/error/ErrorCategory.html#SUBTITLE"}, {"p":"com.theoplayer.android.api.error","c":"ErrorCategory","l":"VR","url":"com/theoplayer/android/api/error/ErrorCategory.html#VR"}, {"p":"com.theoplayer.android.api.error","c":"ErrorCategory","l":"AD","url":"com/theoplayer/android/api/error/ErrorCategory.html#AD"}, {"p":"com.theoplayer.android.api.error","c":"ErrorCategory","l":"FULLSCREEN","url":"com/theoplayer/android/api/error/ErrorCategory.html#FULLSCREEN"}, {"p":"com.theoplayer.android.api.error","c":"ErrorCategory","l":"CACHE","url":"com/theoplayer/android/api/error/ErrorCategory.html#CACHE"}, {"p":"com.theoplayer.android.api.error","c":"ErrorCategory","l":"THEOLIVE","url":"com/theoplayer/android/api/error/ErrorCategory.html#THEOLIVE"}, {"p":"com.theoplayer.android.api.contentprotection","c":"RequestMethod","l":"GET","url":"com/theoplayer/android/api/contentprotection/RequestMethod.html#GET"}, {"p":"com.theoplayer.android.api.contentprotection","c":"RequestMethod","l":"PUT","url":"com/theoplayer/android/api/contentprotection/RequestMethod.html#PUT"}, {"p":"com.theoplayer.android.api.contentprotection","c":"RequestMethod","l":"POST","url":"com/theoplayer/android/api/contentprotection/RequestMethod.html#POST"}, {"p":"com.theoplayer.android.api.contentprotection","c":"RequestMethod","l":"DELETE","url":"com/theoplayer/android/api/contentprotection/RequestMethod.html#DELETE"}, {"p":"com.theoplayer.android.api.contentprotection","c":"RequestMethod","l":"HEAD","url":"com/theoplayer/android/api/contentprotection/RequestMethod.html#HEAD"}, {"p":"com.theoplayer.android.api.contentprotection","c":"RequestMethod","l":"OPTIONS","url":"com/theoplayer/android/api/contentprotection/RequestMethod.html#OPTIONS"}, {"p":"com.theoplayer.android.api.contentprotection","c":"KeySystemId","l":"WIDEVINE","url":"com/theoplayer/android/api/contentprotection/KeySystemId.html#WIDEVINE"}, {"p":"com.theoplayer.android.api.contentprotection","c":"KeySystemId","l":"PLAYREADY","url":"com/theoplayer/android/api/contentprotection/KeySystemId.html#PLAYREADY"}, {"p":"com.theoplayer.android.api.contentprotection","c":"KeySystemId","l":"FAIRPLAY","url":"com/theoplayer/android/api/contentprotection/KeySystemId.html#FAIRPLAY"}, {"p":"com.theoplayer.android.api.source.drm","c":"LicenseType","l":"PERSISTENT","url":"com/theoplayer/android/api/source/drm/LicenseType.html#PERSISTENT"}, {"p":"com.theoplayer.android.api.source.drm","c":"LicenseType","l":"TEMPORARY","url":"com/theoplayer/android/api/source/drm/LicenseType.html#TEMPORARY"}, {"p":"com.theoplayer.android.api.source.drm","c":"DRMIntegrationId","l":"TITANIUM","url":"com/theoplayer/android/api/source/drm/DRMIntegrationId.html#TITANIUM"}, {"p":"com.theoplayer.android.api.source.drm","c":"DRMIntegrationId","l":"VUDRM","url":"com/theoplayer/android/api/source/drm/DRMIntegrationId.html#VUDRM"}, {"p":"com.theoplayer.android.api.source.drm","c":"DRMIntegrationId","l":"KEYOS","url":"com/theoplayer/android/api/source/drm/DRMIntegrationId.html#KEYOS"}, {"p":"com.theoplayer.android.api.source.drm","c":"DRMIntegrationId","l":"CONAX","url":"com/theoplayer/android/api/source/drm/DRMIntegrationId.html#CONAX"}, {"p":"com.theoplayer.android.api.source.drm","c":"DRMIntegrationId","l":"DRMTODAY","url":"com/theoplayer/android/api/source/drm/DRMIntegrationId.html#DRMTODAY"}, {"p":"com.theoplayer.android.api.source.drm","c":"DRMIntegrationId","l":"IRDETO","url":"com/theoplayer/android/api/source/drm/DRMIntegrationId.html#IRDETO"}, {"p":"com.theoplayer.android.api.source.drm","c":"DRMIntegrationId","l":"XSTREAM","url":"com/theoplayer/android/api/source/drm/DRMIntegrationId.html#XSTREAM"}, {"p":"com.theoplayer.android.api.source.drm","c":"DRMIntegrationId","l":"AXINOM","url":"com/theoplayer/android/api/source/drm/DRMIntegrationId.html#AXINOM"}, {"p":"com.theoplayer.android.api.source.drm","c":"DRMIntegrationId","l":"AZURE","url":"com/theoplayer/android/api/source/drm/DRMIntegrationId.html#AZURE"}, {"p":"com.theoplayer.android.api.source.drm","c":"DRMIntegrationId","l":"CUSTOM","url":"com/theoplayer/android/api/source/drm/DRMIntegrationId.html#CUSTOM"}, {"p":"com.theoplayer.android.api.source.ssai","c":"StreamType","l":"LIVE","url":"com/theoplayer/android/api/source/ssai/StreamType.html#LIVE"}, {"p":"com.theoplayer.android.api.source.ssai","c":"StreamType","l":"VOD","url":"com/theoplayer/android/api/source/ssai/StreamType.html#VOD"}, {"p":"com.theoplayer.android.api.source.ssai","c":"SsaiIntegration","l":"GOOGLE_DAI","url":"com/theoplayer/android/api/source/ssai/SsaiIntegration.html#GOOGLE_DAI"}, {"p":"com.theoplayer.android.api.source.ssai","c":"SsaiIntegration","l":"CUSTOM","url":"com/theoplayer/android/api/source/ssai/SsaiIntegration.html#CUSTOM"}, {"p":"com.theoplayer.android.api.network.http","c":"RequestType","l":"UNKNOWN","url":"com/theoplayer/android/api/network/http/RequestType.html#UNKNOWN"}, {"p":"com.theoplayer.android.api.network.http","c":"RequestType","l":"MANIFEST","url":"com/theoplayer/android/api/network/http/RequestType.html#MANIFEST"}, {"p":"com.theoplayer.android.api.network.http","c":"RequestType","l":"SEGMENT","url":"com/theoplayer/android/api/network/http/RequestType.html#SEGMENT"}, {"p":"com.theoplayer.android.api.network.http","c":"RequestType","l":"PRELOAD_HINT","url":"com/theoplayer/android/api/network/http/RequestType.html#PRELOAD_HINT"}, {"p":"com.theoplayer.android.api.network.http","c":"RequestType","l":"CONTENT_PROTECTION","url":"com/theoplayer/android/api/network/http/RequestType.html#CONTENT_PROTECTION"}, {"p":"com.theoplayer.android.api.network.http","c":"RequestSubType","l":"UNKNOWN","url":"com/theoplayer/android/api/network/http/RequestSubType.html#UNKNOWN"}, {"p":"com.theoplayer.android.api.network.http","c":"RequestSubType","l":"INITIALIZATION_SEGMENT","url":"com/theoplayer/android/api/network/http/RequestSubType.html#INITIALIZATION_SEGMENT"}, {"p":"com.theoplayer.android.api.network.http","c":"RequestSubType","l":"FAIRPLAY_LICENSE","url":"com/theoplayer/android/api/network/http/RequestSubType.html#FAIRPLAY_LICENSE"}, {"p":"com.theoplayer.android.api.network.http","c":"RequestSubType","l":"FAIRPLAY_CERTIFICATE","url":"com/theoplayer/android/api/network/http/RequestSubType.html#FAIRPLAY_CERTIFICATE"}, {"p":"com.theoplayer.android.api.network.http","c":"RequestSubType","l":"WIDEVINE_LICENSE","url":"com/theoplayer/android/api/network/http/RequestSubType.html#WIDEVINE_LICENSE"}, {"p":"com.theoplayer.android.api.network.http","c":"RequestSubType","l":"WIDEVINE_CERTIFICATE","url":"com/theoplayer/android/api/network/http/RequestSubType.html#WIDEVINE_CERTIFICATE"}, {"p":"com.theoplayer.android.api.network.http","c":"RequestSubType","l":"PLAYREADY_LICENSE","url":"com/theoplayer/android/api/network/http/RequestSubType.html#PLAYREADY_LICENSE"}, {"p":"com.theoplayer.android.api.network.http","c":"RequestSubType","l":"CLEARKEY_LICENSE","url":"com/theoplayer/android/api/network/http/RequestSubType.html#CLEARKEY_LICENSE"}, {"p":"com.theoplayer.android.api.network.http","c":"RequestSubType","l":"AES128_KEY","url":"com/theoplayer/android/api/network/http/RequestSubType.html#AES128_KEY"}, {"p":"com.theoplayer.android.api.network.http","c":"RequestMediaType","l":"UNKNOWN","url":"com/theoplayer/android/api/network/http/RequestMediaType.html#UNKNOWN"}, {"p":"com.theoplayer.android.api.network.http","c":"RequestMediaType","l":"AUDIO","url":"com/theoplayer/android/api/network/http/RequestMediaType.html#AUDIO"}, {"p":"com.theoplayer.android.api.network.http","c":"RequestMediaType","l":"VIDEO","url":"com/theoplayer/android/api/network/http/RequestMediaType.html#VIDEO"}, {"p":"com.theoplayer.android.api.network.http","c":"RequestMediaType","l":"TEXT","url":"com/theoplayer/android/api/network/http/RequestMediaType.html#TEXT"}, {"p":"com.theoplayer.android.api.network.http","c":"RequestMediaType","l":"IMAGE","url":"com/theoplayer/android/api/network/http/RequestMediaType.html#IMAGE"}, {"p":"com.theoplayer.android.api.network.http","c":"ResponseType","l":"UNKNOWN","url":"com/theoplayer/android/api/network/http/ResponseType.html#UNKNOWN"}, {"p":"com.theoplayer.android.api.network.http","c":"ResponseType","l":"ARRAY_BUFFER","url":"com/theoplayer/android/api/network/http/ResponseType.html#ARRAY_BUFFER"}, {"p":"com.theoplayer.android.api.network.http","c":"ResponseType","l":"JSON","url":"com/theoplayer/android/api/network/http/ResponseType.html#JSON"}, {"p":"com.theoplayer.android.api.network.http","c":"ResponseType","l":"STREAM","url":"com/theoplayer/android/api/network/http/ResponseType.html#STREAM"}, {"p":"com.theoplayer.android.api.network.http","c":"ResponseType","l":"TEXT","url":"com/theoplayer/android/api/network/http/ResponseType.html#TEXT"}, {"p":"com.theoplayer.android.api.ads.ima","c":"GoogleImaAdEventType","l":"ALL_ADS_COMPLETED","url":"com/theoplayer/android/api/ads/ima/GoogleImaAdEventType.html#ALL_ADS_COMPLETED"}, {"p":"com.theoplayer.android.api.ads.ima","c":"GoogleImaAdEventType","l":"AD_BREAK_FETCH_ERROR","url":"com/theoplayer/android/api/ads/ima/GoogleImaAdEventType.html#AD_BREAK_FETCH_ERROR"}, {"p":"com.theoplayer.android.api.ads.ima","c":"GoogleImaAdEventType","l":"CLICKED","url":"com/theoplayer/android/api/ads/ima/GoogleImaAdEventType.html#CLICKED"}, {"p":"com.theoplayer.android.api.ads.ima","c":"GoogleImaAdEventType","l":"COMPLETED","url":"com/theoplayer/android/api/ads/ima/GoogleImaAdEventType.html#COMPLETED"}, {"p":"com.theoplayer.android.api.ads.ima","c":"GoogleImaAdEventType","l":"CUEPOINTS_CHANGED","url":"com/theoplayer/android/api/ads/ima/GoogleImaAdEventType.html#CUEPOINTS_CHANGED"}, {"p":"com.theoplayer.android.api.ads.ima","c":"GoogleImaAdEventType","l":"CONTENT_PAUSE_REQUESTED","url":"com/theoplayer/android/api/ads/ima/GoogleImaAdEventType.html#CONTENT_PAUSE_REQUESTED"}, {"p":"com.theoplayer.android.api.ads.ima","c":"GoogleImaAdEventType","l":"CONTENT_RESUME_REQUESTED","url":"com/theoplayer/android/api/ads/ima/GoogleImaAdEventType.html#CONTENT_RESUME_REQUESTED"}, {"p":"com.theoplayer.android.api.ads.ima","c":"GoogleImaAdEventType","l":"FIRST_QUARTILE","url":"com/theoplayer/android/api/ads/ima/GoogleImaAdEventType.html#FIRST_QUARTILE"}, {"p":"com.theoplayer.android.api.ads.ima","c":"GoogleImaAdEventType","l":"LOG","url":"com/theoplayer/android/api/ads/ima/GoogleImaAdEventType.html#LOG"}, {"p":"com.theoplayer.android.api.ads.ima","c":"GoogleImaAdEventType","l":"AD_BREAK_READY","url":"com/theoplayer/android/api/ads/ima/GoogleImaAdEventType.html#AD_BREAK_READY"}, {"p":"com.theoplayer.android.api.ads.ima","c":"GoogleImaAdEventType","l":"MIDPOINT","url":"com/theoplayer/android/api/ads/ima/GoogleImaAdEventType.html#MIDPOINT"}, {"p":"com.theoplayer.android.api.ads.ima","c":"GoogleImaAdEventType","l":"PAUSED","url":"com/theoplayer/android/api/ads/ima/GoogleImaAdEventType.html#PAUSED"}, {"p":"com.theoplayer.android.api.ads.ima","c":"GoogleImaAdEventType","l":"RESUMED","url":"com/theoplayer/android/api/ads/ima/GoogleImaAdEventType.html#RESUMED"}, {"p":"com.theoplayer.android.api.ads.ima","c":"GoogleImaAdEventType","l":"SKIPPABLE_STATE_CHANGED","url":"com/theoplayer/android/api/ads/ima/GoogleImaAdEventType.html#SKIPPABLE_STATE_CHANGED"}, {"p":"com.theoplayer.android.api.ads.ima","c":"GoogleImaAdEventType","l":"SKIPPED","url":"com/theoplayer/android/api/ads/ima/GoogleImaAdEventType.html#SKIPPED"}, {"p":"com.theoplayer.android.api.ads.ima","c":"GoogleImaAdEventType","l":"STARTED","url":"com/theoplayer/android/api/ads/ima/GoogleImaAdEventType.html#STARTED"}, {"p":"com.theoplayer.android.api.ads.ima","c":"GoogleImaAdEventType","l":"TAPPED","url":"com/theoplayer/android/api/ads/ima/GoogleImaAdEventType.html#TAPPED"}, {"p":"com.theoplayer.android.api.ads.ima","c":"GoogleImaAdEventType","l":"ICON_TAPPED","url":"com/theoplayer/android/api/ads/ima/GoogleImaAdEventType.html#ICON_TAPPED"}, {"p":"com.theoplayer.android.api.ads.ima","c":"GoogleImaAdEventType","l":"ICON_FALLBACK_IMAGE_CLOSED","url":"com/theoplayer/android/api/ads/ima/GoogleImaAdEventType.html#ICON_FALLBACK_IMAGE_CLOSED"}, {"p":"com.theoplayer.android.api.ads.ima","c":"GoogleImaAdEventType","l":"THIRD_QUARTILE","url":"com/theoplayer/android/api/ads/ima/GoogleImaAdEventType.html#THIRD_QUARTILE"}, {"p":"com.theoplayer.android.api.ads.ima","c":"GoogleImaAdEventType","l":"LOADED","url":"com/theoplayer/android/api/ads/ima/GoogleImaAdEventType.html#LOADED"}, {"p":"com.theoplayer.android.api.ads.ima","c":"GoogleImaAdEventType","l":"AD_PROGRESS","url":"com/theoplayer/android/api/ads/ima/GoogleImaAdEventType.html#AD_PROGRESS"}, {"p":"com.theoplayer.android.api.ads.ima","c":"GoogleImaAdEventType","l":"AD_BUFFERING","url":"com/theoplayer/android/api/ads/ima/GoogleImaAdEventType.html#AD_BUFFERING"}, {"p":"com.theoplayer.android.api.ads.ima","c":"GoogleImaAdEventType","l":"AD_BREAK_STARTED","url":"com/theoplayer/android/api/ads/ima/GoogleImaAdEventType.html#AD_BREAK_STARTED"}, {"p":"com.theoplayer.android.api.ads.ima","c":"GoogleImaAdEventType","l":"AD_BREAK_ENDED","url":"com/theoplayer/android/api/ads/ima/GoogleImaAdEventType.html#AD_BREAK_ENDED"}, {"p":"com.theoplayer.android.api.ads.ima","c":"GoogleImaAdEventType","l":"AD_PERIOD_STARTED","url":"com/theoplayer/android/api/ads/ima/GoogleImaAdEventType.html#AD_PERIOD_STARTED"}, {"p":"com.theoplayer.android.api.ads.ima","c":"GoogleImaAdEventType","l":"AD_PERIOD_ENDED","url":"com/theoplayer/android/api/ads/ima/GoogleImaAdEventType.html#AD_PERIOD_ENDED"}, {"p":"com.theoplayer.android.api.ads.ima","c":"GoogleImaAdEventType","l":"AD_ERROR","url":"com/theoplayer/android/api/ads/ima/GoogleImaAdEventType.html#AD_ERROR"}, {"p":"com.theoplayer.android.api.ads.mediatailor","c":"MediaTailorAdBreakEventType","l":"AD_BREAK_BEGIN","url":"com/theoplayer/android/api/ads/mediatailor/MediaTailorAdBreakEventType.html#AD_BREAK_BEGIN"}, {"p":"com.theoplayer.android.api.ads.mediatailor","c":"MediaTailorAdBreakEventType","l":"AD_BREAK_END","url":"com/theoplayer/android/api/ads/mediatailor/MediaTailorAdBreakEventType.html#AD_BREAK_END"}, {"p":"com.theoplayer.android.api.ads.mediatailor","c":"MediaTailorAdEventType","l":"AD_BEGIN","url":"com/theoplayer/android/api/ads/mediatailor/MediaTailorAdEventType.html#AD_BEGIN"}, {"p":"com.theoplayer.android.api.ads.mediatailor","c":"MediaTailorAdEventType","l":"AD_FIRST_QUARTILE","url":"com/theoplayer/android/api/ads/mediatailor/MediaTailorAdEventType.html#AD_FIRST_QUARTILE"}, {"p":"com.theoplayer.android.api.ads.mediatailor","c":"MediaTailorAdEventType","l":"AD_MIDPOINT","url":"com/theoplayer/android/api/ads/mediatailor/MediaTailorAdEventType.html#AD_MIDPOINT"}, {"p":"com.theoplayer.android.api.ads.mediatailor","c":"MediaTailorAdEventType","l":"AD_THIRD_QUARTILE","url":"com/theoplayer/android/api/ads/mediatailor/MediaTailorAdEventType.html#AD_THIRD_QUARTILE"}, {"p":"com.theoplayer.android.api.ads.mediatailor","c":"MediaTailorAdEventType","l":"AD_END","url":"com/theoplayer/android/api/ads/mediatailor/MediaTailorAdEventType.html#AD_END"}, {"p":"com.theoplayer.android.api.ads.mediatailor","c":"MediaTailorAdEventType","l":"AD_CLICK_THROUGH","url":"com/theoplayer/android/api/ads/mediatailor/MediaTailorAdEventType.html#AD_CLICK_THROUGH"}, {"p":"com.theoplayer.android.api.ads.mediatailor","c":"MediaTailorAdEventType","l":"AD_CLICK_TRACKING","url":"com/theoplayer/android/api/ads/mediatailor/MediaTailorAdEventType.html#AD_CLICK_TRACKING"}, {"p":"com.theoplayer.android.api.ads.theoads","c":"TheoAdsLayoutOverride","l":"SINGLE","url":"com/theoplayer/android/api/ads/theoads/TheoAdsLayoutOverride.html#SINGLE"}, {"p":"com.theoplayer.android.api.ads.theoads","c":"TheoAdsLayoutOverride","l":"LSHAPE","url":"com/theoplayer/android/api/ads/theoads/TheoAdsLayoutOverride.html#LSHAPE"}, {"p":"com.theoplayer.android.api.ads.theoads","c":"TheoAdsLayoutOverride","l":"DOUBLE","url":"com/theoplayer/android/api/ads/theoads/TheoAdsLayoutOverride.html#DOUBLE"}] diff --git a/theoplayer/static/theoplayer/v8/api-reference/android/package-list b/theoplayer/static/theoplayer/v8/api-reference/android/package-list index ab11f1cbbe4..e47a06e61ef 100644 --- a/theoplayer/static/theoplayer/v8/api-reference/android/package-list +++ b/theoplayer/static/theoplayer/v8/api-reference/android/package-list @@ -9,6 +9,7 @@ $dokka.location:com.theoplayer.android.api.cast/CastConfiguration.Builder///Poin $dokka.location:com.theoplayer.android.api.event.ads/AdsEventTypes.Identifiers///PointingToDeclaration/com/theoplayer/android/api/event/ads/AdsEventTypes.Identifiers.html $dokka.location:com.theoplayer.android.api.event.player/PlayerEventTypes.Identifiers///PointingToDeclaration/com/theoplayer/android/api/event/player/PlayerEventTypes.Identifiers.html $dokka.location:com.theoplayer.android.api.latency/LatencyConfiguration.Builder///PointingToDeclaration/com/theoplayer/android/api/latency/LatencyConfiguration.Builder.html +$dokka.location:com.theoplayer.android.api.media3/Media3PlayerIntegration.SourceSelectCallback///PointingToDeclaration/com/theoplayer/android/api/media3/Media3PlayerIntegration.SourceSelectCallback.html $dokka.location:com.theoplayer.android.api.pip/PipConfiguration.Builder///PointingToDeclaration/com/theoplayer/android/api/pip/PipConfiguration.Builder.html $dokka.location:com.theoplayer.android.api.player.track.texttrack.cue/DateRangeCue.CustomAttributes///PointingToDeclaration/com/theoplayer/android/api/player/track/texttrack/cue/DateRangeCue.CustomAttributes.html $dokka.location:com.theoplayer.android.api.player.track.texttrack/TextTrackStyle.EdgeType///PointingToDeclaration/com/theoplayer/android/api/player/track/texttrack/TextTrackStyle.EdgeType.html @@ -75,6 +76,7 @@ com.theoplayer.android.api.event.track.texttrack.texttrackcue com.theoplayer.android.api.event.track.tracklist com.theoplayer.android.api.fullscreen com.theoplayer.android.api.latency +com.theoplayer.android.api.media3 com.theoplayer.android.api.metrics com.theoplayer.android.api.network com.theoplayer.android.api.network.http diff --git a/theoplayer/static/theoplayer/v8/api-reference/android/package-search-index.js b/theoplayer/static/theoplayer/v8/api-reference/android/package-search-index.js index 481af306a41..62a1a0d5fd0 100644 --- a/theoplayer/static/theoplayer/v8/api-reference/android/package-search-index.js +++ b/theoplayer/static/theoplayer/v8/api-reference/android/package-search-index.js @@ -1 +1 @@ -var packageSearchIndex = [{"l":"com.theoplayer.android.api.cast","url":"com/theoplayer/android/api/cast/package-summary.html"}, {"l":"com.theoplayer.android.api.fullscreen","url":"com/theoplayer/android/api/fullscreen/package-summary.html"}, {"l":"com.theoplayer.android.api.pip","url":"com/theoplayer/android/api/pip/package-summary.html"}, {"l":"com.theoplayer.android.api.event.cache.task","url":"com/theoplayer/android/api/event/cache/task/package-summary.html"}, {"l":"com.theoplayer.android.api.event.cache","url":"com/theoplayer/android/api/event/cache/package-summary.html"}, {"l":"com.theoplayer.android.api.event.cache.tasklist","url":"com/theoplayer/android/api/event/cache/tasklist/package-summary.html"}, {"l":"com.theoplayer.android.api.event.chromecast","url":"com/theoplayer/android/api/event/chromecast/package-summary.html"}, {"l":"com.theoplayer.android.api","url":"com/theoplayer/android/api/package-summary.html"}, {"l":"com.theoplayer.android.api.util","url":"com/theoplayer/android/api/util/package-summary.html"}, {"l":"com.theoplayer.android.api.cast.chromecast","url":"com/theoplayer/android/api/cast/chromecast/package-summary.html"}, {"l":"com.theoplayer.android.api.ads","url":"com/theoplayer/android/api/ads/package-summary.html"}, {"l":"com.theoplayer.android.api.source","url":"com/theoplayer/android/api/source/package-summary.html"}, {"l":"com.theoplayer.android.api.source.mediatailor","url":"com/theoplayer/android/api/source/mediatailor/package-summary.html"}, {"l":"com.theoplayer.android.api.source.metadata","url":"com/theoplayer/android/api/source/metadata/package-summary.html"}, {"l":"com.theoplayer.android.api.settings","url":"com/theoplayer/android/api/settings/package-summary.html"}, {"l":"com.theoplayer.android.api.cache","url":"com/theoplayer/android/api/cache/package-summary.html"}, {"l":"com.theoplayer.android.api.player","url":"com/theoplayer/android/api/player/package-summary.html"}, {"l":"com.theoplayer.android.api.player.track","url":"com/theoplayer/android/api/player/track/package-summary.html"}, {"l":"com.theoplayer.android.api.player.track.texttrack","url":"com/theoplayer/android/api/player/track/texttrack/package-summary.html"}, {"l":"com.theoplayer.android.api.player.track.texttrack.cue","url":"com/theoplayer/android/api/player/track/texttrack/cue/package-summary.html"}, {"l":"com.theoplayer.android.api.player.track.mediatrack","url":"com/theoplayer/android/api/player/track/mediatrack/package-summary.html"}, {"l":"com.theoplayer.android.api.player.track.mediatrack.quality","url":"com/theoplayer/android/api/player/track/mediatrack/quality/package-summary.html"}, {"l":"com.theoplayer.android.api.abr","url":"com/theoplayer/android/api/abr/package-summary.html"}, {"l":"com.theoplayer.android.api.event","url":"com/theoplayer/android/api/event/package-summary.html"}, {"l":"com.theoplayer.android.api.event.player","url":"com/theoplayer/android/api/event/player/package-summary.html"}, {"l":"com.theoplayer.android.api.event.track.texttrack","url":"com/theoplayer/android/api/event/track/texttrack/package-summary.html"}, {"l":"com.theoplayer.android.api.event.track.texttrack.list","url":"com/theoplayer/android/api/event/track/texttrack/list/package-summary.html"}, {"l":"com.theoplayer.android.api.event.track.texttrack.texttrackcue","url":"com/theoplayer/android/api/event/track/texttrack/texttrackcue/package-summary.html"}, {"l":"com.theoplayer.android.api.event.track","url":"com/theoplayer/android/api/event/track/package-summary.html"}, {"l":"com.theoplayer.android.api.event.track.tracklist","url":"com/theoplayer/android/api/event/track/tracklist/package-summary.html"}, {"l":"com.theoplayer.android.api.event.track.mediatrack.video","url":"com/theoplayer/android/api/event/track/mediatrack/video/package-summary.html"}, {"l":"com.theoplayer.android.api.event.track.mediatrack.video.list","url":"com/theoplayer/android/api/event/track/mediatrack/video/list/package-summary.html"}, {"l":"com.theoplayer.android.api.event.track.mediatrack.audio","url":"com/theoplayer/android/api/event/track/mediatrack/audio/package-summary.html"}, {"l":"com.theoplayer.android.api.event.track.mediatrack.audio.list","url":"com/theoplayer/android/api/event/track/mediatrack/audio/list/package-summary.html"}, {"l":"com.theoplayer.android.api.event.track.mediatrack","url":"com/theoplayer/android/api/event/track/mediatrack/package-summary.html"}, {"l":"com.theoplayer.android.api.event.track.mediatrack.quality","url":"com/theoplayer/android/api/event/track/mediatrack/quality/package-summary.html"}, {"l":"com.theoplayer.android.api.event.ads","url":"com/theoplayer/android/api/event/ads/package-summary.html"}, {"l":"com.theoplayer.android.api.error","url":"com/theoplayer/android/api/error/package-summary.html"}, {"l":"com.theoplayer.android.api.contentprotection","url":"com/theoplayer/android/api/contentprotection/package-summary.html"}, {"l":"com.theoplayer.android.api.source.addescription","url":"com/theoplayer/android/api/source/addescription/package-summary.html"}, {"l":"com.theoplayer.android.api.source.dash","url":"com/theoplayer/android/api/source/dash/package-summary.html"}, {"l":"com.theoplayer.android.api.source.drm","url":"com/theoplayer/android/api/source/drm/package-summary.html"}, {"l":"com.theoplayer.android.api.source.drm.preintegration","url":"com/theoplayer/android/api/source/drm/preintegration/package-summary.html"}, {"l":"com.theoplayer.android.api.source.ssai","url":"com/theoplayer/android/api/source/ssai/package-summary.html"}, {"l":"com.theoplayer.android.api.source.ssai.dai","url":"com/theoplayer/android/api/source/ssai/dai/package-summary.html"}, {"l":"com.theoplayer.android.api.source.hls","url":"com/theoplayer/android/api/source/hls/package-summary.html"}, {"l":"com.theoplayer.android.api.metrics","url":"com/theoplayer/android/api/metrics/package-summary.html"}, {"l":"com.theoplayer.android.api.timerange","url":"com/theoplayer/android/api/timerange/package-summary.html"}, {"l":"com.theoplayer.android.api.latency","url":"com/theoplayer/android/api/latency/package-summary.html"}, {"l":"com.theoplayer.android.api.network","url":"com/theoplayer/android/api/network/package-summary.html"}, {"l":"com.theoplayer.android.api.network.http","url":"com/theoplayer/android/api/network/http/package-summary.html"}, {"l":"com.theoplayer.android.api.ads.ima","url":"com/theoplayer/android/api/ads/ima/package-summary.html"}, {"l":"com.theoplayer.android.api.ads.mediatailor","url":"com/theoplayer/android/api/ads/mediatailor/package-summary.html"}, {"l":"com.theoplayer.android.api.ads.theoads","url":"com/theoplayer/android/api/ads/theoads/package-summary.html"}, {"l":"com.theoplayer.android.api.ads.dai","url":"com/theoplayer/android/api/ads/dai/package-summary.html"}, {"l":"All packages","url":"index.html"}] +var packageSearchIndex = [{"l":"com.theoplayer.android.api.cast","url":"com/theoplayer/android/api/cast/package-summary.html"}, {"l":"com.theoplayer.android.api.media3","url":"com/theoplayer/android/api/media3/package-summary.html"}, {"l":"com.theoplayer.android.api.fullscreen","url":"com/theoplayer/android/api/fullscreen/package-summary.html"}, {"l":"com.theoplayer.android.api.pip","url":"com/theoplayer/android/api/pip/package-summary.html"}, {"l":"com.theoplayer.android.api.event.cache.task","url":"com/theoplayer/android/api/event/cache/task/package-summary.html"}, {"l":"com.theoplayer.android.api.event.cache","url":"com/theoplayer/android/api/event/cache/package-summary.html"}, {"l":"com.theoplayer.android.api.event.cache.tasklist","url":"com/theoplayer/android/api/event/cache/tasklist/package-summary.html"}, {"l":"com.theoplayer.android.api.event.chromecast","url":"com/theoplayer/android/api/event/chromecast/package-summary.html"}, {"l":"com.theoplayer.android.api","url":"com/theoplayer/android/api/package-summary.html"}, {"l":"com.theoplayer.android.api.util","url":"com/theoplayer/android/api/util/package-summary.html"}, {"l":"com.theoplayer.android.api.cast.chromecast","url":"com/theoplayer/android/api/cast/chromecast/package-summary.html"}, {"l":"com.theoplayer.android.api.ads","url":"com/theoplayer/android/api/ads/package-summary.html"}, {"l":"com.theoplayer.android.api.source","url":"com/theoplayer/android/api/source/package-summary.html"}, {"l":"com.theoplayer.android.api.source.mediatailor","url":"com/theoplayer/android/api/source/mediatailor/package-summary.html"}, {"l":"com.theoplayer.android.api.source.metadata","url":"com/theoplayer/android/api/source/metadata/package-summary.html"}, {"l":"com.theoplayer.android.api.settings","url":"com/theoplayer/android/api/settings/package-summary.html"}, {"l":"com.theoplayer.android.api.cache","url":"com/theoplayer/android/api/cache/package-summary.html"}, {"l":"com.theoplayer.android.api.player","url":"com/theoplayer/android/api/player/package-summary.html"}, {"l":"com.theoplayer.android.api.player.track","url":"com/theoplayer/android/api/player/track/package-summary.html"}, {"l":"com.theoplayer.android.api.player.track.texttrack","url":"com/theoplayer/android/api/player/track/texttrack/package-summary.html"}, {"l":"com.theoplayer.android.api.player.track.texttrack.cue","url":"com/theoplayer/android/api/player/track/texttrack/cue/package-summary.html"}, {"l":"com.theoplayer.android.api.player.track.mediatrack","url":"com/theoplayer/android/api/player/track/mediatrack/package-summary.html"}, {"l":"com.theoplayer.android.api.player.track.mediatrack.quality","url":"com/theoplayer/android/api/player/track/mediatrack/quality/package-summary.html"}, {"l":"com.theoplayer.android.api.abr","url":"com/theoplayer/android/api/abr/package-summary.html"}, {"l":"com.theoplayer.android.api.event","url":"com/theoplayer/android/api/event/package-summary.html"}, {"l":"com.theoplayer.android.api.event.player","url":"com/theoplayer/android/api/event/player/package-summary.html"}, {"l":"com.theoplayer.android.api.event.track.texttrack","url":"com/theoplayer/android/api/event/track/texttrack/package-summary.html"}, {"l":"com.theoplayer.android.api.event.track.texttrack.list","url":"com/theoplayer/android/api/event/track/texttrack/list/package-summary.html"}, {"l":"com.theoplayer.android.api.event.track.texttrack.texttrackcue","url":"com/theoplayer/android/api/event/track/texttrack/texttrackcue/package-summary.html"}, {"l":"com.theoplayer.android.api.event.track","url":"com/theoplayer/android/api/event/track/package-summary.html"}, {"l":"com.theoplayer.android.api.event.track.tracklist","url":"com/theoplayer/android/api/event/track/tracklist/package-summary.html"}, {"l":"com.theoplayer.android.api.event.track.mediatrack.video","url":"com/theoplayer/android/api/event/track/mediatrack/video/package-summary.html"}, {"l":"com.theoplayer.android.api.event.track.mediatrack.video.list","url":"com/theoplayer/android/api/event/track/mediatrack/video/list/package-summary.html"}, {"l":"com.theoplayer.android.api.event.track.mediatrack.audio","url":"com/theoplayer/android/api/event/track/mediatrack/audio/package-summary.html"}, {"l":"com.theoplayer.android.api.event.track.mediatrack.audio.list","url":"com/theoplayer/android/api/event/track/mediatrack/audio/list/package-summary.html"}, {"l":"com.theoplayer.android.api.event.track.mediatrack","url":"com/theoplayer/android/api/event/track/mediatrack/package-summary.html"}, {"l":"com.theoplayer.android.api.event.track.mediatrack.quality","url":"com/theoplayer/android/api/event/track/mediatrack/quality/package-summary.html"}, {"l":"com.theoplayer.android.api.event.ads","url":"com/theoplayer/android/api/event/ads/package-summary.html"}, {"l":"com.theoplayer.android.api.error","url":"com/theoplayer/android/api/error/package-summary.html"}, {"l":"com.theoplayer.android.api.contentprotection","url":"com/theoplayer/android/api/contentprotection/package-summary.html"}, {"l":"com.theoplayer.android.api.source.addescription","url":"com/theoplayer/android/api/source/addescription/package-summary.html"}, {"l":"com.theoplayer.android.api.source.dash","url":"com/theoplayer/android/api/source/dash/package-summary.html"}, {"l":"com.theoplayer.android.api.source.drm","url":"com/theoplayer/android/api/source/drm/package-summary.html"}, {"l":"com.theoplayer.android.api.source.drm.preintegration","url":"com/theoplayer/android/api/source/drm/preintegration/package-summary.html"}, {"l":"com.theoplayer.android.api.source.ssai","url":"com/theoplayer/android/api/source/ssai/package-summary.html"}, {"l":"com.theoplayer.android.api.source.ssai.dai","url":"com/theoplayer/android/api/source/ssai/dai/package-summary.html"}, {"l":"com.theoplayer.android.api.source.hls","url":"com/theoplayer/android/api/source/hls/package-summary.html"}, {"l":"com.theoplayer.android.api.metrics","url":"com/theoplayer/android/api/metrics/package-summary.html"}, {"l":"com.theoplayer.android.api.timerange","url":"com/theoplayer/android/api/timerange/package-summary.html"}, {"l":"com.theoplayer.android.api.latency","url":"com/theoplayer/android/api/latency/package-summary.html"}, {"l":"com.theoplayer.android.api.network","url":"com/theoplayer/android/api/network/package-summary.html"}, {"l":"com.theoplayer.android.api.network.http","url":"com/theoplayer/android/api/network/http/package-summary.html"}, {"l":"com.theoplayer.android.api.ads.ima","url":"com/theoplayer/android/api/ads/ima/package-summary.html"}, {"l":"com.theoplayer.android.api.ads.mediatailor","url":"com/theoplayer/android/api/ads/mediatailor/package-summary.html"}, {"l":"com.theoplayer.android.api.ads.theoads","url":"com/theoplayer/android/api/ads/theoads/package-summary.html"}, {"l":"com.theoplayer.android.api.ads.dai","url":"com/theoplayer/android/api/ads/dai/package-summary.html"}, {"l":"All packages","url":"index.html"}] diff --git a/theoplayer/static/theoplayer/v8/api-reference/android/type-search-index.js b/theoplayer/static/theoplayer/v8/api-reference/android/type-search-index.js index 4a9126f42b2..cab4319403c 100644 --- a/theoplayer/static/theoplayer/v8/api-reference/android/type-search-index.js +++ b/theoplayer/static/theoplayer/v8/api-reference/android/type-search-index.js @@ -1 +1 @@ -var typeSearchIndex = [{"p":"com.theoplayer.android.api.cast","l":"CastConfiguration.Builder","url":"com/theoplayer/android/api/cast/CastConfiguration.Builder.html"}, {"p":"com.theoplayer.android.api.cast","l":"CastConfiguration","url":"com/theoplayer/android/api/cast/CastConfiguration.html"}, {"p":"com.theoplayer.android.api.cast","l":"CastIntegration","url":"com/theoplayer/android/api/cast/CastIntegration.html"}, {"p":"com.theoplayer.android.api.cast","l":"CastIntegrationFactory","url":"com/theoplayer/android/api/cast/CastIntegrationFactory.html"}, {"p":"com.theoplayer.android.api.cast","l":"Cast","url":"com/theoplayer/android/api/cast/Cast.html"}, {"p":"com.theoplayer.android.api.cast","l":"GlobalCast","url":"com/theoplayer/android/api/cast/GlobalCast.html"}, {"p":"com.theoplayer.android.api.cast","l":"CastStrategy","url":"com/theoplayer/android/api/cast/CastStrategy.html"}, {"p":"com.theoplayer.android.api.fullscreen","l":"IntentCreationListener","url":"com/theoplayer/android/api/fullscreen/IntentCreationListener.html"}, {"p":"com.theoplayer.android.api.fullscreen","l":"FullScreenActivity","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html"}, {"p":"com.theoplayer.android.api.fullscreen","l":"FullScreenManager","url":"com/theoplayer/android/api/fullscreen/FullScreenManager.html"}, {"p":"com.theoplayer.android.api.fullscreen","l":"ScreenOrientation","url":"com/theoplayer/android/api/fullscreen/ScreenOrientation.html"}, {"p":"com.theoplayer.android.api.fullscreen","l":"FullScreenChangeListener","url":"com/theoplayer/android/api/fullscreen/FullScreenChangeListener.html"}, {"p":"com.theoplayer.android.api.pip","l":"PiPManager","url":"com/theoplayer/android/api/pip/PiPManager.html"}, {"p":"com.theoplayer.android.api.pip","l":"PiPType","url":"com/theoplayer/android/api/pip/PiPType.html"}, {"p":"com.theoplayer.android.api.pip","l":"PipConfiguration.Builder","url":"com/theoplayer/android/api/pip/PipConfiguration.Builder.html"}, {"p":"com.theoplayer.android.api.pip","l":"PipConfiguration","url":"com/theoplayer/android/api/pip/PipConfiguration.html"}, {"p":"com.theoplayer.android.api.event.cache.task","l":"CachingTaskEventTypes","url":"com/theoplayer/android/api/event/cache/task/CachingTaskEventTypes.html"}, {"p":"com.theoplayer.android.api.event.cache.task","l":"CachingTaskErrorEvent","url":"com/theoplayer/android/api/event/cache/task/CachingTaskErrorEvent.html"}, {"p":"com.theoplayer.android.api.event.cache.task","l":"CachingTaskStateChangeEvent","url":"com/theoplayer/android/api/event/cache/task/CachingTaskStateChangeEvent.html"}, {"p":"com.theoplayer.android.api.event.cache.task","l":"CachingTaskProgressEvent","url":"com/theoplayer/android/api/event/cache/task/CachingTaskProgressEvent.html"}, {"p":"com.theoplayer.android.api.event.cache.task","l":"CachingTaskEvent","url":"com/theoplayer/android/api/event/cache/task/CachingTaskEvent.html"}, {"p":"com.theoplayer.android.api.event.cache","l":"CacheEventTypes","url":"com/theoplayer/android/api/event/cache/CacheEventTypes.html"}, {"p":"com.theoplayer.android.api.event.cache","l":"CacheStateChangeEvent","url":"com/theoplayer/android/api/event/cache/CacheStateChangeEvent.html"}, {"p":"com.theoplayer.android.api.event.cache","l":"CacheEvent","url":"com/theoplayer/android/api/event/cache/CacheEvent.html"}, {"p":"com.theoplayer.android.api.event.cache.tasklist","l":"CachingTaskListEventTypes","url":"com/theoplayer/android/api/event/cache/tasklist/CachingTaskListEventTypes.html"}, {"p":"com.theoplayer.android.api.event.cache.tasklist","l":"AddTaskEvent","url":"com/theoplayer/android/api/event/cache/tasklist/AddTaskEvent.html"}, {"p":"com.theoplayer.android.api.event.cache.tasklist","l":"RemoveTaskEvent","url":"com/theoplayer/android/api/event/cache/tasklist/RemoveTaskEvent.html"}, {"p":"com.theoplayer.android.api.event.cache.tasklist","l":"CachingTaskListEvent","url":"com/theoplayer/android/api/event/cache/tasklist/CachingTaskListEvent.html"}, {"p":"com.theoplayer.android.api.event.chromecast","l":"CastStateChangeEvent","url":"com/theoplayer/android/api/event/chromecast/CastStateChangeEvent.html"}, {"p":"com.theoplayer.android.api.event.chromecast","l":"ChromecastEvent","url":"com/theoplayer/android/api/event/chromecast/ChromecastEvent.html"}, {"p":"com.theoplayer.android.api.event.chromecast","l":"ChromecastEventTypes","url":"com/theoplayer/android/api/event/chromecast/ChromecastEventTypes.html"}, {"p":"com.theoplayer.android.api.event.chromecast","l":"CastErrorEvent","url":"com/theoplayer/android/api/event/chromecast/CastErrorEvent.html"}, {"p":"com.theoplayer.android.api","l":"THEOplayerView","url":"com/theoplayer/android/api/THEOplayerView.html"}, {"p":"com.theoplayer.android.api","l":"THEOplayerSettings","url":"com/theoplayer/android/api/THEOplayerSettings.html"}, {"p":"com.theoplayer.android.api","l":"THEOplayerGlobal","url":"com/theoplayer/android/api/THEOplayerGlobal.html"}, {"p":"com.theoplayer.android.api","l":"THEOplayerDestroyedException","url":"com/theoplayer/android/api/THEOplayerDestroyedException.html"}, {"p":"com.theoplayer.android.api","l":"THEOplayerConfig.Builder","url":"com/theoplayer/android/api/THEOplayerConfig.Builder.html"}, {"p":"com.theoplayer.android.api","l":"THEOplayerConfig","url":"com/theoplayer/android/api/THEOplayerConfig.html"}, {"p":"com.theoplayer.android.api","l":"IntegrationType","url":"com/theoplayer/android/api/IntegrationType.html"}, {"p":"com.theoplayer.android.api","l":"Integration","url":"com/theoplayer/android/api/Integration.html"}, {"p":"com.theoplayer.android.api.util","l":"CollectionUtils","url":"com/theoplayer/android/api/util/CollectionUtils.html"}, {"p":"com.theoplayer.android.api.util","l":"SimpleList","url":"com/theoplayer/android/api/util/SimpleList.html"}, {"p":"com.theoplayer.android.api.util","l":"JavaCallback","url":"com/theoplayer/android/api/util/JavaCallback.html"}, {"p":"com.theoplayer.android.api.cast.chromecast","l":"ErrorCode","url":"com/theoplayer/android/api/cast/chromecast/ErrorCode.html"}, {"p":"com.theoplayer.android.api.cast.chromecast","l":"DefaultCastOptionsProvider","url":"com/theoplayer/android/api/cast/chromecast/DefaultCastOptionsProvider.html"}, {"p":"com.theoplayer.android.api.cast.chromecast","l":"Chromecast","url":"com/theoplayer/android/api/cast/chromecast/Chromecast.html"}, {"p":"com.theoplayer.android.api.cast.chromecast","l":"CastError","url":"com/theoplayer/android/api/cast/chromecast/CastError.html"}, {"p":"com.theoplayer.android.api.cast.chromecast","l":"PlayerCastState","url":"com/theoplayer/android/api/cast/chromecast/PlayerCastState.html"}, {"p":"com.theoplayer.android.api.cast.chromecast","l":"ChromecastConnectionCallback","url":"com/theoplayer/android/api/cast/chromecast/ChromecastConnectionCallback.html"}, {"p":"com.theoplayer.android.api.cast.chromecast","l":"GlobalChromecast","url":"com/theoplayer/android/api/cast/chromecast/GlobalChromecast.html"}, {"p":"com.theoplayer.android.api.ads","l":"GoogleImaAd","url":"com/theoplayer/android/api/ads/GoogleImaAd.html"}, {"p":"com.theoplayer.android.api.ads","l":"Ad","url":"com/theoplayer/android/api/ads/Ad.html"}, {"p":"com.theoplayer.android.api.ads","l":"LinearAd","url":"com/theoplayer/android/api/ads/LinearAd.html"}, {"p":"com.theoplayer.android.api.ads","l":"OmidFriendlyObstructionPurpose","url":"com/theoplayer/android/api/ads/OmidFriendlyObstructionPurpose.html"}, {"p":"com.theoplayer.android.api.ads","l":"AdBreak","url":"com/theoplayer/android/api/ads/AdBreak.html"}, {"p":"com.theoplayer.android.api.ads","l":"Omid","url":"com/theoplayer/android/api/ads/Omid.html"}, {"p":"com.theoplayer.android.api.ads","l":"Ads","url":"com/theoplayer/android/api/ads/Ads.html"}, {"p":"com.theoplayer.android.api.ads","l":"UniversalAdId","url":"com/theoplayer/android/api/ads/UniversalAdId.html"}, {"p":"com.theoplayer.android.api.ads","l":"NonLinearAd","url":"com/theoplayer/android/api/ads/NonLinearAd.html"}, {"p":"com.theoplayer.android.api.ads","l":"CompanionAd","url":"com/theoplayer/android/api/ads/CompanionAd.html"}, {"p":"com.theoplayer.android.api.ads","l":"OmidFriendlyObstruction","url":"com/theoplayer/android/api/ads/OmidFriendlyObstruction.html"}, {"p":"com.theoplayer.android.api.ads","l":"MediaFile.Builder","url":"com/theoplayer/android/api/ads/MediaFile.Builder.html"}, {"p":"com.theoplayer.android.api.ads","l":"MediaFile","url":"com/theoplayer/android/api/ads/MediaFile.html"}, {"p":"com.theoplayer.android.api.ads","l":"ServerSideAdIntegrationHandler","url":"com/theoplayer/android/api/ads/ServerSideAdIntegrationHandler.html"}, {"p":"com.theoplayer.android.api.ads","l":"ServerSideAdIntegrationController","url":"com/theoplayer/android/api/ads/ServerSideAdIntegrationController.html"}, {"p":"com.theoplayer.android.api.ads","l":"AdInit","url":"com/theoplayer/android/api/ads/AdInit.html"}, {"p":"com.theoplayer.android.api.ads","l":"AdBreakInit","url":"com/theoplayer/android/api/ads/AdBreakInit.html"}, {"p":"com.theoplayer.android.api.ads","l":"ServerSideAdIntegrationFactory","url":"com/theoplayer/android/api/ads/ServerSideAdIntegrationFactory.html"}, {"p":"com.theoplayer.android.api.source","l":"GoogleDaiTypedSource.Builder","url":"com/theoplayer/android/api/source/GoogleDaiTypedSource.Builder.html"}, {"p":"com.theoplayer.android.api.source","l":"GoogleDaiTypedSource","url":"com/theoplayer/android/api/source/GoogleDaiTypedSource.html"}, {"p":"com.theoplayer.android.api.source","l":"AdIntegration","url":"com/theoplayer/android/api/source/AdIntegration.html"}, {"p":"com.theoplayer.android.api.source","l":"SourceDescription.Builder","url":"com/theoplayer/android/api/source/SourceDescription.Builder.html"}, {"p":"com.theoplayer.android.api.source","l":"SourceDescription","url":"com/theoplayer/android/api/source/SourceDescription.html"}, {"p":"com.theoplayer.android.api.source","l":"TypedSource.Builder","url":"com/theoplayer/android/api/source/TypedSource.Builder.html"}, {"p":"com.theoplayer.android.api.source","l":"TypedSource","url":"com/theoplayer/android/api/source/TypedSource.html"}, {"p":"com.theoplayer.android.api.source","l":"TextTrackDescription.Builder","url":"com/theoplayer/android/api/source/TextTrackDescription.Builder.html"}, {"p":"com.theoplayer.android.api.source","l":"TextTrackDescription","url":"com/theoplayer/android/api/source/TextTrackDescription.html"}, {"p":"com.theoplayer.android.api.source","l":"SourceType","url":"com/theoplayer/android/api/source/SourceType.html"}, {"p":"com.theoplayer.android.api.source.mediatailor","l":"MediaTailorSource.Builder","url":"com/theoplayer/android/api/source/mediatailor/MediaTailorSource.Builder.html"}, {"p":"com.theoplayer.android.api.source.mediatailor","l":"MediaTailorSource","url":"com/theoplayer/android/api/source/mediatailor/MediaTailorSource.html"}, {"p":"com.theoplayer.android.api.source.metadata","l":"ChromecastMetadataImage","url":"com/theoplayer/android/api/source/metadata/ChromecastMetadataImage.html"}, {"p":"com.theoplayer.android.api.source.metadata","l":"ChromecastMetadataType","url":"com/theoplayer/android/api/source/metadata/ChromecastMetadataType.html"}, {"p":"com.theoplayer.android.api.source.metadata","l":"ChromecastMetadataDescription.Builder","url":"com/theoplayer/android/api/source/metadata/ChromecastMetadataDescription.Builder.html"}, {"p":"com.theoplayer.android.api.source.metadata","l":"ChromecastMetadataDescription","url":"com/theoplayer/android/api/source/metadata/ChromecastMetadataDescription.html"}, {"p":"com.theoplayer.android.api.source.metadata","l":"MetadataDescription","url":"com/theoplayer/android/api/source/metadata/MetadataDescription.html"}, {"p":"com.theoplayer.android.api.settings","l":"SslSettings","url":"com/theoplayer/android/api/settings/SslSettings.html"}, {"p":"com.theoplayer.android.api.settings","l":"PlaybackSettings","url":"com/theoplayer/android/api/settings/PlaybackSettings.html"}, {"p":"com.theoplayer.android.api.settings","l":"DecoderType","url":"com/theoplayer/android/api/settings/DecoderType.html"}, {"p":"com.theoplayer.android.api.settings","l":"DecoderSelectionHelper","url":"com/theoplayer/android/api/settings/DecoderSelectionHelper.html"}, {"p":"com.theoplayer.android.api.cache","l":"CachingTaskProgress","url":"com/theoplayer/android/api/cache/CachingTaskProgress.html"}, {"p":"com.theoplayer.android.api.cache","l":"CacheStatus","url":"com/theoplayer/android/api/cache/CacheStatus.html"}, {"p":"com.theoplayer.android.api.cache","l":"CachingParameters.Builder","url":"com/theoplayer/android/api/cache/CachingParameters.Builder.html"}, {"p":"com.theoplayer.android.api.cache","l":"CachingParameters","url":"com/theoplayer/android/api/cache/CachingParameters.html"}, {"p":"com.theoplayer.android.api.cache","l":"CachingTaskStatus","url":"com/theoplayer/android/api/cache/CachingTaskStatus.html"}, {"p":"com.theoplayer.android.api.cache","l":"CachingTask","url":"com/theoplayer/android/api/cache/CachingTask.html"}, {"p":"com.theoplayer.android.api.cache","l":"CachingTaskList","url":"com/theoplayer/android/api/cache/CachingTaskList.html"}, {"p":"com.theoplayer.android.api.cache","l":"CachingTaskLicense","url":"com/theoplayer/android/api/cache/CachingTaskLicense.html"}, {"p":"com.theoplayer.android.api.cache","l":"CachingPreferredTrackSelection.Builder","url":"com/theoplayer/android/api/cache/CachingPreferredTrackSelection.Builder.html"}, {"p":"com.theoplayer.android.api.cache","l":"CachingPreferredTrackSelection","url":"com/theoplayer/android/api/cache/CachingPreferredTrackSelection.html"}, {"p":"com.theoplayer.android.api.cache","l":"CachingTaskError","url":"com/theoplayer/android/api/cache/CachingTaskError.html"}, {"p":"com.theoplayer.android.api.cache","l":"Cache","url":"com/theoplayer/android/api/cache/Cache.html"}, {"p":"com.theoplayer.android.api.cache","l":"CacheNotificationsBuilder","url":"com/theoplayer/android/api/cache/CacheNotificationsBuilder.html"}, {"p":"com.theoplayer.android.api.cache","l":"NoChangeBuilder","url":"com/theoplayer/android/api/cache/NoChangeBuilder.html"}, {"p":"com.theoplayer.android.api.player","l":"AspectRatio","url":"com/theoplayer/android/api/player/AspectRatio.html"}, {"p":"com.theoplayer.android.api.player","l":"RenderingTarget","url":"com/theoplayer/android/api/player/RenderingTarget.html"}, {"p":"com.theoplayer.android.api.player","l":"PresentationMode","url":"com/theoplayer/android/api/player/PresentationMode.html"}, {"p":"com.theoplayer.android.api.player","l":"PreloadType","url":"com/theoplayer/android/api/player/PreloadType.html"}, {"p":"com.theoplayer.android.api.player","l":"ReadyState","url":"com/theoplayer/android/api/player/ReadyState.html"}, {"p":"com.theoplayer.android.api.player","l":"NetworkConfiguration.Builder","url":"com/theoplayer/android/api/player/NetworkConfiguration.Builder.html"}, {"p":"com.theoplayer.android.api.player","l":"NetworkConfiguration","url":"com/theoplayer/android/api/player/NetworkConfiguration.html"}, {"p":"com.theoplayer.android.api.player","l":"Player","url":"com/theoplayer/android/api/player/Player.html"}, {"p":"com.theoplayer.android.api.player.track","l":"TrackList","url":"com/theoplayer/android/api/player/track/TrackList.html"}, {"p":"com.theoplayer.android.api.player.track","l":"Track","url":"com/theoplayer/android/api/player/track/Track.html"}, {"p":"com.theoplayer.android.api.player.track.texttrack","l":"TextTrackType","url":"com/theoplayer/android/api/player/track/texttrack/TextTrackType.html"}, {"p":"com.theoplayer.android.api.player.track.texttrack","l":"TextTrackList","url":"com/theoplayer/android/api/player/track/texttrack/TextTrackList.html"}, {"p":"com.theoplayer.android.api.player.track.texttrack","l":"TextTrackStyle.EdgeType","url":"com/theoplayer/android/api/player/track/texttrack/TextTrackStyle.EdgeType.html"}, {"p":"com.theoplayer.android.api.player.track.texttrack","l":"TextTrackStyle.FontStyle","url":"com/theoplayer/android/api/player/track/texttrack/TextTrackStyle.FontStyle.html"}, {"p":"com.theoplayer.android.api.player.track.texttrack","l":"TextTrackStyle.FontFamily","url":"com/theoplayer/android/api/player/track/texttrack/TextTrackStyle.FontFamily.html"}, {"p":"com.theoplayer.android.api.player.track.texttrack","l":"TextTrackStyle","url":"com/theoplayer/android/api/player/track/texttrack/TextTrackStyle.html"}, {"p":"com.theoplayer.android.api.player.track.texttrack","l":"TextTrackMode","url":"com/theoplayer/android/api/player/track/texttrack/TextTrackMode.html"}, {"p":"com.theoplayer.android.api.player.track.texttrack","l":"TextTrack","url":"com/theoplayer/android/api/player/track/texttrack/TextTrack.html"}, {"p":"com.theoplayer.android.api.player.track.texttrack","l":"TextTrackReadyState","url":"com/theoplayer/android/api/player/track/texttrack/TextTrackReadyState.html"}, {"p":"com.theoplayer.android.api.player.track.texttrack","l":"TextTrackKind","url":"com/theoplayer/android/api/player/track/texttrack/TextTrackKind.html"}, {"p":"com.theoplayer.android.api.player.track.texttrack.cue","l":"TextTrackCueList","url":"com/theoplayer/android/api/player/track/texttrack/cue/TextTrackCueList.html"}, {"p":"com.theoplayer.android.api.player.track.texttrack.cue","l":"TextTrackCue","url":"com/theoplayer/android/api/player/track/texttrack/cue/TextTrackCue.html"}, {"p":"com.theoplayer.android.api.player.track.texttrack.cue","l":"DateRangeCue.CustomAttributes","url":"com/theoplayer/android/api/player/track/texttrack/cue/DateRangeCue.CustomAttributes.html"}, {"p":"com.theoplayer.android.api.player.track.texttrack.cue","l":"DateRangeCue","url":"com/theoplayer/android/api/player/track/texttrack/cue/DateRangeCue.html"}, {"p":"com.theoplayer.android.api.player.track.mediatrack","l":"MediaTrack","url":"com/theoplayer/android/api/player/track/mediatrack/MediaTrack.html"}, {"p":"com.theoplayer.android.api.player.track.mediatrack","l":"MediaTrackList","url":"com/theoplayer/android/api/player/track/mediatrack/MediaTrackList.html"}, {"p":"com.theoplayer.android.api.player.track.mediatrack.quality","l":"Quality","url":"com/theoplayer/android/api/player/track/mediatrack/quality/Quality.html"}, {"p":"com.theoplayer.android.api.player.track.mediatrack.quality","l":"VideoQuality","url":"com/theoplayer/android/api/player/track/mediatrack/quality/VideoQuality.html"}, {"p":"com.theoplayer.android.api.player.track.mediatrack.quality","l":"AudioQuality","url":"com/theoplayer/android/api/player/track/mediatrack/quality/AudioQuality.html"}, {"p":"com.theoplayer.android.api.player.track.mediatrack.quality","l":"QualityList","url":"com/theoplayer/android/api/player/track/mediatrack/quality/QualityList.html"}, {"p":"com.theoplayer.android.api.abr","l":"AbrStrategyConfiguration.Builder","url":"com/theoplayer/android/api/abr/AbrStrategyConfiguration.Builder.html"}, {"p":"com.theoplayer.android.api.abr","l":"AbrStrategyConfiguration","url":"com/theoplayer/android/api/abr/AbrStrategyConfiguration.html"}, {"p":"com.theoplayer.android.api.abr","l":"Abr","url":"com/theoplayer/android/api/abr/Abr.html"}, {"p":"com.theoplayer.android.api.abr","l":"AbrStrategyType","url":"com/theoplayer/android/api/abr/AbrStrategyType.html"}, {"p":"com.theoplayer.android.api.abr","l":"AbrStrategyMetadata.Builder","url":"com/theoplayer/android/api/abr/AbrStrategyMetadata.Builder.html"}, {"p":"com.theoplayer.android.api.abr","l":"AbrStrategyMetadata","url":"com/theoplayer/android/api/abr/AbrStrategyMetadata.html"}, {"p":"com.theoplayer.android.api.event","l":"Event","url":"com/theoplayer/android/api/event/Event.html"}, {"p":"com.theoplayer.android.api.event","l":"EventDispatcher","url":"com/theoplayer/android/api/event/EventDispatcher.html"}, {"p":"com.theoplayer.android.api.event","l":"EventListener","url":"com/theoplayer/android/api/event/EventListener.html"}, {"p":"com.theoplayer.android.api.event","l":"EventType","url":"com/theoplayer/android/api/event/EventType.html"}, {"p":"com.theoplayer.android.api.event.player","l":"SeekedEvent","url":"com/theoplayer/android/api/event/player/SeekedEvent.html"}, {"p":"com.theoplayer.android.api.event.player","l":"PlayEvent","url":"com/theoplayer/android/api/event/player/PlayEvent.html"}, {"p":"com.theoplayer.android.api.event.player","l":"ContentProtectionErrorEvent","url":"com/theoplayer/android/api/event/player/ContentProtectionErrorEvent.html"}, {"p":"com.theoplayer.android.api.event.player","l":"SegmentNotFoundEvent","url":"com/theoplayer/android/api/event/player/SegmentNotFoundEvent.html"}, {"p":"com.theoplayer.android.api.event.player","l":"PlayerEvent","url":"com/theoplayer/android/api/event/player/PlayerEvent.html"}, {"p":"com.theoplayer.android.api.event.player","l":"WaitingEvent","url":"com/theoplayer/android/api/event/player/WaitingEvent.html"}, {"p":"com.theoplayer.android.api.event.player","l":"MediaEncryptedEvent","url":"com/theoplayer/android/api/event/player/MediaEncryptedEvent.html"}, {"p":"com.theoplayer.android.api.event.player","l":"PresentationModeChange","url":"com/theoplayer/android/api/event/player/PresentationModeChange.html"}, {"p":"com.theoplayer.android.api.event.player","l":"LoadedDataEvent","url":"com/theoplayer/android/api/event/player/LoadedDataEvent.html"}, {"p":"com.theoplayer.android.api.event.player","l":"TimeUpdateEvent","url":"com/theoplayer/android/api/event/player/TimeUpdateEvent.html"}, {"p":"com.theoplayer.android.api.event.player","l":"SeekingEvent","url":"com/theoplayer/android/api/event/player/SeekingEvent.html"}, {"p":"com.theoplayer.android.api.event.player","l":"ErrorEvent","url":"com/theoplayer/android/api/event/player/ErrorEvent.html"}, {"p":"com.theoplayer.android.api.event.player","l":"ReadyStateChangeEvent","url":"com/theoplayer/android/api/event/player/ReadyStateChangeEvent.html"}, {"p":"com.theoplayer.android.api.event.player","l":"RateChangeEvent","url":"com/theoplayer/android/api/event/player/RateChangeEvent.html"}, {"p":"com.theoplayer.android.api.event.player","l":"CanPlayEvent","url":"com/theoplayer/android/api/event/player/CanPlayEvent.html"}, {"p":"com.theoplayer.android.api.event.player","l":"PlayerEventTypes.Identifiers","url":"com/theoplayer/android/api/event/player/PlayerEventTypes.Identifiers.html"}, {"p":"com.theoplayer.android.api.event.player","l":"PlayerEventTypes","url":"com/theoplayer/android/api/event/player/PlayerEventTypes.html"}, {"p":"com.theoplayer.android.api.event.player","l":"PauseEvent","url":"com/theoplayer/android/api/event/player/PauseEvent.html"}, {"p":"com.theoplayer.android.api.event.player","l":"LoadStartEvent","url":"com/theoplayer/android/api/event/player/LoadStartEvent.html"}, {"p":"com.theoplayer.android.api.event.player","l":"ResizeEvent","url":"com/theoplayer/android/api/event/player/ResizeEvent.html"}, {"p":"com.theoplayer.android.api.event.player","l":"PlayingEvent","url":"com/theoplayer/android/api/event/player/PlayingEvent.html"}, {"p":"com.theoplayer.android.api.event.player","l":"LoadedMetadataEvent","url":"com/theoplayer/android/api/event/player/LoadedMetadataEvent.html"}, {"p":"com.theoplayer.android.api.event.player","l":"DurationChangeEvent","url":"com/theoplayer/android/api/event/player/DurationChangeEvent.html"}, {"p":"com.theoplayer.android.api.event.player","l":"DestroyEvent","url":"com/theoplayer/android/api/event/player/DestroyEvent.html"}, {"p":"com.theoplayer.android.api.event.player","l":"ContentProtectionSuccessEvent","url":"com/theoplayer/android/api/event/player/ContentProtectionSuccessEvent.html"}, {"p":"com.theoplayer.android.api.event.player","l":"VolumeChangeEvent","url":"com/theoplayer/android/api/event/player/VolumeChangeEvent.html"}, {"p":"com.theoplayer.android.api.event.player","l":"ProgressEvent","url":"com/theoplayer/android/api/event/player/ProgressEvent.html"}, {"p":"com.theoplayer.android.api.event.player","l":"CanPlayThroughEvent","url":"com/theoplayer/android/api/event/player/CanPlayThroughEvent.html"}, {"p":"com.theoplayer.android.api.event.player","l":"NoSupportedRepresentationFoundEvent","url":"com/theoplayer/android/api/event/player/NoSupportedRepresentationFoundEvent.html"}, {"p":"com.theoplayer.android.api.event.player","l":"EndedEvent","url":"com/theoplayer/android/api/event/player/EndedEvent.html"}, {"p":"com.theoplayer.android.api.event.player","l":"SourceChangeEvent","url":"com/theoplayer/android/api/event/player/SourceChangeEvent.html"}, {"p":"com.theoplayer.android.api.event.track.texttrack","l":"ChangeEvent","url":"com/theoplayer/android/api/event/track/texttrack/ChangeEvent.html"}, {"p":"com.theoplayer.android.api.event.track.texttrack","l":"TextTrackEventTypes","url":"com/theoplayer/android/api/event/track/texttrack/TextTrackEventTypes.html"}, {"p":"com.theoplayer.android.api.event.track.texttrack","l":"EnterCueEvent","url":"com/theoplayer/android/api/event/track/texttrack/EnterCueEvent.html"}, {"p":"com.theoplayer.android.api.event.track.texttrack","l":"ExitCueEvent","url":"com/theoplayer/android/api/event/track/texttrack/ExitCueEvent.html"}, {"p":"com.theoplayer.android.api.event.track.texttrack","l":"RemoveCueEvent","url":"com/theoplayer/android/api/event/track/texttrack/RemoveCueEvent.html"}, {"p":"com.theoplayer.android.api.event.track.texttrack","l":"AddCueEvent","url":"com/theoplayer/android/api/event/track/texttrack/AddCueEvent.html"}, {"p":"com.theoplayer.android.api.event.track.texttrack","l":"CueChangeEvent","url":"com/theoplayer/android/api/event/track/texttrack/CueChangeEvent.html"}, {"p":"com.theoplayer.android.api.event.track.texttrack","l":"UpdateCueEvent","url":"com/theoplayer/android/api/event/track/texttrack/UpdateCueEvent.html"}, {"p":"com.theoplayer.android.api.event.track.texttrack.list","l":"TrackListChangeEvent","url":"com/theoplayer/android/api/event/track/texttrack/list/TrackListChangeEvent.html"}, {"p":"com.theoplayer.android.api.event.track.texttrack.list","l":"AddTrackEvent","url":"com/theoplayer/android/api/event/track/texttrack/list/AddTrackEvent.html"}, {"p":"com.theoplayer.android.api.event.track.texttrack.list","l":"TextTrackListEventTypes","url":"com/theoplayer/android/api/event/track/texttrack/list/TextTrackListEventTypes.html"}, {"p":"com.theoplayer.android.api.event.track.texttrack.list","l":"RemoveTrackEvent","url":"com/theoplayer/android/api/event/track/texttrack/list/RemoveTrackEvent.html"}, {"p":"com.theoplayer.android.api.event.track.texttrack.texttrackcue","l":"ExitEvent","url":"com/theoplayer/android/api/event/track/texttrack/texttrackcue/ExitEvent.html"}, {"p":"com.theoplayer.android.api.event.track.texttrack.texttrackcue","l":"TextTrackCueEvent","url":"com/theoplayer/android/api/event/track/texttrack/texttrackcue/TextTrackCueEvent.html"}, {"p":"com.theoplayer.android.api.event.track.texttrack.texttrackcue","l":"EnterEvent","url":"com/theoplayer/android/api/event/track/texttrack/texttrackcue/EnterEvent.html"}, {"p":"com.theoplayer.android.api.event.track.texttrack.texttrackcue","l":"UpdateEvent","url":"com/theoplayer/android/api/event/track/texttrack/texttrackcue/UpdateEvent.html"}, {"p":"com.theoplayer.android.api.event.track.texttrack.texttrackcue","l":"TextTrackCueEventTypes","url":"com/theoplayer/android/api/event/track/texttrack/texttrackcue/TextTrackCueEventTypes.html"}, {"p":"com.theoplayer.android.api.event.track","l":"TrackEvent","url":"com/theoplayer/android/api/event/track/TrackEvent.html"}, {"p":"com.theoplayer.android.api.event.track.tracklist","l":"TrackListEvent","url":"com/theoplayer/android/api/event/track/tracklist/TrackListEvent.html"}, {"p":"com.theoplayer.android.api.event.track.mediatrack.video","l":"TargetQualityChangedEvent","url":"com/theoplayer/android/api/event/track/mediatrack/video/TargetQualityChangedEvent.html"}, {"p":"com.theoplayer.android.api.event.track.mediatrack.video","l":"VideoTrackEventTypes","url":"com/theoplayer/android/api/event/track/mediatrack/video/VideoTrackEventTypes.html"}, {"p":"com.theoplayer.android.api.event.track.mediatrack.video","l":"ActiveQualityChangedEvent","url":"com/theoplayer/android/api/event/track/mediatrack/video/ActiveQualityChangedEvent.html"}, {"p":"com.theoplayer.android.api.event.track.mediatrack.video.list","l":"TrackListChangeEvent","url":"com/theoplayer/android/api/event/track/mediatrack/video/list/TrackListChangeEvent.html"}, {"p":"com.theoplayer.android.api.event.track.mediatrack.video.list","l":"AddTrackEvent","url":"com/theoplayer/android/api/event/track/mediatrack/video/list/AddTrackEvent.html"}, {"p":"com.theoplayer.android.api.event.track.mediatrack.video.list","l":"VideoTrackListEventTypes","url":"com/theoplayer/android/api/event/track/mediatrack/video/list/VideoTrackListEventTypes.html"}, {"p":"com.theoplayer.android.api.event.track.mediatrack.video.list","l":"RemoveTrackEvent","url":"com/theoplayer/android/api/event/track/mediatrack/video/list/RemoveTrackEvent.html"}, {"p":"com.theoplayer.android.api.event.track.mediatrack.audio","l":"TargetQualityChangedEvent","url":"com/theoplayer/android/api/event/track/mediatrack/audio/TargetQualityChangedEvent.html"}, {"p":"com.theoplayer.android.api.event.track.mediatrack.audio","l":"AudioTrackEventTypes","url":"com/theoplayer/android/api/event/track/mediatrack/audio/AudioTrackEventTypes.html"}, {"p":"com.theoplayer.android.api.event.track.mediatrack.audio","l":"QualityChangedEvent","url":"com/theoplayer/android/api/event/track/mediatrack/audio/QualityChangedEvent.html"}, {"p":"com.theoplayer.android.api.event.track.mediatrack.audio","l":"ActiveQualityChangedEvent","url":"com/theoplayer/android/api/event/track/mediatrack/audio/ActiveQualityChangedEvent.html"}, {"p":"com.theoplayer.android.api.event.track.mediatrack.audio.list","l":"TrackListChangeEvent","url":"com/theoplayer/android/api/event/track/mediatrack/audio/list/TrackListChangeEvent.html"}, {"p":"com.theoplayer.android.api.event.track.mediatrack.audio.list","l":"AddTrackEvent","url":"com/theoplayer/android/api/event/track/mediatrack/audio/list/AddTrackEvent.html"}, {"p":"com.theoplayer.android.api.event.track.mediatrack.audio.list","l":"AudioTrackListEventTypes","url":"com/theoplayer/android/api/event/track/mediatrack/audio/list/AudioTrackListEventTypes.html"}, {"p":"com.theoplayer.android.api.event.track.mediatrack.audio.list","l":"RemoveTrackEvent","url":"com/theoplayer/android/api/event/track/mediatrack/audio/list/RemoveTrackEvent.html"}, {"p":"com.theoplayer.android.api.event.track.mediatrack","l":"AbstractTargetQualityChangedEvent","url":"com/theoplayer/android/api/event/track/mediatrack/AbstractTargetQualityChangedEvent.html"}, {"p":"com.theoplayer.android.api.event.track.mediatrack.quality","l":"QualityUpdateEvent","url":"com/theoplayer/android/api/event/track/mediatrack/quality/QualityUpdateEvent.html"}, {"p":"com.theoplayer.android.api.event.track.mediatrack.quality","l":"QualityEventTypes","url":"com/theoplayer/android/api/event/track/mediatrack/quality/QualityEventTypes.html"}, {"p":"com.theoplayer.android.api.event.track.mediatrack.quality","l":"QualityEvent","url":"com/theoplayer/android/api/event/track/mediatrack/quality/QualityEvent.html"}, {"p":"com.theoplayer.android.api.event.ads","l":"AdIntegrationKind","url":"com/theoplayer/android/api/event/ads/AdIntegrationKind.html"}, {"p":"com.theoplayer.android.api.event.ads","l":"AdBreakEndEvent","url":"com/theoplayer/android/api/event/ads/AdBreakEndEvent.html"}, {"p":"com.theoplayer.android.api.event.ads","l":"AdMidpointEvent","url":"com/theoplayer/android/api/event/ads/AdMidpointEvent.html"}, {"p":"com.theoplayer.android.api.event.ads","l":"AdErrorEvent","url":"com/theoplayer/android/api/event/ads/AdErrorEvent.html"}, {"p":"com.theoplayer.android.api.event.ads","l":"AdBeginEvent","url":"com/theoplayer/android/api/event/ads/AdBeginEvent.html"}, {"p":"com.theoplayer.android.api.event.ads","l":"AddAdEvent","url":"com/theoplayer/android/api/event/ads/AddAdEvent.html"}, {"p":"com.theoplayer.android.api.event.ads","l":"AdThirdQuartileEvent","url":"com/theoplayer/android/api/event/ads/AdThirdQuartileEvent.html"}, {"p":"com.theoplayer.android.api.event.ads","l":"AdFirstQuartileEvent","url":"com/theoplayer/android/api/event/ads/AdFirstQuartileEvent.html"}, {"p":"com.theoplayer.android.api.event.ads","l":"AdImpressionEvent","url":"com/theoplayer/android/api/event/ads/AdImpressionEvent.html"}, {"p":"com.theoplayer.android.api.event.ads","l":"AdSkipEvent","url":"com/theoplayer/android/api/event/ads/AdSkipEvent.html"}, {"p":"com.theoplayer.android.api.event.ads","l":"RemoveAdBreakEvent","url":"com/theoplayer/android/api/event/ads/RemoveAdBreakEvent.html"}, {"p":"com.theoplayer.android.api.event.ads","l":"AddAdBreakEvent","url":"com/theoplayer/android/api/event/ads/AddAdBreakEvent.html"}, {"p":"com.theoplayer.android.api.event.ads","l":"AdEndEvent","url":"com/theoplayer/android/api/event/ads/AdEndEvent.html"}, {"p":"com.theoplayer.android.api.event.ads","l":"AdLoadedEvent","url":"com/theoplayer/android/api/event/ads/AdLoadedEvent.html"}, {"p":"com.theoplayer.android.api.event.ads","l":"SingleAdEvent","url":"com/theoplayer/android/api/event/ads/SingleAdEvent.html"}, {"p":"com.theoplayer.android.api.event.ads","l":"AdsEventTypes.Identifiers","url":"com/theoplayer/android/api/event/ads/AdsEventTypes.Identifiers.html"}, {"p":"com.theoplayer.android.api.event.ads","l":"AdsEventTypes","url":"com/theoplayer/android/api/event/ads/AdsEventTypes.html"}, {"p":"com.theoplayer.android.api.event.ads","l":"AdBreakBeginEvent","url":"com/theoplayer/android/api/event/ads/AdBreakBeginEvent.html"}, {"p":"com.theoplayer.android.api.event.ads","l":"AdBreakEvent","url":"com/theoplayer/android/api/event/ads/AdBreakEvent.html"}, {"p":"com.theoplayer.android.api.event.ads","l":"AdEvent","url":"com/theoplayer/android/api/event/ads/AdEvent.html"}, {"p":"com.theoplayer.android.api.event.ads","l":"AdBreakChangeEvent","url":"com/theoplayer/android/api/event/ads/AdBreakChangeEvent.html"}, {"p":"com.theoplayer.android.api.error","l":"ErrorCode","url":"com/theoplayer/android/api/error/ErrorCode.html"}, {"p":"com.theoplayer.android.api.error","l":"ContentProtectionException","url":"com/theoplayer/android/api/error/ContentProtectionException.html"}, {"p":"com.theoplayer.android.api.error","l":"ErrorCategory","url":"com/theoplayer/android/api/error/ErrorCategory.html"}, {"p":"com.theoplayer.android.api.error","l":"THEOplayerException","url":"com/theoplayer/android/api/error/THEOplayerException.html"}, {"p":"com.theoplayer.android.api.contentprotection","l":"RequestMethod","url":"com/theoplayer/android/api/contentprotection/RequestMethod.html"}, {"p":"com.theoplayer.android.api.contentprotection","l":"LicenseRequestCallback","url":"com/theoplayer/android/api/contentprotection/LicenseRequestCallback.html"}, {"p":"com.theoplayer.android.api.contentprotection","l":"ContentProtectionIntegration","url":"com/theoplayer/android/api/contentprotection/ContentProtectionIntegration.html"}, {"p":"com.theoplayer.android.api.contentprotection","l":"LicenseResponseCallback","url":"com/theoplayer/android/api/contentprotection/LicenseResponseCallback.html"}, {"p":"com.theoplayer.android.api.contentprotection","l":"ContentProtectionIntegrationFactory","url":"com/theoplayer/android/api/contentprotection/ContentProtectionIntegrationFactory.html"}, {"p":"com.theoplayer.android.api.contentprotection","l":"Request","url":"com/theoplayer/android/api/contentprotection/Request.html"}, {"p":"com.theoplayer.android.api.contentprotection","l":"CertificateRequestCallback","url":"com/theoplayer/android/api/contentprotection/CertificateRequestCallback.html"}, {"p":"com.theoplayer.android.api.contentprotection","l":"KeySystemId","url":"com/theoplayer/android/api/contentprotection/KeySystemId.html"}, {"p":"com.theoplayer.android.api.contentprotection","l":"Response","url":"com/theoplayer/android/api/contentprotection/Response.html"}, {"p":"com.theoplayer.android.api.contentprotection","l":"CertificateResponseCallback","url":"com/theoplayer/android/api/contentprotection/CertificateResponseCallback.html"}, {"p":"com.theoplayer.android.api.source.addescription","l":"GoogleImaAdDescription.Builder","url":"com/theoplayer/android/api/source/addescription/GoogleImaAdDescription.Builder.html"}, {"p":"com.theoplayer.android.api.source.addescription","l":"GoogleImaAdDescription","url":"com/theoplayer/android/api/source/addescription/GoogleImaAdDescription.html"}, {"p":"com.theoplayer.android.api.source.addescription","l":"AdDescription","url":"com/theoplayer/android/api/source/addescription/AdDescription.html"}, {"p":"com.theoplayer.android.api.source.dash","l":"DashPlaybackConfiguration.Builder","url":"com/theoplayer/android/api/source/dash/DashPlaybackConfiguration.Builder.html"}, {"p":"com.theoplayer.android.api.source.dash","l":"DashPlaybackConfiguration","url":"com/theoplayer/android/api/source/dash/DashPlaybackConfiguration.html"}, {"p":"com.theoplayer.android.api.source.drm","l":"LicenseType","url":"com/theoplayer/android/api/source/drm/LicenseType.html"}, {"p":"com.theoplayer.android.api.source.drm","l":"KeySystemConfiguration.Builder","url":"com/theoplayer/android/api/source/drm/KeySystemConfiguration.Builder.html"}, {"p":"com.theoplayer.android.api.source.drm","l":"KeySystemConfiguration","url":"com/theoplayer/android/api/source/drm/KeySystemConfiguration.html"}, {"p":"com.theoplayer.android.api.source.drm","l":"ClearkeyKeySystemConfiguration.ClearkeyDecryptionKey","url":"com/theoplayer/android/api/source/drm/ClearkeyKeySystemConfiguration.ClearkeyDecryptionKey.html"}, {"p":"com.theoplayer.android.api.source.drm","l":"ClearkeyKeySystemConfiguration.Builder","url":"com/theoplayer/android/api/source/drm/ClearkeyKeySystemConfiguration.Builder.html"}, {"p":"com.theoplayer.android.api.source.drm","l":"ClearkeyKeySystemConfiguration","url":"com/theoplayer/android/api/source/drm/ClearkeyKeySystemConfiguration.html"}, {"p":"com.theoplayer.android.api.source.drm","l":"DRMConfiguration.Builder","url":"com/theoplayer/android/api/source/drm/DRMConfiguration.Builder.html"}, {"p":"com.theoplayer.android.api.source.drm","l":"DRMConfiguration","url":"com/theoplayer/android/api/source/drm/DRMConfiguration.html"}, {"p":"com.theoplayer.android.api.source.drm","l":"DRMIntegrationId","url":"com/theoplayer/android/api/source/drm/DRMIntegrationId.html"}, {"p":"com.theoplayer.android.api.source.drm","l":"FairPlayKeySystemConfiguration.Builder","url":"com/theoplayer/android/api/source/drm/FairPlayKeySystemConfiguration.Builder.html"}, {"p":"com.theoplayer.android.api.source.drm","l":"FairPlayKeySystemConfiguration","url":"com/theoplayer/android/api/source/drm/FairPlayKeySystemConfiguration.html"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","l":"DRMPreIntegrationConfiguration","url":"com/theoplayer/android/api/source/drm/preintegration/DRMPreIntegrationConfiguration.html"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","l":"VudrmDRMConfiguration.Builder","url":"com/theoplayer/android/api/source/drm/preintegration/VudrmDRMConfiguration.Builder.html"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","l":"VudrmDRMConfiguration","url":"com/theoplayer/android/api/source/drm/preintegration/VudrmDRMConfiguration.html"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","l":"KeyOSDRMConfiguration.Builder","url":"com/theoplayer/android/api/source/drm/preintegration/KeyOSDRMConfiguration.Builder.html"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","l":"KeyOSDRMConfiguration","url":"com/theoplayer/android/api/source/drm/preintegration/KeyOSDRMConfiguration.html"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","l":"ConaxDRMConfiguration.Builder","url":"com/theoplayer/android/api/source/drm/preintegration/ConaxDRMConfiguration.Builder.html"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","l":"ConaxDRMConfiguration","url":"com/theoplayer/android/api/source/drm/preintegration/ConaxDRMConfiguration.html"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","l":"KeyOSKeySystemConfiguration.Builder","url":"com/theoplayer/android/api/source/drm/preintegration/KeyOSKeySystemConfiguration.Builder.html"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","l":"KeyOSKeySystemConfiguration","url":"com/theoplayer/android/api/source/drm/preintegration/KeyOSKeySystemConfiguration.html"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","l":"AxinomDRMConfiguration.Builder","url":"com/theoplayer/android/api/source/drm/preintegration/AxinomDRMConfiguration.Builder.html"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","l":"AxinomDRMConfiguration","url":"com/theoplayer/android/api/source/drm/preintegration/AxinomDRMConfiguration.html"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","l":"AzureDRMConfiguration.Builder","url":"com/theoplayer/android/api/source/drm/preintegration/AzureDRMConfiguration.Builder.html"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","l":"AzureDRMConfiguration","url":"com/theoplayer/android/api/source/drm/preintegration/AzureDRMConfiguration.html"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","l":"DRMTodayConfiguration.Builder","url":"com/theoplayer/android/api/source/drm/preintegration/DRMTodayConfiguration.Builder.html"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","l":"DRMTodayConfiguration","url":"com/theoplayer/android/api/source/drm/preintegration/DRMTodayConfiguration.html"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","l":"TitaniumDRMConfiguration.Builder","url":"com/theoplayer/android/api/source/drm/preintegration/TitaniumDRMConfiguration.Builder.html"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","l":"TitaniumDRMConfiguration","url":"com/theoplayer/android/api/source/drm/preintegration/TitaniumDRMConfiguration.html"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","l":"IrdetoConfiguration.Builder","url":"com/theoplayer/android/api/source/drm/preintegration/IrdetoConfiguration.Builder.html"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","l":"IrdetoConfiguration","url":"com/theoplayer/android/api/source/drm/preintegration/IrdetoConfiguration.html"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","l":"XstreamConfiguration.Builder","url":"com/theoplayer/android/api/source/drm/preintegration/XstreamConfiguration.Builder.html"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","l":"XstreamConfiguration","url":"com/theoplayer/android/api/source/drm/preintegration/XstreamConfiguration.html"}, {"p":"com.theoplayer.android.api.source.ssai","l":"StreamType","url":"com/theoplayer/android/api/source/ssai/StreamType.html"}, {"p":"com.theoplayer.android.api.source.ssai","l":"SsaiDescription","url":"com/theoplayer/android/api/source/ssai/SsaiDescription.html"}, {"p":"com.theoplayer.android.api.source.ssai","l":"GoogleDaiConfiguration.Builder","url":"com/theoplayer/android/api/source/ssai/GoogleDaiConfiguration.Builder.html"}, {"p":"com.theoplayer.android.api.source.ssai","l":"GoogleDaiConfiguration","url":"com/theoplayer/android/api/source/ssai/GoogleDaiConfiguration.html"}, {"p":"com.theoplayer.android.api.source.ssai","l":"SsaiIntegration","url":"com/theoplayer/android/api/source/ssai/SsaiIntegration.html"}, {"p":"com.theoplayer.android.api.source.ssai","l":"CustomSsaiDescription","url":"com/theoplayer/android/api/source/ssai/CustomSsaiDescription.html"}, {"p":"com.theoplayer.android.api.source.ssai","l":"CustomSsaiDescriptionSerializer","url":"com/theoplayer/android/api/source/ssai/CustomSsaiDescriptionSerializer.html"}, {"p":"com.theoplayer.android.api.source.ssai","l":"CustomSsaiDescriptionRegistry","url":"com/theoplayer/android/api/source/ssai/CustomSsaiDescriptionRegistry.html"}, {"p":"com.theoplayer.android.api.source.ssai.dai","l":"GoogleDaiLiveConfiguration.Builder","url":"com/theoplayer/android/api/source/ssai/dai/GoogleDaiLiveConfiguration.Builder.html"}, {"p":"com.theoplayer.android.api.source.ssai.dai","l":"GoogleDaiLiveConfiguration","url":"com/theoplayer/android/api/source/ssai/dai/GoogleDaiLiveConfiguration.html"}, {"p":"com.theoplayer.android.api.source.ssai.dai","l":"GoogleDaiVodConfiguration.Builder","url":"com/theoplayer/android/api/source/ssai/dai/GoogleDaiVodConfiguration.Builder.html"}, {"p":"com.theoplayer.android.api.source.ssai.dai","l":"GoogleDaiVodConfiguration","url":"com/theoplayer/android/api/source/ssai/dai/GoogleDaiVodConfiguration.html"}, {"p":"com.theoplayer.android.api.source.hls","l":"HlsPlaybackConfiguration.Builder","url":"com/theoplayer/android/api/source/hls/HlsPlaybackConfiguration.Builder.html"}, {"p":"com.theoplayer.android.api.source.hls","l":"HlsPlaybackConfiguration","url":"com/theoplayer/android/api/source/hls/HlsPlaybackConfiguration.html"}, {"p":"com.theoplayer.android.api.metrics","l":"Metrics","url":"com/theoplayer/android/api/metrics/Metrics.html"}, {"p":"com.theoplayer.android.api.metrics","l":"BufferedSegments","url":"com/theoplayer/android/api/metrics/BufferedSegments.html"}, {"p":"com.theoplayer.android.api.timerange","l":"TimeRange","url":"com/theoplayer/android/api/timerange/TimeRange.html"}, {"p":"com.theoplayer.android.api.timerange","l":"TimeRanges","url":"com/theoplayer/android/api/timerange/TimeRanges.html"}, {"p":"com.theoplayer.android.api.latency","l":"LatencyConfiguration.Builder","url":"com/theoplayer/android/api/latency/LatencyConfiguration.Builder.html"}, {"p":"com.theoplayer.android.api.latency","l":"LatencyConfiguration","url":"com/theoplayer/android/api/latency/LatencyConfiguration.html"}, {"p":"com.theoplayer.android.api.latency","l":"LatencyManager","url":"com/theoplayer/android/api/latency/LatencyManager.html"}, {"p":"com.theoplayer.android.api.network","l":"Network","url":"com/theoplayer/android/api/network/Network.html"}, {"p":"com.theoplayer.android.api.network.http","l":"HTTPInterceptor","url":"com/theoplayer/android/api/network/http/HTTPInterceptor.html"}, {"p":"com.theoplayer.android.api.network.http","l":"HTTPRequest","url":"com/theoplayer/android/api/network/http/HTTPRequest.html"}, {"p":"com.theoplayer.android.api.network.http","l":"InterceptableHTTPRequest","url":"com/theoplayer/android/api/network/http/InterceptableHTTPRequest.html"}, {"p":"com.theoplayer.android.api.network.http","l":"ChunkInterceptor","url":"com/theoplayer/android/api/network/http/ChunkInterceptor.html"}, {"p":"com.theoplayer.android.api.network.http","l":"BodyInterceptor","url":"com/theoplayer/android/api/network/http/BodyInterceptor.html"}, {"p":"com.theoplayer.android.api.network.http","l":"HTTPResponse","url":"com/theoplayer/android/api/network/http/HTTPResponse.html"}, {"p":"com.theoplayer.android.api.network.http","l":"CompleteHTTPResponse","url":"com/theoplayer/android/api/network/http/CompleteHTTPResponse.html"}, {"p":"com.theoplayer.android.api.network.http","l":"InterceptableHTTPResponse","url":"com/theoplayer/android/api/network/http/InterceptableHTTPResponse.html"}, {"p":"com.theoplayer.android.api.network.http","l":"JavaHTTPInterceptor","url":"com/theoplayer/android/api/network/http/JavaHTTPInterceptor.html"}, {"p":"com.theoplayer.android.api.network.http","l":"JavaChunkInterceptor","url":"com/theoplayer/android/api/network/http/JavaChunkInterceptor.html"}, {"p":"com.theoplayer.android.api.network.http","l":"JavaBodyInterceptor","url":"com/theoplayer/android/api/network/http/JavaBodyInterceptor.html"}, {"p":"com.theoplayer.android.api.network.http","l":"RequestType","url":"com/theoplayer/android/api/network/http/RequestType.html"}, {"p":"com.theoplayer.android.api.network.http","l":"RequestSubType","url":"com/theoplayer/android/api/network/http/RequestSubType.html"}, {"p":"com.theoplayer.android.api.network.http","l":"RequestMediaType","url":"com/theoplayer/android/api/network/http/RequestMediaType.html"}, {"p":"com.theoplayer.android.api.network.http","l":"ResponseType","url":"com/theoplayer/android/api/network/http/ResponseType.html"}, {"p":"com.theoplayer.android.api.ads.ima","l":"GoogleImaAdBreak","url":"com/theoplayer/android/api/ads/ima/GoogleImaAdBreak.html"}, {"p":"com.theoplayer.android.api.ads.ima","l":"GoogleImaAdErrorEvent","url":"com/theoplayer/android/api/ads/ima/GoogleImaAdErrorEvent.html"}, {"p":"com.theoplayer.android.api.ads.ima","l":"GoogleImaAdEvent","url":"com/theoplayer/android/api/ads/ima/GoogleImaAdEvent.html"}, {"p":"com.theoplayer.android.api.ads.ima","l":"GoogleImaAdEventType","url":"com/theoplayer/android/api/ads/ima/GoogleImaAdEventType.html"}, {"p":"com.theoplayer.android.api.ads.ima","l":"GoogleImaCompanionAd","url":"com/theoplayer/android/api/ads/ima/GoogleImaCompanionAd.html"}, {"p":"com.theoplayer.android.api.ads.ima","l":"GoogleImaIntegration","url":"com/theoplayer/android/api/ads/ima/GoogleImaIntegration.html"}, {"p":"com.theoplayer.android.api.ads.ima","l":"GoogleImaIntegrationFactory","url":"com/theoplayer/android/api/ads/ima/GoogleImaIntegrationFactory.html"}, {"p":"com.theoplayer.android.api.ads.ima","l":"GoogleImaUniversalAdId","url":"com/theoplayer/android/api/ads/ima/GoogleImaUniversalAdId.html"}, {"p":"com.theoplayer.android.api.ads.mediatailor","l":"MediaTailorAd","url":"com/theoplayer/android/api/ads/mediatailor/MediaTailorAd.html"}, {"p":"com.theoplayer.android.api.ads.mediatailor","l":"MediaTailorAdAvail","url":"com/theoplayer/android/api/ads/mediatailor/MediaTailorAdAvail.html"}, {"p":"com.theoplayer.android.api.ads.mediatailor","l":"MediaTailorAdBreakEvent","url":"com/theoplayer/android/api/ads/mediatailor/MediaTailorAdBreakEvent.html"}, {"p":"com.theoplayer.android.api.ads.mediatailor","l":"MediaTailorAdBreakEventType","url":"com/theoplayer/android/api/ads/mediatailor/MediaTailorAdBreakEventType.html"}, {"p":"com.theoplayer.android.api.ads.mediatailor","l":"MediaTailorAdEvent","url":"com/theoplayer/android/api/ads/mediatailor/MediaTailorAdEvent.html"}, {"p":"com.theoplayer.android.api.ads.mediatailor","l":"MediaTailorAdEventType","url":"com/theoplayer/android/api/ads/mediatailor/MediaTailorAdEventType.html"}, {"p":"com.theoplayer.android.api.ads.mediatailor","l":"MediaTailorIntegration","url":"com/theoplayer/android/api/ads/mediatailor/MediaTailorIntegration.html"}, {"p":"com.theoplayer.android.api.ads.mediatailor","l":"MediaTailorIntegrationFactory","url":"com/theoplayer/android/api/ads/mediatailor/MediaTailorIntegrationFactory.html"}, {"p":"com.theoplayer.android.api.ads.theoads","l":"TheoAdDescription","url":"com/theoplayer/android/api/ads/theoads/TheoAdDescription.html"}, {"p":"com.theoplayer.android.api.ads.theoads","l":"TheoAdsLayoutOverride","url":"com/theoplayer/android/api/ads/theoads/TheoAdsLayoutOverride.html"}, {"p":"com.theoplayer.android.api.ads.theoads","l":"TheoAdsIntegration","url":"com/theoplayer/android/api/ads/theoads/TheoAdsIntegration.html"}, {"p":"com.theoplayer.android.api.ads.theoads","l":"TheoAdsIntegrationFactory","url":"com/theoplayer/android/api/ads/theoads/TheoAdsIntegrationFactory.html"}, {"p":"com.theoplayer.android.api.ads.dai","l":"GoogleDaiIntegration","url":"com/theoplayer/android/api/ads/dai/GoogleDaiIntegration.html"}, {"p":"com.theoplayer.android.api.ads.dai","l":"GoogleDaiIntegrationFactory","url":"com/theoplayer/android/api/ads/dai/GoogleDaiIntegrationFactory.html"}, {"l":"All classes","url":"allclasses.html"}] +var typeSearchIndex = [{"p":"com.theoplayer.android.api.cast","l":"CastConfiguration.Builder","url":"com/theoplayer/android/api/cast/CastConfiguration.Builder.html"}, {"p":"com.theoplayer.android.api.cast","l":"CastConfiguration","url":"com/theoplayer/android/api/cast/CastConfiguration.html"}, {"p":"com.theoplayer.android.api.cast","l":"CastIntegration","url":"com/theoplayer/android/api/cast/CastIntegration.html"}, {"p":"com.theoplayer.android.api.cast","l":"CastIntegrationFactory","url":"com/theoplayer/android/api/cast/CastIntegrationFactory.html"}, {"p":"com.theoplayer.android.api.cast","l":"Cast","url":"com/theoplayer/android/api/cast/Cast.html"}, {"p":"com.theoplayer.android.api.cast","l":"GlobalCast","url":"com/theoplayer/android/api/cast/GlobalCast.html"}, {"p":"com.theoplayer.android.api.cast","l":"CastStrategy","url":"com/theoplayer/android/api/cast/CastStrategy.html"}, {"p":"com.theoplayer.android.api.media3","l":"Media3PlayerIntegration.SourceSelectCallback","url":"com/theoplayer/android/api/media3/Media3PlayerIntegration.SourceSelectCallback.html"}, {"p":"com.theoplayer.android.api.media3","l":"Media3PlayerIntegration","url":"com/theoplayer/android/api/media3/Media3PlayerIntegration.html"}, {"p":"com.theoplayer.android.api.media3","l":"Media3PlayerIntegrationFactory","url":"com/theoplayer/android/api/media3/Media3PlayerIntegrationFactory.html"}, {"p":"com.theoplayer.android.api.fullscreen","l":"IntentCreationListener","url":"com/theoplayer/android/api/fullscreen/IntentCreationListener.html"}, {"p":"com.theoplayer.android.api.fullscreen","l":"FullScreenActivity","url":"com/theoplayer/android/api/fullscreen/FullScreenActivity.html"}, {"p":"com.theoplayer.android.api.fullscreen","l":"FullScreenManager","url":"com/theoplayer/android/api/fullscreen/FullScreenManager.html"}, {"p":"com.theoplayer.android.api.fullscreen","l":"ScreenOrientation","url":"com/theoplayer/android/api/fullscreen/ScreenOrientation.html"}, {"p":"com.theoplayer.android.api.fullscreen","l":"FullScreenChangeListener","url":"com/theoplayer/android/api/fullscreen/FullScreenChangeListener.html"}, {"p":"com.theoplayer.android.api.pip","l":"PiPManager","url":"com/theoplayer/android/api/pip/PiPManager.html"}, {"p":"com.theoplayer.android.api.pip","l":"PiPType","url":"com/theoplayer/android/api/pip/PiPType.html"}, {"p":"com.theoplayer.android.api.pip","l":"PipConfiguration.Builder","url":"com/theoplayer/android/api/pip/PipConfiguration.Builder.html"}, {"p":"com.theoplayer.android.api.pip","l":"PipConfiguration","url":"com/theoplayer/android/api/pip/PipConfiguration.html"}, {"p":"com.theoplayer.android.api.event.cache.task","l":"CachingTaskEventTypes","url":"com/theoplayer/android/api/event/cache/task/CachingTaskEventTypes.html"}, {"p":"com.theoplayer.android.api.event.cache.task","l":"CachingTaskErrorEvent","url":"com/theoplayer/android/api/event/cache/task/CachingTaskErrorEvent.html"}, {"p":"com.theoplayer.android.api.event.cache.task","l":"CachingTaskStateChangeEvent","url":"com/theoplayer/android/api/event/cache/task/CachingTaskStateChangeEvent.html"}, {"p":"com.theoplayer.android.api.event.cache.task","l":"CachingTaskProgressEvent","url":"com/theoplayer/android/api/event/cache/task/CachingTaskProgressEvent.html"}, {"p":"com.theoplayer.android.api.event.cache.task","l":"CachingTaskEvent","url":"com/theoplayer/android/api/event/cache/task/CachingTaskEvent.html"}, {"p":"com.theoplayer.android.api.event.cache","l":"CacheEventTypes","url":"com/theoplayer/android/api/event/cache/CacheEventTypes.html"}, {"p":"com.theoplayer.android.api.event.cache","l":"CacheStateChangeEvent","url":"com/theoplayer/android/api/event/cache/CacheStateChangeEvent.html"}, {"p":"com.theoplayer.android.api.event.cache","l":"CacheEvent","url":"com/theoplayer/android/api/event/cache/CacheEvent.html"}, {"p":"com.theoplayer.android.api.event.cache.tasklist","l":"CachingTaskListEventTypes","url":"com/theoplayer/android/api/event/cache/tasklist/CachingTaskListEventTypes.html"}, {"p":"com.theoplayer.android.api.event.cache.tasklist","l":"AddTaskEvent","url":"com/theoplayer/android/api/event/cache/tasklist/AddTaskEvent.html"}, {"p":"com.theoplayer.android.api.event.cache.tasklist","l":"RemoveTaskEvent","url":"com/theoplayer/android/api/event/cache/tasklist/RemoveTaskEvent.html"}, {"p":"com.theoplayer.android.api.event.cache.tasklist","l":"CachingTaskListEvent","url":"com/theoplayer/android/api/event/cache/tasklist/CachingTaskListEvent.html"}, {"p":"com.theoplayer.android.api.event.chromecast","l":"CastStateChangeEvent","url":"com/theoplayer/android/api/event/chromecast/CastStateChangeEvent.html"}, {"p":"com.theoplayer.android.api.event.chromecast","l":"ChromecastEvent","url":"com/theoplayer/android/api/event/chromecast/ChromecastEvent.html"}, {"p":"com.theoplayer.android.api.event.chromecast","l":"ChromecastEventTypes","url":"com/theoplayer/android/api/event/chromecast/ChromecastEventTypes.html"}, {"p":"com.theoplayer.android.api.event.chromecast","l":"CastErrorEvent","url":"com/theoplayer/android/api/event/chromecast/CastErrorEvent.html"}, {"p":"com.theoplayer.android.api","l":"THEOplayerView","url":"com/theoplayer/android/api/THEOplayerView.html"}, {"p":"com.theoplayer.android.api","l":"THEOplayerSettings","url":"com/theoplayer/android/api/THEOplayerSettings.html"}, {"p":"com.theoplayer.android.api","l":"THEOplayerGlobal","url":"com/theoplayer/android/api/THEOplayerGlobal.html"}, {"p":"com.theoplayer.android.api","l":"THEOplayerDestroyedException","url":"com/theoplayer/android/api/THEOplayerDestroyedException.html"}, {"p":"com.theoplayer.android.api","l":"THEOplayerConfig.Builder","url":"com/theoplayer/android/api/THEOplayerConfig.Builder.html"}, {"p":"com.theoplayer.android.api","l":"THEOplayerConfig","url":"com/theoplayer/android/api/THEOplayerConfig.html"}, {"p":"com.theoplayer.android.api","l":"IntegrationType","url":"com/theoplayer/android/api/IntegrationType.html"}, {"p":"com.theoplayer.android.api","l":"Integration","url":"com/theoplayer/android/api/Integration.html"}, {"p":"com.theoplayer.android.api.util","l":"CollectionUtils","url":"com/theoplayer/android/api/util/CollectionUtils.html"}, {"p":"com.theoplayer.android.api.util","l":"SimpleList","url":"com/theoplayer/android/api/util/SimpleList.html"}, {"p":"com.theoplayer.android.api.util","l":"JavaCallback","url":"com/theoplayer/android/api/util/JavaCallback.html"}, {"p":"com.theoplayer.android.api.cast.chromecast","l":"ErrorCode","url":"com/theoplayer/android/api/cast/chromecast/ErrorCode.html"}, {"p":"com.theoplayer.android.api.cast.chromecast","l":"DefaultCastOptionsProvider","url":"com/theoplayer/android/api/cast/chromecast/DefaultCastOptionsProvider.html"}, {"p":"com.theoplayer.android.api.cast.chromecast","l":"Chromecast","url":"com/theoplayer/android/api/cast/chromecast/Chromecast.html"}, {"p":"com.theoplayer.android.api.cast.chromecast","l":"CastError","url":"com/theoplayer/android/api/cast/chromecast/CastError.html"}, {"p":"com.theoplayer.android.api.cast.chromecast","l":"PlayerCastState","url":"com/theoplayer/android/api/cast/chromecast/PlayerCastState.html"}, {"p":"com.theoplayer.android.api.cast.chromecast","l":"ChromecastConnectionCallback","url":"com/theoplayer/android/api/cast/chromecast/ChromecastConnectionCallback.html"}, {"p":"com.theoplayer.android.api.cast.chromecast","l":"GlobalChromecast","url":"com/theoplayer/android/api/cast/chromecast/GlobalChromecast.html"}, {"p":"com.theoplayer.android.api.ads","l":"GoogleImaAd","url":"com/theoplayer/android/api/ads/GoogleImaAd.html"}, {"p":"com.theoplayer.android.api.ads","l":"Ad","url":"com/theoplayer/android/api/ads/Ad.html"}, {"p":"com.theoplayer.android.api.ads","l":"LinearAd","url":"com/theoplayer/android/api/ads/LinearAd.html"}, {"p":"com.theoplayer.android.api.ads","l":"OmidFriendlyObstructionPurpose","url":"com/theoplayer/android/api/ads/OmidFriendlyObstructionPurpose.html"}, {"p":"com.theoplayer.android.api.ads","l":"AdBreak","url":"com/theoplayer/android/api/ads/AdBreak.html"}, {"p":"com.theoplayer.android.api.ads","l":"Omid","url":"com/theoplayer/android/api/ads/Omid.html"}, {"p":"com.theoplayer.android.api.ads","l":"Ads","url":"com/theoplayer/android/api/ads/Ads.html"}, {"p":"com.theoplayer.android.api.ads","l":"UniversalAdId","url":"com/theoplayer/android/api/ads/UniversalAdId.html"}, {"p":"com.theoplayer.android.api.ads","l":"NonLinearAd","url":"com/theoplayer/android/api/ads/NonLinearAd.html"}, {"p":"com.theoplayer.android.api.ads","l":"CompanionAd","url":"com/theoplayer/android/api/ads/CompanionAd.html"}, {"p":"com.theoplayer.android.api.ads","l":"OmidFriendlyObstruction","url":"com/theoplayer/android/api/ads/OmidFriendlyObstruction.html"}, {"p":"com.theoplayer.android.api.ads","l":"MediaFile.Builder","url":"com/theoplayer/android/api/ads/MediaFile.Builder.html"}, {"p":"com.theoplayer.android.api.ads","l":"MediaFile","url":"com/theoplayer/android/api/ads/MediaFile.html"}, {"p":"com.theoplayer.android.api.ads","l":"ServerSideAdIntegrationHandler","url":"com/theoplayer/android/api/ads/ServerSideAdIntegrationHandler.html"}, {"p":"com.theoplayer.android.api.ads","l":"ServerSideAdIntegrationController","url":"com/theoplayer/android/api/ads/ServerSideAdIntegrationController.html"}, {"p":"com.theoplayer.android.api.ads","l":"AdInit","url":"com/theoplayer/android/api/ads/AdInit.html"}, {"p":"com.theoplayer.android.api.ads","l":"AdBreakInit","url":"com/theoplayer/android/api/ads/AdBreakInit.html"}, {"p":"com.theoplayer.android.api.ads","l":"ServerSideAdIntegrationFactory","url":"com/theoplayer/android/api/ads/ServerSideAdIntegrationFactory.html"}, {"p":"com.theoplayer.android.api.source","l":"GoogleDaiTypedSource.Builder","url":"com/theoplayer/android/api/source/GoogleDaiTypedSource.Builder.html"}, {"p":"com.theoplayer.android.api.source","l":"GoogleDaiTypedSource","url":"com/theoplayer/android/api/source/GoogleDaiTypedSource.html"}, {"p":"com.theoplayer.android.api.source","l":"AdIntegration","url":"com/theoplayer/android/api/source/AdIntegration.html"}, {"p":"com.theoplayer.android.api.source","l":"SourceDescription.Builder","url":"com/theoplayer/android/api/source/SourceDescription.Builder.html"}, {"p":"com.theoplayer.android.api.source","l":"SourceDescription","url":"com/theoplayer/android/api/source/SourceDescription.html"}, {"p":"com.theoplayer.android.api.source","l":"TypedSource.Builder","url":"com/theoplayer/android/api/source/TypedSource.Builder.html"}, {"p":"com.theoplayer.android.api.source","l":"TypedSource","url":"com/theoplayer/android/api/source/TypedSource.html"}, {"p":"com.theoplayer.android.api.source","l":"TextTrackDescription.Builder","url":"com/theoplayer/android/api/source/TextTrackDescription.Builder.html"}, {"p":"com.theoplayer.android.api.source","l":"TextTrackDescription","url":"com/theoplayer/android/api/source/TextTrackDescription.html"}, {"p":"com.theoplayer.android.api.source","l":"SourceType","url":"com/theoplayer/android/api/source/SourceType.html"}, {"p":"com.theoplayer.android.api.source.mediatailor","l":"MediaTailorSource.Builder","url":"com/theoplayer/android/api/source/mediatailor/MediaTailorSource.Builder.html"}, {"p":"com.theoplayer.android.api.source.mediatailor","l":"MediaTailorSource","url":"com/theoplayer/android/api/source/mediatailor/MediaTailorSource.html"}, {"p":"com.theoplayer.android.api.source.metadata","l":"ChromecastMetadataImage","url":"com/theoplayer/android/api/source/metadata/ChromecastMetadataImage.html"}, {"p":"com.theoplayer.android.api.source.metadata","l":"ChromecastMetadataType","url":"com/theoplayer/android/api/source/metadata/ChromecastMetadataType.html"}, {"p":"com.theoplayer.android.api.source.metadata","l":"ChromecastMetadataDescription.Builder","url":"com/theoplayer/android/api/source/metadata/ChromecastMetadataDescription.Builder.html"}, {"p":"com.theoplayer.android.api.source.metadata","l":"ChromecastMetadataDescription","url":"com/theoplayer/android/api/source/metadata/ChromecastMetadataDescription.html"}, {"p":"com.theoplayer.android.api.source.metadata","l":"MetadataDescription","url":"com/theoplayer/android/api/source/metadata/MetadataDescription.html"}, {"p":"com.theoplayer.android.api.settings","l":"SslSettings","url":"com/theoplayer/android/api/settings/SslSettings.html"}, {"p":"com.theoplayer.android.api.settings","l":"PlaybackSettings","url":"com/theoplayer/android/api/settings/PlaybackSettings.html"}, {"p":"com.theoplayer.android.api.settings","l":"DecoderType","url":"com/theoplayer/android/api/settings/DecoderType.html"}, {"p":"com.theoplayer.android.api.settings","l":"DecoderSelectionHelper","url":"com/theoplayer/android/api/settings/DecoderSelectionHelper.html"}, {"p":"com.theoplayer.android.api.cache","l":"CachingTaskProgress","url":"com/theoplayer/android/api/cache/CachingTaskProgress.html"}, {"p":"com.theoplayer.android.api.cache","l":"CacheStatus","url":"com/theoplayer/android/api/cache/CacheStatus.html"}, {"p":"com.theoplayer.android.api.cache","l":"CachingParameters.Builder","url":"com/theoplayer/android/api/cache/CachingParameters.Builder.html"}, {"p":"com.theoplayer.android.api.cache","l":"CachingParameters","url":"com/theoplayer/android/api/cache/CachingParameters.html"}, {"p":"com.theoplayer.android.api.cache","l":"CachingTaskStatus","url":"com/theoplayer/android/api/cache/CachingTaskStatus.html"}, {"p":"com.theoplayer.android.api.cache","l":"CachingTask","url":"com/theoplayer/android/api/cache/CachingTask.html"}, {"p":"com.theoplayer.android.api.cache","l":"CachingTaskList","url":"com/theoplayer/android/api/cache/CachingTaskList.html"}, {"p":"com.theoplayer.android.api.cache","l":"CachingTaskLicense","url":"com/theoplayer/android/api/cache/CachingTaskLicense.html"}, {"p":"com.theoplayer.android.api.cache","l":"CachingPreferredTrackSelection.Builder","url":"com/theoplayer/android/api/cache/CachingPreferredTrackSelection.Builder.html"}, {"p":"com.theoplayer.android.api.cache","l":"CachingPreferredTrackSelection","url":"com/theoplayer/android/api/cache/CachingPreferredTrackSelection.html"}, {"p":"com.theoplayer.android.api.cache","l":"CachingTaskError","url":"com/theoplayer/android/api/cache/CachingTaskError.html"}, {"p":"com.theoplayer.android.api.cache","l":"Cache","url":"com/theoplayer/android/api/cache/Cache.html"}, {"p":"com.theoplayer.android.api.cache","l":"CacheNotificationsBuilder","url":"com/theoplayer/android/api/cache/CacheNotificationsBuilder.html"}, {"p":"com.theoplayer.android.api.cache","l":"NoChangeBuilder","url":"com/theoplayer/android/api/cache/NoChangeBuilder.html"}, {"p":"com.theoplayer.android.api.player","l":"AspectRatio","url":"com/theoplayer/android/api/player/AspectRatio.html"}, {"p":"com.theoplayer.android.api.player","l":"RenderingTarget","url":"com/theoplayer/android/api/player/RenderingTarget.html"}, {"p":"com.theoplayer.android.api.player","l":"PresentationMode","url":"com/theoplayer/android/api/player/PresentationMode.html"}, {"p":"com.theoplayer.android.api.player","l":"PreloadType","url":"com/theoplayer/android/api/player/PreloadType.html"}, {"p":"com.theoplayer.android.api.player","l":"ReadyState","url":"com/theoplayer/android/api/player/ReadyState.html"}, {"p":"com.theoplayer.android.api.player","l":"NetworkConfiguration.Builder","url":"com/theoplayer/android/api/player/NetworkConfiguration.Builder.html"}, {"p":"com.theoplayer.android.api.player","l":"NetworkConfiguration","url":"com/theoplayer/android/api/player/NetworkConfiguration.html"}, {"p":"com.theoplayer.android.api.player","l":"Player","url":"com/theoplayer/android/api/player/Player.html"}, {"p":"com.theoplayer.android.api.player.track","l":"TrackList","url":"com/theoplayer/android/api/player/track/TrackList.html"}, {"p":"com.theoplayer.android.api.player.track","l":"Track","url":"com/theoplayer/android/api/player/track/Track.html"}, {"p":"com.theoplayer.android.api.player.track.texttrack","l":"TextTrackType","url":"com/theoplayer/android/api/player/track/texttrack/TextTrackType.html"}, {"p":"com.theoplayer.android.api.player.track.texttrack","l":"TextTrackList","url":"com/theoplayer/android/api/player/track/texttrack/TextTrackList.html"}, {"p":"com.theoplayer.android.api.player.track.texttrack","l":"TextTrackStyle.EdgeType","url":"com/theoplayer/android/api/player/track/texttrack/TextTrackStyle.EdgeType.html"}, {"p":"com.theoplayer.android.api.player.track.texttrack","l":"TextTrackStyle.FontStyle","url":"com/theoplayer/android/api/player/track/texttrack/TextTrackStyle.FontStyle.html"}, {"p":"com.theoplayer.android.api.player.track.texttrack","l":"TextTrackStyle.FontFamily","url":"com/theoplayer/android/api/player/track/texttrack/TextTrackStyle.FontFamily.html"}, {"p":"com.theoplayer.android.api.player.track.texttrack","l":"TextTrackStyle","url":"com/theoplayer/android/api/player/track/texttrack/TextTrackStyle.html"}, {"p":"com.theoplayer.android.api.player.track.texttrack","l":"TextTrackMode","url":"com/theoplayer/android/api/player/track/texttrack/TextTrackMode.html"}, {"p":"com.theoplayer.android.api.player.track.texttrack","l":"TextTrack","url":"com/theoplayer/android/api/player/track/texttrack/TextTrack.html"}, {"p":"com.theoplayer.android.api.player.track.texttrack","l":"TextTrackReadyState","url":"com/theoplayer/android/api/player/track/texttrack/TextTrackReadyState.html"}, {"p":"com.theoplayer.android.api.player.track.texttrack","l":"TextTrackKind","url":"com/theoplayer/android/api/player/track/texttrack/TextTrackKind.html"}, {"p":"com.theoplayer.android.api.player.track.texttrack.cue","l":"TextTrackCueList","url":"com/theoplayer/android/api/player/track/texttrack/cue/TextTrackCueList.html"}, {"p":"com.theoplayer.android.api.player.track.texttrack.cue","l":"TextTrackCue","url":"com/theoplayer/android/api/player/track/texttrack/cue/TextTrackCue.html"}, {"p":"com.theoplayer.android.api.player.track.texttrack.cue","l":"DateRangeCue.CustomAttributes","url":"com/theoplayer/android/api/player/track/texttrack/cue/DateRangeCue.CustomAttributes.html"}, {"p":"com.theoplayer.android.api.player.track.texttrack.cue","l":"DateRangeCue","url":"com/theoplayer/android/api/player/track/texttrack/cue/DateRangeCue.html"}, {"p":"com.theoplayer.android.api.player.track.mediatrack","l":"MediaTrack","url":"com/theoplayer/android/api/player/track/mediatrack/MediaTrack.html"}, {"p":"com.theoplayer.android.api.player.track.mediatrack","l":"MediaTrackList","url":"com/theoplayer/android/api/player/track/mediatrack/MediaTrackList.html"}, {"p":"com.theoplayer.android.api.player.track.mediatrack.quality","l":"Quality","url":"com/theoplayer/android/api/player/track/mediatrack/quality/Quality.html"}, {"p":"com.theoplayer.android.api.player.track.mediatrack.quality","l":"VideoQuality","url":"com/theoplayer/android/api/player/track/mediatrack/quality/VideoQuality.html"}, {"p":"com.theoplayer.android.api.player.track.mediatrack.quality","l":"AudioQuality","url":"com/theoplayer/android/api/player/track/mediatrack/quality/AudioQuality.html"}, {"p":"com.theoplayer.android.api.player.track.mediatrack.quality","l":"QualityList","url":"com/theoplayer/android/api/player/track/mediatrack/quality/QualityList.html"}, {"p":"com.theoplayer.android.api.abr","l":"AbrStrategyConfiguration.Builder","url":"com/theoplayer/android/api/abr/AbrStrategyConfiguration.Builder.html"}, {"p":"com.theoplayer.android.api.abr","l":"AbrStrategyConfiguration","url":"com/theoplayer/android/api/abr/AbrStrategyConfiguration.html"}, {"p":"com.theoplayer.android.api.abr","l":"Abr","url":"com/theoplayer/android/api/abr/Abr.html"}, {"p":"com.theoplayer.android.api.abr","l":"AbrStrategyType","url":"com/theoplayer/android/api/abr/AbrStrategyType.html"}, {"p":"com.theoplayer.android.api.abr","l":"AbrStrategyMetadata.Builder","url":"com/theoplayer/android/api/abr/AbrStrategyMetadata.Builder.html"}, {"p":"com.theoplayer.android.api.abr","l":"AbrStrategyMetadata","url":"com/theoplayer/android/api/abr/AbrStrategyMetadata.html"}, {"p":"com.theoplayer.android.api.event","l":"Event","url":"com/theoplayer/android/api/event/Event.html"}, {"p":"com.theoplayer.android.api.event","l":"EventDispatcher","url":"com/theoplayer/android/api/event/EventDispatcher.html"}, {"p":"com.theoplayer.android.api.event","l":"EventListener","url":"com/theoplayer/android/api/event/EventListener.html"}, {"p":"com.theoplayer.android.api.event","l":"EventType","url":"com/theoplayer/android/api/event/EventType.html"}, {"p":"com.theoplayer.android.api.event.player","l":"SeekedEvent","url":"com/theoplayer/android/api/event/player/SeekedEvent.html"}, {"p":"com.theoplayer.android.api.event.player","l":"PlayEvent","url":"com/theoplayer/android/api/event/player/PlayEvent.html"}, {"p":"com.theoplayer.android.api.event.player","l":"ContentProtectionErrorEvent","url":"com/theoplayer/android/api/event/player/ContentProtectionErrorEvent.html"}, {"p":"com.theoplayer.android.api.event.player","l":"SegmentNotFoundEvent","url":"com/theoplayer/android/api/event/player/SegmentNotFoundEvent.html"}, {"p":"com.theoplayer.android.api.event.player","l":"PlayerEvent","url":"com/theoplayer/android/api/event/player/PlayerEvent.html"}, {"p":"com.theoplayer.android.api.event.player","l":"WaitingEvent","url":"com/theoplayer/android/api/event/player/WaitingEvent.html"}, {"p":"com.theoplayer.android.api.event.player","l":"MediaEncryptedEvent","url":"com/theoplayer/android/api/event/player/MediaEncryptedEvent.html"}, {"p":"com.theoplayer.android.api.event.player","l":"PresentationModeChange","url":"com/theoplayer/android/api/event/player/PresentationModeChange.html"}, {"p":"com.theoplayer.android.api.event.player","l":"LoadedDataEvent","url":"com/theoplayer/android/api/event/player/LoadedDataEvent.html"}, {"p":"com.theoplayer.android.api.event.player","l":"TimeUpdateEvent","url":"com/theoplayer/android/api/event/player/TimeUpdateEvent.html"}, {"p":"com.theoplayer.android.api.event.player","l":"SeekingEvent","url":"com/theoplayer/android/api/event/player/SeekingEvent.html"}, {"p":"com.theoplayer.android.api.event.player","l":"ErrorEvent","url":"com/theoplayer/android/api/event/player/ErrorEvent.html"}, {"p":"com.theoplayer.android.api.event.player","l":"ReadyStateChangeEvent","url":"com/theoplayer/android/api/event/player/ReadyStateChangeEvent.html"}, {"p":"com.theoplayer.android.api.event.player","l":"RateChangeEvent","url":"com/theoplayer/android/api/event/player/RateChangeEvent.html"}, {"p":"com.theoplayer.android.api.event.player","l":"CanPlayEvent","url":"com/theoplayer/android/api/event/player/CanPlayEvent.html"}, {"p":"com.theoplayer.android.api.event.player","l":"PlayerEventTypes.Identifiers","url":"com/theoplayer/android/api/event/player/PlayerEventTypes.Identifiers.html"}, {"p":"com.theoplayer.android.api.event.player","l":"PlayerEventTypes","url":"com/theoplayer/android/api/event/player/PlayerEventTypes.html"}, {"p":"com.theoplayer.android.api.event.player","l":"PauseEvent","url":"com/theoplayer/android/api/event/player/PauseEvent.html"}, {"p":"com.theoplayer.android.api.event.player","l":"LoadStartEvent","url":"com/theoplayer/android/api/event/player/LoadStartEvent.html"}, {"p":"com.theoplayer.android.api.event.player","l":"ResizeEvent","url":"com/theoplayer/android/api/event/player/ResizeEvent.html"}, {"p":"com.theoplayer.android.api.event.player","l":"PlayingEvent","url":"com/theoplayer/android/api/event/player/PlayingEvent.html"}, {"p":"com.theoplayer.android.api.event.player","l":"LoadedMetadataEvent","url":"com/theoplayer/android/api/event/player/LoadedMetadataEvent.html"}, {"p":"com.theoplayer.android.api.event.player","l":"DurationChangeEvent","url":"com/theoplayer/android/api/event/player/DurationChangeEvent.html"}, {"p":"com.theoplayer.android.api.event.player","l":"DestroyEvent","url":"com/theoplayer/android/api/event/player/DestroyEvent.html"}, {"p":"com.theoplayer.android.api.event.player","l":"ContentProtectionSuccessEvent","url":"com/theoplayer/android/api/event/player/ContentProtectionSuccessEvent.html"}, {"p":"com.theoplayer.android.api.event.player","l":"VolumeChangeEvent","url":"com/theoplayer/android/api/event/player/VolumeChangeEvent.html"}, {"p":"com.theoplayer.android.api.event.player","l":"ProgressEvent","url":"com/theoplayer/android/api/event/player/ProgressEvent.html"}, {"p":"com.theoplayer.android.api.event.player","l":"CanPlayThroughEvent","url":"com/theoplayer/android/api/event/player/CanPlayThroughEvent.html"}, {"p":"com.theoplayer.android.api.event.player","l":"NoSupportedRepresentationFoundEvent","url":"com/theoplayer/android/api/event/player/NoSupportedRepresentationFoundEvent.html"}, {"p":"com.theoplayer.android.api.event.player","l":"EndedEvent","url":"com/theoplayer/android/api/event/player/EndedEvent.html"}, {"p":"com.theoplayer.android.api.event.player","l":"SourceChangeEvent","url":"com/theoplayer/android/api/event/player/SourceChangeEvent.html"}, {"p":"com.theoplayer.android.api.event.track.texttrack","l":"ChangeEvent","url":"com/theoplayer/android/api/event/track/texttrack/ChangeEvent.html"}, {"p":"com.theoplayer.android.api.event.track.texttrack","l":"TextTrackEventTypes","url":"com/theoplayer/android/api/event/track/texttrack/TextTrackEventTypes.html"}, {"p":"com.theoplayer.android.api.event.track.texttrack","l":"EnterCueEvent","url":"com/theoplayer/android/api/event/track/texttrack/EnterCueEvent.html"}, {"p":"com.theoplayer.android.api.event.track.texttrack","l":"ExitCueEvent","url":"com/theoplayer/android/api/event/track/texttrack/ExitCueEvent.html"}, {"p":"com.theoplayer.android.api.event.track.texttrack","l":"RemoveCueEvent","url":"com/theoplayer/android/api/event/track/texttrack/RemoveCueEvent.html"}, {"p":"com.theoplayer.android.api.event.track.texttrack","l":"AddCueEvent","url":"com/theoplayer/android/api/event/track/texttrack/AddCueEvent.html"}, {"p":"com.theoplayer.android.api.event.track.texttrack","l":"CueChangeEvent","url":"com/theoplayer/android/api/event/track/texttrack/CueChangeEvent.html"}, {"p":"com.theoplayer.android.api.event.track.texttrack","l":"UpdateCueEvent","url":"com/theoplayer/android/api/event/track/texttrack/UpdateCueEvent.html"}, {"p":"com.theoplayer.android.api.event.track.texttrack.list","l":"TrackListChangeEvent","url":"com/theoplayer/android/api/event/track/texttrack/list/TrackListChangeEvent.html"}, {"p":"com.theoplayer.android.api.event.track.texttrack.list","l":"AddTrackEvent","url":"com/theoplayer/android/api/event/track/texttrack/list/AddTrackEvent.html"}, {"p":"com.theoplayer.android.api.event.track.texttrack.list","l":"TextTrackListEventTypes","url":"com/theoplayer/android/api/event/track/texttrack/list/TextTrackListEventTypes.html"}, {"p":"com.theoplayer.android.api.event.track.texttrack.list","l":"RemoveTrackEvent","url":"com/theoplayer/android/api/event/track/texttrack/list/RemoveTrackEvent.html"}, {"p":"com.theoplayer.android.api.event.track.texttrack.texttrackcue","l":"ExitEvent","url":"com/theoplayer/android/api/event/track/texttrack/texttrackcue/ExitEvent.html"}, {"p":"com.theoplayer.android.api.event.track.texttrack.texttrackcue","l":"TextTrackCueEvent","url":"com/theoplayer/android/api/event/track/texttrack/texttrackcue/TextTrackCueEvent.html"}, {"p":"com.theoplayer.android.api.event.track.texttrack.texttrackcue","l":"EnterEvent","url":"com/theoplayer/android/api/event/track/texttrack/texttrackcue/EnterEvent.html"}, {"p":"com.theoplayer.android.api.event.track.texttrack.texttrackcue","l":"UpdateEvent","url":"com/theoplayer/android/api/event/track/texttrack/texttrackcue/UpdateEvent.html"}, {"p":"com.theoplayer.android.api.event.track.texttrack.texttrackcue","l":"TextTrackCueEventTypes","url":"com/theoplayer/android/api/event/track/texttrack/texttrackcue/TextTrackCueEventTypes.html"}, {"p":"com.theoplayer.android.api.event.track","l":"TrackEvent","url":"com/theoplayer/android/api/event/track/TrackEvent.html"}, {"p":"com.theoplayer.android.api.event.track.tracklist","l":"TrackListEvent","url":"com/theoplayer/android/api/event/track/tracklist/TrackListEvent.html"}, {"p":"com.theoplayer.android.api.event.track.mediatrack.video","l":"TargetQualityChangedEvent","url":"com/theoplayer/android/api/event/track/mediatrack/video/TargetQualityChangedEvent.html"}, {"p":"com.theoplayer.android.api.event.track.mediatrack.video","l":"VideoTrackEventTypes","url":"com/theoplayer/android/api/event/track/mediatrack/video/VideoTrackEventTypes.html"}, {"p":"com.theoplayer.android.api.event.track.mediatrack.video","l":"ActiveQualityChangedEvent","url":"com/theoplayer/android/api/event/track/mediatrack/video/ActiveQualityChangedEvent.html"}, {"p":"com.theoplayer.android.api.event.track.mediatrack.video.list","l":"TrackListChangeEvent","url":"com/theoplayer/android/api/event/track/mediatrack/video/list/TrackListChangeEvent.html"}, {"p":"com.theoplayer.android.api.event.track.mediatrack.video.list","l":"AddTrackEvent","url":"com/theoplayer/android/api/event/track/mediatrack/video/list/AddTrackEvent.html"}, {"p":"com.theoplayer.android.api.event.track.mediatrack.video.list","l":"VideoTrackListEventTypes","url":"com/theoplayer/android/api/event/track/mediatrack/video/list/VideoTrackListEventTypes.html"}, {"p":"com.theoplayer.android.api.event.track.mediatrack.video.list","l":"RemoveTrackEvent","url":"com/theoplayer/android/api/event/track/mediatrack/video/list/RemoveTrackEvent.html"}, {"p":"com.theoplayer.android.api.event.track.mediatrack.audio","l":"TargetQualityChangedEvent","url":"com/theoplayer/android/api/event/track/mediatrack/audio/TargetQualityChangedEvent.html"}, {"p":"com.theoplayer.android.api.event.track.mediatrack.audio","l":"AudioTrackEventTypes","url":"com/theoplayer/android/api/event/track/mediatrack/audio/AudioTrackEventTypes.html"}, {"p":"com.theoplayer.android.api.event.track.mediatrack.audio","l":"QualityChangedEvent","url":"com/theoplayer/android/api/event/track/mediatrack/audio/QualityChangedEvent.html"}, {"p":"com.theoplayer.android.api.event.track.mediatrack.audio","l":"ActiveQualityChangedEvent","url":"com/theoplayer/android/api/event/track/mediatrack/audio/ActiveQualityChangedEvent.html"}, {"p":"com.theoplayer.android.api.event.track.mediatrack.audio.list","l":"TrackListChangeEvent","url":"com/theoplayer/android/api/event/track/mediatrack/audio/list/TrackListChangeEvent.html"}, {"p":"com.theoplayer.android.api.event.track.mediatrack.audio.list","l":"AddTrackEvent","url":"com/theoplayer/android/api/event/track/mediatrack/audio/list/AddTrackEvent.html"}, {"p":"com.theoplayer.android.api.event.track.mediatrack.audio.list","l":"AudioTrackListEventTypes","url":"com/theoplayer/android/api/event/track/mediatrack/audio/list/AudioTrackListEventTypes.html"}, {"p":"com.theoplayer.android.api.event.track.mediatrack.audio.list","l":"RemoveTrackEvent","url":"com/theoplayer/android/api/event/track/mediatrack/audio/list/RemoveTrackEvent.html"}, {"p":"com.theoplayer.android.api.event.track.mediatrack","l":"AbstractTargetQualityChangedEvent","url":"com/theoplayer/android/api/event/track/mediatrack/AbstractTargetQualityChangedEvent.html"}, {"p":"com.theoplayer.android.api.event.track.mediatrack.quality","l":"QualityUpdateEvent","url":"com/theoplayer/android/api/event/track/mediatrack/quality/QualityUpdateEvent.html"}, {"p":"com.theoplayer.android.api.event.track.mediatrack.quality","l":"QualityEventTypes","url":"com/theoplayer/android/api/event/track/mediatrack/quality/QualityEventTypes.html"}, {"p":"com.theoplayer.android.api.event.track.mediatrack.quality","l":"QualityEvent","url":"com/theoplayer/android/api/event/track/mediatrack/quality/QualityEvent.html"}, {"p":"com.theoplayer.android.api.event.ads","l":"AdIntegrationKind","url":"com/theoplayer/android/api/event/ads/AdIntegrationKind.html"}, {"p":"com.theoplayer.android.api.event.ads","l":"AdBreakEndEvent","url":"com/theoplayer/android/api/event/ads/AdBreakEndEvent.html"}, {"p":"com.theoplayer.android.api.event.ads","l":"AdMidpointEvent","url":"com/theoplayer/android/api/event/ads/AdMidpointEvent.html"}, {"p":"com.theoplayer.android.api.event.ads","l":"AdErrorEvent","url":"com/theoplayer/android/api/event/ads/AdErrorEvent.html"}, {"p":"com.theoplayer.android.api.event.ads","l":"AdBeginEvent","url":"com/theoplayer/android/api/event/ads/AdBeginEvent.html"}, {"p":"com.theoplayer.android.api.event.ads","l":"AddAdEvent","url":"com/theoplayer/android/api/event/ads/AddAdEvent.html"}, {"p":"com.theoplayer.android.api.event.ads","l":"AdThirdQuartileEvent","url":"com/theoplayer/android/api/event/ads/AdThirdQuartileEvent.html"}, {"p":"com.theoplayer.android.api.event.ads","l":"AdFirstQuartileEvent","url":"com/theoplayer/android/api/event/ads/AdFirstQuartileEvent.html"}, {"p":"com.theoplayer.android.api.event.ads","l":"AdImpressionEvent","url":"com/theoplayer/android/api/event/ads/AdImpressionEvent.html"}, {"p":"com.theoplayer.android.api.event.ads","l":"AdSkipEvent","url":"com/theoplayer/android/api/event/ads/AdSkipEvent.html"}, {"p":"com.theoplayer.android.api.event.ads","l":"RemoveAdBreakEvent","url":"com/theoplayer/android/api/event/ads/RemoveAdBreakEvent.html"}, {"p":"com.theoplayer.android.api.event.ads","l":"AddAdBreakEvent","url":"com/theoplayer/android/api/event/ads/AddAdBreakEvent.html"}, {"p":"com.theoplayer.android.api.event.ads","l":"AdEndEvent","url":"com/theoplayer/android/api/event/ads/AdEndEvent.html"}, {"p":"com.theoplayer.android.api.event.ads","l":"AdLoadedEvent","url":"com/theoplayer/android/api/event/ads/AdLoadedEvent.html"}, {"p":"com.theoplayer.android.api.event.ads","l":"SingleAdEvent","url":"com/theoplayer/android/api/event/ads/SingleAdEvent.html"}, {"p":"com.theoplayer.android.api.event.ads","l":"AdsEventTypes.Identifiers","url":"com/theoplayer/android/api/event/ads/AdsEventTypes.Identifiers.html"}, {"p":"com.theoplayer.android.api.event.ads","l":"AdsEventTypes","url":"com/theoplayer/android/api/event/ads/AdsEventTypes.html"}, {"p":"com.theoplayer.android.api.event.ads","l":"AdBreakBeginEvent","url":"com/theoplayer/android/api/event/ads/AdBreakBeginEvent.html"}, {"p":"com.theoplayer.android.api.event.ads","l":"AdBreakEvent","url":"com/theoplayer/android/api/event/ads/AdBreakEvent.html"}, {"p":"com.theoplayer.android.api.event.ads","l":"AdEvent","url":"com/theoplayer/android/api/event/ads/AdEvent.html"}, {"p":"com.theoplayer.android.api.event.ads","l":"AdBreakChangeEvent","url":"com/theoplayer/android/api/event/ads/AdBreakChangeEvent.html"}, {"p":"com.theoplayer.android.api.error","l":"ErrorCode","url":"com/theoplayer/android/api/error/ErrorCode.html"}, {"p":"com.theoplayer.android.api.error","l":"ContentProtectionException","url":"com/theoplayer/android/api/error/ContentProtectionException.html"}, {"p":"com.theoplayer.android.api.error","l":"ErrorCategory","url":"com/theoplayer/android/api/error/ErrorCategory.html"}, {"p":"com.theoplayer.android.api.error","l":"THEOplayerException","url":"com/theoplayer/android/api/error/THEOplayerException.html"}, {"p":"com.theoplayer.android.api.contentprotection","l":"RequestMethod","url":"com/theoplayer/android/api/contentprotection/RequestMethod.html"}, {"p":"com.theoplayer.android.api.contentprotection","l":"LicenseRequestCallback","url":"com/theoplayer/android/api/contentprotection/LicenseRequestCallback.html"}, {"p":"com.theoplayer.android.api.contentprotection","l":"ContentProtectionIntegration","url":"com/theoplayer/android/api/contentprotection/ContentProtectionIntegration.html"}, {"p":"com.theoplayer.android.api.contentprotection","l":"LicenseResponseCallback","url":"com/theoplayer/android/api/contentprotection/LicenseResponseCallback.html"}, {"p":"com.theoplayer.android.api.contentprotection","l":"ContentProtectionIntegrationFactory","url":"com/theoplayer/android/api/contentprotection/ContentProtectionIntegrationFactory.html"}, {"p":"com.theoplayer.android.api.contentprotection","l":"Request","url":"com/theoplayer/android/api/contentprotection/Request.html"}, {"p":"com.theoplayer.android.api.contentprotection","l":"CertificateRequestCallback","url":"com/theoplayer/android/api/contentprotection/CertificateRequestCallback.html"}, {"p":"com.theoplayer.android.api.contentprotection","l":"KeySystemId","url":"com/theoplayer/android/api/contentprotection/KeySystemId.html"}, {"p":"com.theoplayer.android.api.contentprotection","l":"Response","url":"com/theoplayer/android/api/contentprotection/Response.html"}, {"p":"com.theoplayer.android.api.contentprotection","l":"CertificateResponseCallback","url":"com/theoplayer/android/api/contentprotection/CertificateResponseCallback.html"}, {"p":"com.theoplayer.android.api.source.addescription","l":"GoogleImaAdDescription.Builder","url":"com/theoplayer/android/api/source/addescription/GoogleImaAdDescription.Builder.html"}, {"p":"com.theoplayer.android.api.source.addescription","l":"GoogleImaAdDescription","url":"com/theoplayer/android/api/source/addescription/GoogleImaAdDescription.html"}, {"p":"com.theoplayer.android.api.source.addescription","l":"AdDescription","url":"com/theoplayer/android/api/source/addescription/AdDescription.html"}, {"p":"com.theoplayer.android.api.source.dash","l":"DashPlaybackConfiguration.Builder","url":"com/theoplayer/android/api/source/dash/DashPlaybackConfiguration.Builder.html"}, {"p":"com.theoplayer.android.api.source.dash","l":"DashPlaybackConfiguration","url":"com/theoplayer/android/api/source/dash/DashPlaybackConfiguration.html"}, {"p":"com.theoplayer.android.api.source.drm","l":"LicenseType","url":"com/theoplayer/android/api/source/drm/LicenseType.html"}, {"p":"com.theoplayer.android.api.source.drm","l":"KeySystemConfiguration.Builder","url":"com/theoplayer/android/api/source/drm/KeySystemConfiguration.Builder.html"}, {"p":"com.theoplayer.android.api.source.drm","l":"KeySystemConfiguration","url":"com/theoplayer/android/api/source/drm/KeySystemConfiguration.html"}, {"p":"com.theoplayer.android.api.source.drm","l":"ClearkeyKeySystemConfiguration.ClearkeyDecryptionKey","url":"com/theoplayer/android/api/source/drm/ClearkeyKeySystemConfiguration.ClearkeyDecryptionKey.html"}, {"p":"com.theoplayer.android.api.source.drm","l":"ClearkeyKeySystemConfiguration.Builder","url":"com/theoplayer/android/api/source/drm/ClearkeyKeySystemConfiguration.Builder.html"}, {"p":"com.theoplayer.android.api.source.drm","l":"ClearkeyKeySystemConfiguration","url":"com/theoplayer/android/api/source/drm/ClearkeyKeySystemConfiguration.html"}, {"p":"com.theoplayer.android.api.source.drm","l":"DRMConfiguration.Builder","url":"com/theoplayer/android/api/source/drm/DRMConfiguration.Builder.html"}, {"p":"com.theoplayer.android.api.source.drm","l":"DRMConfiguration","url":"com/theoplayer/android/api/source/drm/DRMConfiguration.html"}, {"p":"com.theoplayer.android.api.source.drm","l":"DRMIntegrationId","url":"com/theoplayer/android/api/source/drm/DRMIntegrationId.html"}, {"p":"com.theoplayer.android.api.source.drm","l":"FairPlayKeySystemConfiguration.Builder","url":"com/theoplayer/android/api/source/drm/FairPlayKeySystemConfiguration.Builder.html"}, {"p":"com.theoplayer.android.api.source.drm","l":"FairPlayKeySystemConfiguration","url":"com/theoplayer/android/api/source/drm/FairPlayKeySystemConfiguration.html"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","l":"DRMPreIntegrationConfiguration","url":"com/theoplayer/android/api/source/drm/preintegration/DRMPreIntegrationConfiguration.html"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","l":"VudrmDRMConfiguration.Builder","url":"com/theoplayer/android/api/source/drm/preintegration/VudrmDRMConfiguration.Builder.html"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","l":"VudrmDRMConfiguration","url":"com/theoplayer/android/api/source/drm/preintegration/VudrmDRMConfiguration.html"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","l":"KeyOSDRMConfiguration.Builder","url":"com/theoplayer/android/api/source/drm/preintegration/KeyOSDRMConfiguration.Builder.html"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","l":"KeyOSDRMConfiguration","url":"com/theoplayer/android/api/source/drm/preintegration/KeyOSDRMConfiguration.html"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","l":"ConaxDRMConfiguration.Builder","url":"com/theoplayer/android/api/source/drm/preintegration/ConaxDRMConfiguration.Builder.html"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","l":"ConaxDRMConfiguration","url":"com/theoplayer/android/api/source/drm/preintegration/ConaxDRMConfiguration.html"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","l":"KeyOSKeySystemConfiguration.Builder","url":"com/theoplayer/android/api/source/drm/preintegration/KeyOSKeySystemConfiguration.Builder.html"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","l":"KeyOSKeySystemConfiguration","url":"com/theoplayer/android/api/source/drm/preintegration/KeyOSKeySystemConfiguration.html"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","l":"AxinomDRMConfiguration.Builder","url":"com/theoplayer/android/api/source/drm/preintegration/AxinomDRMConfiguration.Builder.html"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","l":"AxinomDRMConfiguration","url":"com/theoplayer/android/api/source/drm/preintegration/AxinomDRMConfiguration.html"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","l":"AzureDRMConfiguration.Builder","url":"com/theoplayer/android/api/source/drm/preintegration/AzureDRMConfiguration.Builder.html"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","l":"AzureDRMConfiguration","url":"com/theoplayer/android/api/source/drm/preintegration/AzureDRMConfiguration.html"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","l":"DRMTodayConfiguration.Builder","url":"com/theoplayer/android/api/source/drm/preintegration/DRMTodayConfiguration.Builder.html"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","l":"DRMTodayConfiguration","url":"com/theoplayer/android/api/source/drm/preintegration/DRMTodayConfiguration.html"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","l":"TitaniumDRMConfiguration.Builder","url":"com/theoplayer/android/api/source/drm/preintegration/TitaniumDRMConfiguration.Builder.html"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","l":"TitaniumDRMConfiguration","url":"com/theoplayer/android/api/source/drm/preintegration/TitaniumDRMConfiguration.html"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","l":"IrdetoConfiguration.Builder","url":"com/theoplayer/android/api/source/drm/preintegration/IrdetoConfiguration.Builder.html"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","l":"IrdetoConfiguration","url":"com/theoplayer/android/api/source/drm/preintegration/IrdetoConfiguration.html"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","l":"XstreamConfiguration.Builder","url":"com/theoplayer/android/api/source/drm/preintegration/XstreamConfiguration.Builder.html"}, {"p":"com.theoplayer.android.api.source.drm.preintegration","l":"XstreamConfiguration","url":"com/theoplayer/android/api/source/drm/preintegration/XstreamConfiguration.html"}, {"p":"com.theoplayer.android.api.source.ssai","l":"StreamType","url":"com/theoplayer/android/api/source/ssai/StreamType.html"}, {"p":"com.theoplayer.android.api.source.ssai","l":"SsaiDescription","url":"com/theoplayer/android/api/source/ssai/SsaiDescription.html"}, {"p":"com.theoplayer.android.api.source.ssai","l":"GoogleDaiConfiguration.Builder","url":"com/theoplayer/android/api/source/ssai/GoogleDaiConfiguration.Builder.html"}, {"p":"com.theoplayer.android.api.source.ssai","l":"GoogleDaiConfiguration","url":"com/theoplayer/android/api/source/ssai/GoogleDaiConfiguration.html"}, {"p":"com.theoplayer.android.api.source.ssai","l":"SsaiIntegration","url":"com/theoplayer/android/api/source/ssai/SsaiIntegration.html"}, {"p":"com.theoplayer.android.api.source.ssai","l":"CustomSsaiDescription","url":"com/theoplayer/android/api/source/ssai/CustomSsaiDescription.html"}, {"p":"com.theoplayer.android.api.source.ssai","l":"CustomSsaiDescriptionSerializer","url":"com/theoplayer/android/api/source/ssai/CustomSsaiDescriptionSerializer.html"}, {"p":"com.theoplayer.android.api.source.ssai","l":"CustomSsaiDescriptionRegistry","url":"com/theoplayer/android/api/source/ssai/CustomSsaiDescriptionRegistry.html"}, {"p":"com.theoplayer.android.api.source.ssai.dai","l":"GoogleDaiLiveConfiguration.Builder","url":"com/theoplayer/android/api/source/ssai/dai/GoogleDaiLiveConfiguration.Builder.html"}, {"p":"com.theoplayer.android.api.source.ssai.dai","l":"GoogleDaiLiveConfiguration","url":"com/theoplayer/android/api/source/ssai/dai/GoogleDaiLiveConfiguration.html"}, {"p":"com.theoplayer.android.api.source.ssai.dai","l":"GoogleDaiVodConfiguration.Builder","url":"com/theoplayer/android/api/source/ssai/dai/GoogleDaiVodConfiguration.Builder.html"}, {"p":"com.theoplayer.android.api.source.ssai.dai","l":"GoogleDaiVodConfiguration","url":"com/theoplayer/android/api/source/ssai/dai/GoogleDaiVodConfiguration.html"}, {"p":"com.theoplayer.android.api.source.hls","l":"HlsPlaybackConfiguration.Builder","url":"com/theoplayer/android/api/source/hls/HlsPlaybackConfiguration.Builder.html"}, {"p":"com.theoplayer.android.api.source.hls","l":"HlsPlaybackConfiguration","url":"com/theoplayer/android/api/source/hls/HlsPlaybackConfiguration.html"}, {"p":"com.theoplayer.android.api.metrics","l":"Metrics","url":"com/theoplayer/android/api/metrics/Metrics.html"}, {"p":"com.theoplayer.android.api.metrics","l":"BufferedSegments","url":"com/theoplayer/android/api/metrics/BufferedSegments.html"}, {"p":"com.theoplayer.android.api.timerange","l":"TimeRange","url":"com/theoplayer/android/api/timerange/TimeRange.html"}, {"p":"com.theoplayer.android.api.timerange","l":"TimeRanges","url":"com/theoplayer/android/api/timerange/TimeRanges.html"}, {"p":"com.theoplayer.android.api.latency","l":"LatencyConfiguration.Builder","url":"com/theoplayer/android/api/latency/LatencyConfiguration.Builder.html"}, {"p":"com.theoplayer.android.api.latency","l":"LatencyConfiguration","url":"com/theoplayer/android/api/latency/LatencyConfiguration.html"}, {"p":"com.theoplayer.android.api.latency","l":"LatencyManager","url":"com/theoplayer/android/api/latency/LatencyManager.html"}, {"p":"com.theoplayer.android.api.network","l":"Network","url":"com/theoplayer/android/api/network/Network.html"}, {"p":"com.theoplayer.android.api.network.http","l":"HTTPInterceptor","url":"com/theoplayer/android/api/network/http/HTTPInterceptor.html"}, {"p":"com.theoplayer.android.api.network.http","l":"HTTPRequest","url":"com/theoplayer/android/api/network/http/HTTPRequest.html"}, {"p":"com.theoplayer.android.api.network.http","l":"InterceptableHTTPRequest","url":"com/theoplayer/android/api/network/http/InterceptableHTTPRequest.html"}, {"p":"com.theoplayer.android.api.network.http","l":"ChunkInterceptor","url":"com/theoplayer/android/api/network/http/ChunkInterceptor.html"}, {"p":"com.theoplayer.android.api.network.http","l":"BodyInterceptor","url":"com/theoplayer/android/api/network/http/BodyInterceptor.html"}, {"p":"com.theoplayer.android.api.network.http","l":"HTTPResponse","url":"com/theoplayer/android/api/network/http/HTTPResponse.html"}, {"p":"com.theoplayer.android.api.network.http","l":"CompleteHTTPResponse","url":"com/theoplayer/android/api/network/http/CompleteHTTPResponse.html"}, {"p":"com.theoplayer.android.api.network.http","l":"InterceptableHTTPResponse","url":"com/theoplayer/android/api/network/http/InterceptableHTTPResponse.html"}, {"p":"com.theoplayer.android.api.network.http","l":"JavaHTTPInterceptor","url":"com/theoplayer/android/api/network/http/JavaHTTPInterceptor.html"}, {"p":"com.theoplayer.android.api.network.http","l":"JavaChunkInterceptor","url":"com/theoplayer/android/api/network/http/JavaChunkInterceptor.html"}, {"p":"com.theoplayer.android.api.network.http","l":"JavaBodyInterceptor","url":"com/theoplayer/android/api/network/http/JavaBodyInterceptor.html"}, {"p":"com.theoplayer.android.api.network.http","l":"RequestType","url":"com/theoplayer/android/api/network/http/RequestType.html"}, {"p":"com.theoplayer.android.api.network.http","l":"RequestSubType","url":"com/theoplayer/android/api/network/http/RequestSubType.html"}, {"p":"com.theoplayer.android.api.network.http","l":"RequestMediaType","url":"com/theoplayer/android/api/network/http/RequestMediaType.html"}, {"p":"com.theoplayer.android.api.network.http","l":"ResponseType","url":"com/theoplayer/android/api/network/http/ResponseType.html"}, {"p":"com.theoplayer.android.api.ads.ima","l":"GoogleImaAdBreak","url":"com/theoplayer/android/api/ads/ima/GoogleImaAdBreak.html"}, {"p":"com.theoplayer.android.api.ads.ima","l":"GoogleImaAdErrorEvent","url":"com/theoplayer/android/api/ads/ima/GoogleImaAdErrorEvent.html"}, {"p":"com.theoplayer.android.api.ads.ima","l":"GoogleImaAdEvent","url":"com/theoplayer/android/api/ads/ima/GoogleImaAdEvent.html"}, {"p":"com.theoplayer.android.api.ads.ima","l":"GoogleImaAdEventType","url":"com/theoplayer/android/api/ads/ima/GoogleImaAdEventType.html"}, {"p":"com.theoplayer.android.api.ads.ima","l":"GoogleImaCompanionAd","url":"com/theoplayer/android/api/ads/ima/GoogleImaCompanionAd.html"}, {"p":"com.theoplayer.android.api.ads.ima","l":"GoogleImaIntegration","url":"com/theoplayer/android/api/ads/ima/GoogleImaIntegration.html"}, {"p":"com.theoplayer.android.api.ads.ima","l":"GoogleImaIntegrationFactory","url":"com/theoplayer/android/api/ads/ima/GoogleImaIntegrationFactory.html"}, {"p":"com.theoplayer.android.api.ads.ima","l":"GoogleImaUniversalAdId","url":"com/theoplayer/android/api/ads/ima/GoogleImaUniversalAdId.html"}, {"p":"com.theoplayer.android.api.ads.mediatailor","l":"MediaTailorAd","url":"com/theoplayer/android/api/ads/mediatailor/MediaTailorAd.html"}, {"p":"com.theoplayer.android.api.ads.mediatailor","l":"MediaTailorAdAvail","url":"com/theoplayer/android/api/ads/mediatailor/MediaTailorAdAvail.html"}, {"p":"com.theoplayer.android.api.ads.mediatailor","l":"MediaTailorAdBreakEvent","url":"com/theoplayer/android/api/ads/mediatailor/MediaTailorAdBreakEvent.html"}, {"p":"com.theoplayer.android.api.ads.mediatailor","l":"MediaTailorAdBreakEventType","url":"com/theoplayer/android/api/ads/mediatailor/MediaTailorAdBreakEventType.html"}, {"p":"com.theoplayer.android.api.ads.mediatailor","l":"MediaTailorAdEvent","url":"com/theoplayer/android/api/ads/mediatailor/MediaTailorAdEvent.html"}, {"p":"com.theoplayer.android.api.ads.mediatailor","l":"MediaTailorAdEventType","url":"com/theoplayer/android/api/ads/mediatailor/MediaTailorAdEventType.html"}, {"p":"com.theoplayer.android.api.ads.mediatailor","l":"MediaTailorIntegration","url":"com/theoplayer/android/api/ads/mediatailor/MediaTailorIntegration.html"}, {"p":"com.theoplayer.android.api.ads.mediatailor","l":"MediaTailorIntegrationFactory","url":"com/theoplayer/android/api/ads/mediatailor/MediaTailorIntegrationFactory.html"}, {"p":"com.theoplayer.android.api.ads.theoads","l":"TheoAdDescription","url":"com/theoplayer/android/api/ads/theoads/TheoAdDescription.html"}, {"p":"com.theoplayer.android.api.ads.theoads","l":"TheoAdsLayoutOverride","url":"com/theoplayer/android/api/ads/theoads/TheoAdsLayoutOverride.html"}, {"p":"com.theoplayer.android.api.ads.theoads","l":"TheoAdsIntegration","url":"com/theoplayer/android/api/ads/theoads/TheoAdsIntegration.html"}, {"p":"com.theoplayer.android.api.ads.theoads","l":"TheoAdsIntegrationFactory","url":"com/theoplayer/android/api/ads/theoads/TheoAdsIntegrationFactory.html"}, {"p":"com.theoplayer.android.api.ads.dai","l":"GoogleDaiIntegration","url":"com/theoplayer/android/api/ads/dai/GoogleDaiIntegration.html"}, {"p":"com.theoplayer.android.api.ads.dai","l":"GoogleDaiIntegrationFactory","url":"com/theoplayer/android/api/ads/dai/GoogleDaiIntegrationFactory.html"}, {"l":"All classes","url":"allclasses.html"}] diff --git a/theoplayer/static/theoplayer/v8/api-reference/web/assets/search.js b/theoplayer/static/theoplayer/v8/api-reference/web/assets/search.js index fed4f3ec924..3c641ae5e84 100644 --- a/theoplayer/static/theoplayer/v8/api-reference/web/assets/search.js +++ b/theoplayer/static/theoplayer/v8/api-reference/web/assets/search.js @@ -1 +1 @@ -window.searchData = "data:application/octet-stream;base64,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"; \ No newline at end of file +window.searchData = "data:application/octet-stream;base64,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"; \ No newline at end of file diff --git a/theoplayer/static/theoplayer/v8/api-reference/web/index.html b/theoplayer/static/theoplayer/v8/api-reference/web/index.html index e407fbd9322..67c422aeceb 100644 --- a/theoplayer/static/theoplayer/v8/api-reference/web/index.html +++ b/theoplayer/static/theoplayer/v8/api-reference/web/index.html @@ -1,4 +1,4 @@ -THEOplayer Web SDK

    THEOplayer Web SDK

    The API references for THEOplayer Web SDK version 8.1.2.

    +THEOplayer Web SDK

    THEOplayer Web SDK

    The API references for THEOplayer Web SDK version 8.2.0.

    Index

    API

    The classes, constants, functions and namespaces listed in this category can be found on the global THEOplayer variable when loading with a <script> tag, or as exports of the theoplayer package when loading through npm.

    diff --git a/theoplayer/static/theoplayer/v8/api-reference/web/interfaces/Ads.html b/theoplayer/static/theoplayer/v8/api-reference/web/interfaces/Ads.html index 0c6b725ddfd..9b39a2fe957 100644 --- a/theoplayer/static/theoplayer/v8/api-reference/web/interfaces/Ads.html +++ b/theoplayer/static/theoplayer/v8/api-reference/web/interfaces/Ads.html @@ -1,11 +1,12 @@ Ads | THEOplayer Web SDK

    The API for advertisements.

    Remarks


    - Integrates with 'csai', 'google-ima', 'google-dai', 'freewheel' or 'theoads'.

    -
    interface Ads {
        currentAdBreak: null | AdBreak;
        currentAds: Ad[];
        dai?: GoogleDAI;
        playing: boolean;
        scheduledAdBreaks: AdBreak[];
        scheduledAds: Ad[];
        addEventListener<TType>(type, listener): void;
        registerServerSideIntegration(integrationId, integrationFactory): void;
        removeEventListener<TType>(type, listener): void;
        schedule(adDescription): void;
        skip(): void;
    }

    Hierarchy (view full)

    Properties

    interface Ads {
        currentAdBreak: null | AdBreak;
        currentAds: Ad[];
        dai?: GoogleDAI;
        playing: boolean;
        scheduledAdBreaks: AdBreak[];
        scheduledAds: Ad[];
        theoads?: TheoAds;
        addEventListener<TType>(type, listener): void;
        registerServerSideIntegration(integrationId, integrationFactory): void;
        removeEventListener<TType>(type, listener): void;
        schedule(adDescription): void;
        skip(): void;
    }

    Hierarchy (view full)

    Properties

    Methods

    playing: boolean

    Whether a linear ad is currently playing.

    scheduledAdBreaks: AdBreak[]

    List of ad breaks which still need to be played.

    scheduledAds: Ad[]

    List of ads which still need to be played.

    -

    Methods

    • Add the given listener for the given event type(s).

      +
    theoads?: TheoAds

    The THEOads API.

    +

    Remarks


    - Only available with the feature 'theoads'.

    +

    Methods

    • Register a custom advertisement integration.

      @@ -35,4 +38,4 @@
      - Prefer scheduling ad breaks up front through SourceConfiguration.ads.

    • Skip the current linear ad.

      Returns void

      Remarks


      - This will have no effect when the current linear ad is (not yet) skippable.

      -
    \ No newline at end of file +
  • \ No newline at end of file diff --git a/theoplayer/static/theoplayer/v8/api-reference/web/interfaces/AdsConfiguration.html b/theoplayer/static/theoplayer/v8/api-reference/web/interfaces/AdsConfiguration.html index e59f2eab0e6..93c4ae78210 100644 --- a/theoplayer/static/theoplayer/v8/api-reference/web/interfaces/AdsConfiguration.html +++ b/theoplayer/static/theoplayer/v8/api-reference/web/interfaces/AdsConfiguration.html @@ -1,8 +1,9 @@ AdsConfiguration | THEOplayer Web SDK

    Interface AdsConfiguration

    Describes the configuration of advertisement.

    -
    interface AdsConfiguration {
        allowedMimeTypes?: string[];
        googleIma?: GoogleImaConfiguration;
        preload?: AdPreloadType;
        showCountdown?: boolean;
        vpaidMode?: VPAIDMode;
    }

    Properties

    interface AdsConfiguration {
        allowedMimeTypes?: string[];
        googleIma?: GoogleImaConfiguration;
        preload?: AdPreloadType;
        showCountdown?: boolean;
        theoads?: boolean;
        vpaidMode?: VPAIDMode;
    }

    Properties

    allowedMimeTypes?: string[]

    Allows configuring which mime types are allowed during ad playback.

    Remarks


    - This feature is only available for Google IMA. @@ -18,7 +19,11 @@

    Default Value

    'midroll-and-postroll'

    Remarks


    - Available since v2.22.9.
    - This feature is only available for Google IMA.

    Default Value

    true

    +
    theoads?: boolean

    Whether to enable THEOads support.

    +

    Remarks


    - Available since 8.2.0. +
    - This must be set to true in order to schedule a TheoAdDescription.

    +

    Default Value

    false

    vpaidMode?: VPAIDMode

    The iframe policy for VPAID ads.

    Remarks


    - This feature is only available for Google IMA and SpotX.

    Default Value

    'enabled'

    -
    \ No newline at end of file +
    \ No newline at end of file diff --git a/theoplayer/static/theoplayer/v8/api-reference/web/interfaces/TheoAdDescription.html b/theoplayer/static/theoplayer/v8/api-reference/web/interfaces/TheoAdDescription.html index d9092a74fd3..0e7a92d4b5a 100644 --- a/theoplayer/static/theoplayer/v8/api-reference/web/interfaces/TheoAdDescription.html +++ b/theoplayer/static/theoplayer/v8/api-reference/web/interfaces/TheoAdDescription.html @@ -1,5 +1,6 @@ TheoAdDescription | THEOplayer Web SDK

    Interface TheoAdDescription

    Describes a THEOads ad break request.

    -

    Remarks


    - For THEOads, one configured ad break request enables server guided ad playback for the entire stream.

    +

    Remarks


    - For THEOads, one configured ad break request enables server guided ad playback for the entire stream. +
    - The player must have AdsConfiguration.theoads enabled in its PlayerConfiguration.

    interface TheoAdDescription {
        adTagParameters?: Record<string, string>;
        backdropDoubleBox?: string;
        backdropLShape?: string;
        customAssetKey?: string;
        integration: "theoads";
        networkCode?: string;
        overrideLayout?: TheoAdsLayoutOverride;
        replaceContent?: boolean;
        sources?: string;
        timeOffset?: string | number;
        useId3?: boolean;
    }

    Hierarchy (view full)

    Properties

    adTagParameters? backdropDoubleBox? backdropLShape? diff --git a/theoplayer/static/theoplayer/v8/api-reference/web/sitemap.xml b/theoplayer/static/theoplayer/v8/api-reference/web/sitemap.xml index 75f75cec8fd..495d296c7cf 100644 --- a/theoplayer/static/theoplayer/v8/api-reference/web/sitemap.xml +++ b/theoplayer/static/theoplayer/v8/api-reference/web/sitemap.xml @@ -2,2014 +2,2014 @@ https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/index.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/hierarchy.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/enums/ErrorCategory.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/enums/ErrorCode.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/classes/ChromelessPlayer.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/classes/MultiViewPlayer.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/classes/Player.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/ABRConfiguration.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/ABRMetadata.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/ABRStrategyConfiguration.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/AES128KeySystemConfiguration.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/Ad.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/AdBreak.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/AdBreakEvent.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/AdBreakInit.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/AdBufferingEvent.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/AdDescription.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/AdEvent.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/AdInit.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/AdMetadataEvent.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/AdSkipEvent.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/AdSource.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/AddCachingTaskEvent.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/AddTrackEvent.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/AddViewEvent.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/Ads.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/AdsConfiguration.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/AdsEventMap.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/AdsManagerLoadedEvent.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/AgamaConfiguration.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/AgamaPlayerConfiguration.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/AgamaSourceConfiguration.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/AirPlay.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/AnalyticsDescription.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/AudioQuality.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/AxinomDRMConfiguration.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/AzureDRMConfiguration.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/Base64Util.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/BaseSource.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/BoundaryC3.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/BoundaryC7.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/BoundaryHalftime.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/BoundaryInfo.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/BufferedSegments.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/Cache.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/CacheEventMap.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/CachingTask.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/CachingTaskEventMap.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/CachingTaskLicense.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/CachingTaskList.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/CachingTaskListEventMap.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/CachingTaskParameters.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/CanPlayEvent.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/CanPlayThroughEvent.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/Canvas.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/Cast.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/CastConfiguration.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/CastEventMap.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/CastStateChangeEvent.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/CertificateResponse.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/Chromecast.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/ChromecastConfiguration.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/ChromecastConnectionCallback.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/ChromecastError.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/ChromecastErrorEvent.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/ChromecastEventMap.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/ChromecastMetadataDescription.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/ChromecastMetadataImage.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/ClearkeyDecryptionKey.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/ClearkeyKeySystemConfiguration.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/Clip.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/ClipEventMap.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/ComcastDRMConfiguration.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/CommonUtils.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/CompanionAd.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/ConaxDRMConfiguration.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/ContentProtectionError.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/ContentProtectionErrorEvent.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/ContentProtectionIntegration.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/ContentProtectionIntegrationFactory.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/ContentProtectionRequest.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/ContentProtectionResponse.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/CsaiAdDescription.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/CurrentSourceChangeEvent.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/DRMConfiguration.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/DRMTodayDRMConfiguration.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/DashPlaybackConfiguration.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/DateRangeCue.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/DeviceBasedTitaniumDRMConfiguration.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/DimensionChangeEvent.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/DurationChangeEvent.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/EmptiedEvent.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/EmsgCue.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/EncryptedEvent.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/EndedEvent.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/EnterBadNetworkModeEvent.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/ErrorEvent.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/Event.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/EventDispatcher.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/EventStreamCue.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/EventedList.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/ExitBadNetworkModeEvent.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/ExpressPlayDRMConfiguration.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/EzdrmDRMConfiguration.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/FairPlayKeySystemConfiguration.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/FreeWheelAdDescription.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/FreeWheelCue.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/FullscreenOptions.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/Geo.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/GlobalCast.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/GlobalChromecast.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/GoogleDAI.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/GoogleDAIConfiguration.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/GoogleDAILiveConfiguration.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/GoogleDAITypedSource.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/GoogleDAIVodConfiguration.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/GoogleImaAd.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/GoogleImaConfiguration.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/HTTPHeaders.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/HespApi.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/HespApiEventMap.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/HespLatencyConfiguration.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/HespSourceConfiguration.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/HespTypedSource.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/HlsPlaybackConfiguration.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/ID3AttachedPicture.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/ID3BaseFrame.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/ID3Comments.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/ID3CommercialFrame.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/ID3Cue.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/ID3GenericEncapsulatedObject.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/ID3InvolvedPeopleList.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/ID3PositionSynchronisationFrame.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/ID3PrivateFrame.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/ID3SynchronizedLyricsText.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/ID3TermsOfUse.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/ID3Text.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/ID3UniqueFileIdentifier.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/ID3Unknown.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/ID3UnsynchronisedLyricsTextTranscription.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/ID3UrlLink.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/ID3UserDefinedText.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/ID3UserDefinedUrlLink.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/ID3Yospace.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/IMAAdDescription.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/Imagine.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/ImagineEventMap.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/ImagineServerSideAdInsertionConfiguration.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/ImagineTrackingEvent.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/ImagineTypedSource.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/IntentToFallbackEvent.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/InterceptableRequest.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/InterceptableResponse.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/IrdetoDRMConfiguration.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/KeyOSDRMConfiguration.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/KeyOSFairplayKeySystemConfiguration.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/KeyOSKeySystemConfiguration.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/KeySystemConfiguration.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/LatencyConfiguration.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/LatencyManager.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/LayoutChangeEvent.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/LicenseRequest.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/LicenseResponse.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/LinearAd.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/List.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/LoadedDataEvent.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/LoadedMetadataEvent.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/MeasurableNetworkEstimator.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/MediaError.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/MediaFile.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/MediaMelonConfiguration.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/MediaTailorSource.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/MediaTrack.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/MediaTrackEventMap.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/MediaTrackList.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/MetadataDescription.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/Metrics.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/MoatConfiguration.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/MultiViewPlayerEventMap.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/Network.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/NetworkEstimator.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/NetworkEstimatorController.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/NetworkEventMap.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/NetworkInterceptorController.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/NonLinearAd.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/PauseEvent.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/PiPConfiguration.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/PlayEvent.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/PlayReadyKeySystemConfiguration.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/PlayerConfiguration.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/PlayerEventMap.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/PlayerList.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/PlayingEvent.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/Presentation.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/PresentationEventMap.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/PresentationModeChangeEvent.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/ProgressEvent.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/PublicationLoadStartEvent.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/PublicationLoadedEvent.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/PublicationOfflineEvent.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/Quality.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/QualityEvent.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/QualityEventMap.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/QualityList.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/RateChangeEvent.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/ReadyStateChangeEvent.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/RelatedContent.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/RelatedContentEventMap.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/RelatedContentSource.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/RemoveCachingTaskEvent.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/RemoveTrackEvent.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/RemoveViewEvent.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/Representation.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/RepresentationChangeEvent.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/Request.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/RequestInit.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/RequestMeasurer.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/ResponseInit.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/RetryConfiguration.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/SeekedEvent.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/SeekingEvent.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/ServerSideAdInsertionConfiguration.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/ServerSideAdIntegrationController.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/ServerSideAdIntegrationHandler.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/SmartSightConfiguration.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/SocialSharing.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/SocialSharingItem.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/SourceAbrConfiguration.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/SourceChangeEvent.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/SourceConfiguration.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/SourceDescription.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/SourceLatencyConfiguration.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/SpotXAdDescription.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/SpotxData.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/SpotxQueryParameter.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/StreamOneConfiguration.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/THEOplayerError.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/TTMLCue.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/TTMLExtent.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/TargetQualityChangedEvent.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/TextTrack.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/TextTrackAddCueEvent.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/TextTrackCue.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/TextTrackCueChangeEvent.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/TextTrackCueEnterEvent.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/TextTrackCueEventMap.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/TextTrackCueExitEvent.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/TextTrackCueList.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/TextTrackCueUpdateEvent.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/TextTrackDescription.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/TextTrackEnterCueEvent.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/TextTrackError.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/TextTrackErrorEvent.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/TextTrackEventMap.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/TextTrackExitCueEvent.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/TextTrackReadyStateChangeEvent.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/TextTrackRemoveCueEvent.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/TextTrackStyle.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/TextTrackStyleEventMap.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/TextTrackTypeChangeEvent.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/TextTrackUpdateCueEvent.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/TextTracksList.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/TheoAdDescription.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/TheoLiveApi.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/TheoLiveApiEventMap.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/TheoLiveConfiguration.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/TheoLivePublication.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/TheoLiveSource.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/ThumbnailResolution.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/TimeRanges.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/TimeUpdateEvent.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/TitaniumDRMConfiguration.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/TokenBasedTitaniumDRMConfiguration.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/Track.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/TrackChangeEvent.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/TrackEventMap.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/TrackList.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/TrackListEventMap.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/TrackUpdateEvent.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/TypedSource.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/UIConfiguration.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/UIPlayerConfiguration.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/UIRelatedContent.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/UIRelatedContentEventMap.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/UniversalAdId.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/UpNextBar.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/UpNextManager.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/UpNextPanel.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/UpNextSource.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/UpdateQualityEvent.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/UplynkDRMConfiguration.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/UserActions.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/VR.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/VRConfiguration.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/VRDirection.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/VREventMap.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/VRPlayerConfiguration.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/VendorCast.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/VendorCastEventMap.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/VerimatrixDRMConfiguration.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/VerizonMedia.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/VerizonMediaAd.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/VerizonMediaAdBeginEvent.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/VerizonMediaAdBreak.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/VerizonMediaAdBreakBeginEvent.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/VerizonMediaAdBreakEndEvent.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/VerizonMediaAdBreakEventMap.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/VerizonMediaAdBreakList.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/VerizonMediaAdBreakListEventMap.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/VerizonMediaAdBreakSkipEvent.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/VerizonMediaAdCompleteEvent.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/VerizonMediaAdEndEvent.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/VerizonMediaAdEventMap.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/VerizonMediaAdFirstQuartileEvent.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/VerizonMediaAdList.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/VerizonMediaAdListEventMap.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/VerizonMediaAdMidpointEvent.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/VerizonMediaAdThirdQuartileEvent.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/VerizonMediaAddAdBreakEvent.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/VerizonMediaAddAssetEvent.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/VerizonMediaAds.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/VerizonMediaAsset.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/VerizonMediaAssetEventMap.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/VerizonMediaAssetInfoResponse.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/VerizonMediaAssetInfoResponseEvent.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/VerizonMediaAssetList.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/VerizonMediaConfiguration.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/VerizonMediaEventMap.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/VerizonMediaExternalId.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/VerizonMediaPingConfiguration.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/VerizonMediaPingErrorEvent.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/VerizonMediaPingResponse.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/VerizonMediaPingResponseEvent.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/VerizonMediaPreplayBaseResponse.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/VerizonMediaPreplayLiveResponse.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/VerizonMediaPreplayResponseEvent.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/VerizonMediaPreplayVodResponse.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/VerizonMediaRemoveAdBreakEvent.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/VerizonMediaRemoveAdEvent.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/VerizonMediaRemoveAssetEvent.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/VerizonMediaResponseDrm.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/VerizonMediaResponseLiveAd.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/VerizonMediaResponseLiveAdBreak.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/VerizonMediaResponseLiveAds.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/VerizonMediaResponseVodAd.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/VerizonMediaResponseVodAdBreak.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/VerizonMediaResponseVodAdBreakOffset.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/VerizonMediaResponseVodAdPlaceholder.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/VerizonMediaResponseVodAds.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/VerizonMediaSource.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/VerizonMediaUiConfiguration.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/VerizonMediaUpdateAdBreakEvent.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/VideoFrameCallbackMetadata.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/VideoQuality.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/View.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/ViewChangeEvent.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/ViewPositionChangeEvent.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/VimondDRMConfiguration.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/Visibility.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/VisibilityObserver.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/VolumeChangeEvent.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/VudrmDRMConfiguration.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/WaitingEvent.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/WebAudio.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/WebVTTCue.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/WebVTTRegion.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/XstreamDRMConfiguration.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/YouboraOptions.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/types/ABRStrategy.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/types/ABRStrategyType.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/types/AccessibilityRole.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/types/AdIntegrationKind.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/types/AdPreloadType.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/types/AdReadyState.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/types/AdSourceType.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/types/AdType.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/types/AgamaAnalyticsIntegrationID.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/types/AgamaLogLevelType.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/types/AgamaServiceName.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/types/AgamaStreamType.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/types/AnalyticsIntegrationID.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/types/AxinomIntegrationID.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/types/AzureIntegrationID.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/types/Boundary.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/types/BufferSource.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/types/CacheStatus.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/types/CacheTaskStatus.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/types/CastState.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/types/CertificateRequest.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/types/ChromecastErrorCode.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/types/ChromecastMetadataType.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/types/ComcastIntegrationID.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/types/ConaxIntegrationID.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/types/ContentProtectionErrorCode.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/types/ContentProtectionRequestSubType.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/types/CrossOriginSetting.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/types/CustomAdIntegrationKind.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/types/DAIAvailabilityType.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/types/DRMTodayIntegrationID.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/types/DeliveryType.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/types/DirectionChangeEvent.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/types/EdgeStyle.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/types/EventListener.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/types/EventMap.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/types/ExpressPlayIntegrationID.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/types/EzdrmIntegrationID.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/types/FreeWheelAdUnitType.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/types/GoogleDAISSAIIntegrationID.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/types/HespMediaType.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/types/HlsDiscontinuityAlignment.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/types/ID3Frame.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/types/ImagineSSAIIntegrationID.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/types/IrdetoIntegrationID.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/types/JoinStrategy.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/types/KeyOSIntegrationID.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/types/KeySystemId.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/types/LicenseType.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/types/MaybeAsync.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/types/MediaErrorCode.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/types/MediaType.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/types/MoatAnalyticsIntegrationID.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/types/MultiViewPlayerLayout.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/types/MutedAutoplayConfiguration.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/types/NodeStyleVoidCallback.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/types/PiPPosition.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/types/PreloadType.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/types/PresentationMode.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/types/RelatedChangeEvent.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/types/RelatedHideEvent.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/types/RelatedShowEvent.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/types/RequestBody.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/types/RequestInterceptor.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/types/RequestLike.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/types/RequestMethod.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/types/RequestSubType.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/types/RequestType.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/types/ResponseBody.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/types/ResponseInterceptor.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/types/ResponseLike.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/types/ResponseType.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/types/SSAIIntegrationId.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/types/SeamlessPeriodSwitchStrategy.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/types/SeamlessSwitchStrategy.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/types/ServerSideAdIntegrationFactory.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/types/SkippedAdStrategy.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/types/SmartSightIntegrationID.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/types/Source.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/types/SourceIntegrationId.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/types/Sources.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/types/StateChangeEvent.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/types/StereoChangeEvent.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/types/StreamOneAnalyticsIntegrationID.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/types/StreamType.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/types/StringKeyOf.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/types/StylePropertyRecord.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/types/THEOplayerAdDescription.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/types/TextTrackErrorCode.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/types/TextTrackReadyState.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/types/TextTrackType.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/types/TheoAdsLayoutOverride.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/types/TitaniumIntegrationID.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/types/UILanguage.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/types/UplynkIntegrationID.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/types/VPAIDMode.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/types/VRPanoramaMode.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/types/VRState.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/types/VRStereoMode.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/types/VTTAlignSetting.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/types/VTTDirectionSetting.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/types/VTTLine.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/types/VTTLineAlignSetting.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/types/VTTPosition.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/types/VTTPositionAlignSetting.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/types/VTTScrollSetting.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/types/VerimatrixIntegrationID.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/types/VerizonMediaAssetId.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/types/VerizonMediaAssetMovieRating.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/types/VerizonMediaAssetTvRating.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/types/VerizonMediaAssetType.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/types/VerizonMediaPreplayResponse.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/types/VerizonMediaPreplayResponseType.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/types/VideoFrameRequestCallback.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/types/VimondIntegrationID.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/types/VisibilityObserverCallback.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/types/VoidPromiseCallback.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/types/VudrmIntegrationID.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/types/WaitUntilCallback.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/types/WidevineKeySystemConfiguration.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/types/XstreamIntegrationID.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/types/YospaceId.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/types/YouboraAnalyticsIntegrationID.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/variables/cache-1.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/variables/cast-1.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/variables/features.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/variables/playerSuiteVersion.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/variables/players.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/variables/utils.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/variables/version.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/functions/registerContentProtectionIntegration.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/modules/ErrorCategory-1.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/functions/ErrorCategory-1.fromCode.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/modules/videojs.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z https://www.theoplayer.com/docs/theoplayer/v8/api-reference/web/interfaces/videojs.Player.html - 2024-10-03T11:03:26.787Z + 2024-10-10T08:55:27.645Z diff --git a/theoplayer/version.txt b/theoplayer/version.txt index 6b409d977b8..fbb9ea12de3 100644 --- a/theoplayer/version.txt +++ b/theoplayer/version.txt @@ -1 +1 @@ -8.1.2 +8.2.0