mirror of
https://github.com/samsonjs/media.git
synced 2026-03-26 09:35:47 +00:00
Make BaseMediaChunkOutput properly public
I think it was just wrong that it was package private before, since it resulted in our public API referencing something that's not part of the public API: https://google.github.io/ExoPlayer/doc/reference/com/google/android/exoplayer2/source/chunk/BaseMediaChunk.html#init-com.google.android.exoplayer2.source.chunk.BaseMediaChunkOutput- ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=198396555
This commit is contained in:
parent
f073316547
commit
25f4ee22d6
1 changed files with 0 additions and 2 deletions
|
|
@ -15,7 +15,6 @@
|
|||
*/
|
||||
package com.google.android.exoplayer2.source.chunk;
|
||||
|
||||
import android.support.annotation.VisibleForTesting;
|
||||
import android.util.Log;
|
||||
import com.google.android.exoplayer2.extractor.DummyTrackOutput;
|
||||
import com.google.android.exoplayer2.extractor.TrackOutput;
|
||||
|
|
@ -23,7 +22,6 @@ import com.google.android.exoplayer2.source.SampleQueue;
|
|||
import com.google.android.exoplayer2.source.chunk.ChunkExtractorWrapper.TrackOutputProvider;
|
||||
|
||||
/** An output for {@link BaseMediaChunk}s. */
|
||||
@VisibleForTesting(otherwise = VisibleForTesting.PACKAGE_PRIVATE)
|
||||
public final class BaseMediaChunkOutput implements TrackOutputProvider {
|
||||
|
||||
private static final String TAG = "BaseMediaChunkOutput";
|
||||
|
|
|
|||
Loading…
Reference in a new issue