mirror of
https://github.com/samsonjs/media.git
synced 2026-04-17 13:15:47 +00:00
Minor tweaks to merged pull requests.
------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=112161860
This commit is contained in:
parent
be2aedbd53
commit
949317a41a
2 changed files with 10 additions and 10 deletions
|
|
@ -22,6 +22,13 @@ import com.google.android.exoplayer.upstream.TransferListener;
|
|||
import com.google.android.exoplayer.util.Assertions;
|
||||
import com.google.android.exoplayer.util.Predicate;
|
||||
|
||||
import okhttp3.CacheControl;
|
||||
import okhttp3.HttpUrl;
|
||||
import okhttp3.OkHttpClient;
|
||||
import okhttp3.Request;
|
||||
import okhttp3.RequestBody;
|
||||
import okhttp3.Response;
|
||||
|
||||
import java.io.EOFException;
|
||||
import java.io.IOException;
|
||||
import java.io.InputStream;
|
||||
|
|
@ -31,13 +38,6 @@ import java.util.List;
|
|||
import java.util.Map;
|
||||
import java.util.concurrent.atomic.AtomicReference;
|
||||
|
||||
import okhttp3.CacheControl;
|
||||
import okhttp3.HttpUrl;
|
||||
import okhttp3.OkHttpClient;
|
||||
import okhttp3.Request;
|
||||
import okhttp3.RequestBody;
|
||||
import okhttp3.Response;
|
||||
|
||||
/**
|
||||
* An {@link HttpDataSource} that delegates to Square's {@link OkHttpClient}.
|
||||
*/
|
||||
|
|
|
|||
|
|
@ -394,11 +394,11 @@ public final class TsExtractor implements Extractor {
|
|||
streamType = TS_STREAM_TYPE_H265;
|
||||
}
|
||||
break;
|
||||
} else if (descriptorTag == 0x6a) {
|
||||
} else if (descriptorTag == 0x6A) {
|
||||
streamType = TS_STREAM_TYPE_AC3;
|
||||
} else if (descriptorTag == 0x7a) {
|
||||
} else if (descriptorTag == 0x7A) {
|
||||
streamType = TS_STREAM_TYPE_E_AC3;
|
||||
} else if (descriptorTag == 0x7b) {
|
||||
} else if (descriptorTag == 0x7B) {
|
||||
// TODO: TS_STREAM_TYPE_DTS;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue