com.google.android.exoplayer2.upstream.ParsingLoadable.Parser Java Examples
The following examples show how to use
com.google.android.exoplayer2.upstream.ParsingLoadable.Parser.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: FilteringManifestParser.java From MediaSDK with Apache License 2.0 | 4 votes |
/** * @param parser A parser for the manifest that will be filtered. * @param streamKeys The stream keys. If null or empty then filtering will not occur. */ public FilteringManifestParser(Parser<? extends T> parser, @Nullable List<StreamKey> streamKeys) { this.parser = parser; this.streamKeys = streamKeys; }
Example #2
Source File: FilteringManifestParser.java From TelePlus-Android with GNU General Public License v2.0 | 4 votes |
/** * @param parser A parser for the manifest that will be filtered. * @param streamKeys The stream keys. If null or empty then filtering will not occur. */ public FilteringManifestParser(Parser<T> parser, List<StreamKey> streamKeys) { this.parser = parser; this.streamKeys = streamKeys; }
Example #3
Source File: FilteringManifestParser.java From TelePlus-Android with GNU General Public License v2.0 | 4 votes |
/** * @param parser A parser for the manifest that will be filtered. * @param streamKeys The stream keys. If null or empty then filtering will not occur. */ public FilteringManifestParser(Parser<T> parser, List<StreamKey> streamKeys) { this.parser = parser; this.streamKeys = streamKeys; }
Example #4
Source File: FilteringManifestParser.java From Telegram-FOSS with GNU General Public License v2.0 | 4 votes |
/** * @param parser A parser for the manifest that will be filtered. * @param streamKeys The stream keys. If null or empty then filtering will not occur. */ public FilteringManifestParser(Parser<? extends T> parser, @Nullable List<StreamKey> streamKeys) { this.parser = parser; this.streamKeys = streamKeys; }
Example #5
Source File: FilteringManifestParser.java From Telegram with GNU General Public License v2.0 | 4 votes |
/** * @param parser A parser for the manifest that will be filtered. * @param streamKeys The stream keys. If null or empty then filtering will not occur. */ public FilteringManifestParser(Parser<? extends T> parser, @Nullable List<StreamKey> streamKeys) { this.parser = parser; this.streamKeys = streamKeys; }