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.