From d5c80a31e8416a89315a18acedc64ecf0facebc2 Mon Sep 17 00:00:00 2001 From: andrewlewis Date: Thu, 24 Mar 2016 05:38:00 -0700 Subject: [PATCH] Update list of ExoPlayer extractors in FrameworkSampleSource.java. ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=118021856 --- .../google/android/exoplayer/FrameworkSampleSource.java | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/library/src/main/java/com/google/android/exoplayer/FrameworkSampleSource.java b/library/src/main/java/com/google/android/exoplayer/FrameworkSampleSource.java index d80411b355..d736ac2260 100644 --- a/library/src/main/java/com/google/android/exoplayer/FrameworkSampleSource.java +++ b/library/src/main/java/com/google/android/exoplayer/FrameworkSampleSource.java @@ -42,10 +42,11 @@ import java.util.UUID; *

* Warning - This class is marked as deprecated because there are known device specific issues * associated with its use, including playbacks not starting, playbacks stuttering and other - * miscellaneous failures. For mp4, m4a, mp3, webm, mkv, mpeg-ts and aac playbacks it is strongly - * recommended to use {@link ExtractorSampleSource} instead. Where this is not possible this class - * can still be used, but please be aware of the associated risks. Playing container formats for - * which an ExoPlayer extractor does not yet exist (e.g. ogg) is a valid use case of this class. + * miscellaneous failures. For mp4, m4a, mp3, webm, mkv, mpeg-ts, ogg, wav and aac playbacks it is + * strongly recommended to use {@link ExtractorSampleSource} instead. Where this is not possible + * this class can still be used, but please be aware of the associated risks. Playing container + * formats for which an ExoPlayer extractor does not yet exist (e.g. avi) is a valid use case of + * this class. *

* Over time we hope to enhance {@link ExtractorSampleSource} to support more formats, and hence * make use of this class unnecessary.