Bump V1 to 1.5.10 + Fix incorrect Javadoc

-------------
Created by MOE: https://github.com/google/moe
MOE_MIGRATED_REVID=129966073
This commit is contained in:
olly 2016-08-11 02:49:13 -07:00 committed by Oliver Woodman
parent a2dfc62e08
commit 9092c5665b
5 changed files with 11 additions and 5 deletions

View File

@ -6,6 +6,13 @@ ExoPlayer 2.x is a major rewrite that's still under development. We suggest
following our [Medium page](https://medium.com/google-exoplayer) to learn more, following our [Medium page](https://medium.com/google-exoplayer) to learn more,
as we work toward writing more complete documentation and the first 2.x release. as we work toward writing more complete documentation and the first 2.x release.
### r1.5.10 ###
* HLS: Stability fixes.
* MP4: Support for stz2 Atoms.
* Enable 4K format selection on Sony AndroidTV + nVidia SHIELD.
* TX3G caption fixes.
### r1.5.9 ### ### r1.5.9 ###
* MP4: Fixed incorrect sniffing in some cases (#1523). * MP4: Fixed incorrect sniffing in some cases (#1523).

View File

@ -178,7 +178,7 @@ public final class AudioTrack {
/** /**
* Whether to enable a workaround for an issue where an audio effect does not keep its session * Whether to enable a workaround for an issue where an audio effect does not keep its session
* active across releasing/initializing a new audio track, on platform API version < 21. * active across releasing/initializing a new audio track, on platform API version before 21.
* <p> * <p>
* The flag must be set before creating a player. * The flag must be set before creating a player.
*/ */

View File

@ -16,7 +16,7 @@
package com.google.android.exoplayer2.metadata; package com.google.android.exoplayer2.metadata;
/** /**
* Decodes objects of type <T> from binary data. * Decodes metadata from binary data.
* *
* @param <T> The type of the metadata. * @param <T> The type of the metadata.
*/ */

View File

@ -54,7 +54,6 @@ import org.xmlpull.v1.XmlPullParserFactory;
* <li>time-offset-with-frames * <li>time-offset-with-frames
* <li>time-offset-with-ticks * <li>time-offset-with-ticks
* </ul> * </ul>
* </p>
* @see <a href="http://www.w3.org/TR/ttaf1-dfxp/">TTML specification</a> * @see <a href="http://www.w3.org/TR/ttaf1-dfxp/">TTML specification</a>
*/ */
public final class TtmlDecoder extends SimpleSubtitleDecoder { public final class TtmlDecoder extends SimpleSubtitleDecoder {

View File

@ -746,8 +746,8 @@ public final class Util {
* filesystems. FAT32 is the most restrictive of all filesystems still commonly used today. * filesystems. FAT32 is the most restrictive of all filesystems still commonly used today.
* *
* <p>For simplicity, this only handles common characters known to be illegal on FAT32: * <p>For simplicity, this only handles common characters known to be illegal on FAT32:
* <, >, :, ", /, \, |, ?, and *. % is also escaped since it is used as the escape character. * &lt;, &gt;, :, ", /, \, |, ?, and *. % is also escaped since it is used as the escape
* Escaping is performed in a consistent way so that no collisions occur and * character. Escaping is performed in a consistent way so that no collisions occur and
* {@link #unescapeFileName(String)} can be used to retrieve the original file name. * {@link #unescapeFileName(String)} can be used to retrieve the original file name.
* *
* @param fileName File name to be escaped. * @param fileName File name to be escaped.