Commit 949317a4 by olly Committed by Oliver Woodman

Minor tweaks to merged pull requests.

-------------
Created by MOE: https://github.com/google/moe
MOE_MIGRATED_REVID=112161860
parent be2aedbd
...@@ -22,6 +22,13 @@ import com.google.android.exoplayer.upstream.TransferListener; ...@@ -22,6 +22,13 @@ import com.google.android.exoplayer.upstream.TransferListener;
import com.google.android.exoplayer.util.Assertions; import com.google.android.exoplayer.util.Assertions;
import com.google.android.exoplayer.util.Predicate; 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.EOFException;
import java.io.IOException; import java.io.IOException;
import java.io.InputStream; import java.io.InputStream;
...@@ -31,13 +38,6 @@ import java.util.List; ...@@ -31,13 +38,6 @@ import java.util.List;
import java.util.Map; import java.util.Map;
import java.util.concurrent.atomic.AtomicReference; 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}. * An {@link HttpDataSource} that delegates to Square's {@link OkHttpClient}.
*/ */
......
...@@ -394,11 +394,11 @@ public final class TsExtractor implements Extractor { ...@@ -394,11 +394,11 @@ public final class TsExtractor implements Extractor {
streamType = TS_STREAM_TYPE_H265; streamType = TS_STREAM_TYPE_H265;
} }
break; break;
} else if (descriptorTag == 0x6a) { } else if (descriptorTag == 0x6A) {
streamType = TS_STREAM_TYPE_AC3; streamType = TS_STREAM_TYPE_AC3;
} else if (descriptorTag == 0x7a) { } else if (descriptorTag == 0x7A) {
streamType = TS_STREAM_TYPE_E_AC3; streamType = TS_STREAM_TYPE_E_AC3;
} else if (descriptorTag == 0x7b) { } else if (descriptorTag == 0x7B) {
// TODO: TS_STREAM_TYPE_DTS; // TODO: TS_STREAM_TYPE_DTS;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment