Move SubtitleExtractor to text package

PiperOrigin-RevId: 399400909
This commit is contained in:
bachinger 2021-09-28 11:35:41 +01:00
parent ed23b2905b
commit 3e7b2d06c1
4 changed files with 4 additions and 4 deletions

View File

@ -28,7 +28,7 @@ import com.google.android.exoplayer2.drm.DrmSessionManagerProvider;
import com.google.android.exoplayer2.extractor.DefaultExtractorsFactory;
import com.google.android.exoplayer2.extractor.Extractor;
import com.google.android.exoplayer2.extractor.ExtractorsFactory;
import com.google.android.exoplayer2.extractor.subtitle.SubtitleExtractor;
import com.google.android.exoplayer2.extractor.text.SubtitleExtractor;
import com.google.android.exoplayer2.offline.StreamKey;
import com.google.android.exoplayer2.source.ads.AdsLoader;
import com.google.android.exoplayer2.source.ads.AdsMediaSource;

View File

@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.google.android.exoplayer2.extractor.subtitle;
package com.google.android.exoplayer2.extractor.text;
import static com.google.android.exoplayer2.util.Assertions.checkState;
import static com.google.android.exoplayer2.util.Assertions.checkStateNotNull;

View File

@ -14,6 +14,6 @@
* limitations under the License.
*/
@NonNullApi
package com.google.android.exoplayer2.extractor.subtitle;
package com.google.android.exoplayer2.extractor.text;
import com.google.android.exoplayer2.util.NonNullApi;

View File

@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.google.android.exoplayer2.extractor.subtitle;
package com.google.android.exoplayer2.extractor.text;
import static com.google.common.truth.Truth.assertThat;
import static org.junit.Assert.assertThrows;