Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
SDK
/
exoplayer
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Settings
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
733cd609
authored
Mar 03, 2022
by
ibaker
Committed by
Ian Baker
Mar 03, 2022
Browse files
Options
_('Browse Files')
Download
Email Patches
Plain Diff
More 2.17.0 release note fixes
#minor-release PiperOrigin-RevId: 432154626
parent
ad81d5dd
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
22 additions
and
22 deletions
RELEASENOTES.md
RELEASENOTES.md
View file @
733cd609
...
@@ -22,7 +22,7 @@
...
@@ -22,7 +22,7 @@
(
[
#9996
](
https://github.com/google/ExoPlayer/issues/9996
)
).
(
[
#9996
](
https://github.com/google/ExoPlayer/issues/9996
)
).
*
RTSP:
*
RTSP:
*
Add RTP reader for HEVC
*
Add RTP reader for HEVC
(
[
#36
](
https://github.com/androidx/media/pull/36
)
)
(
[
#36
](
https://github.com/androidx/media/pull/36
)
)
.
*
Remove deprecated symbols:
*
Remove deprecated symbols:
*
Remove
`Player.Listener.onTracksChanged`
. Use
*
Remove
`Player.Listener.onTracksChanged`
. Use
`Player.Listener.onTracksInfoChanged`
instead.
`Player.Listener.onTracksInfoChanged`
instead.
...
@@ -90,9 +90,9 @@ This release corresponds to the
...
@@ -90,9 +90,9 @@ This release corresponds to the
*
Change
`AudioCapabilities`
APIs to require passing explicitly
*
Change
`AudioCapabilities`
APIs to require passing explicitly
`AudioCapabilities.DEFAULT_AUDIO_CAPABILITIES`
instead of
`null`
.
`AudioCapabilities.DEFAULT_AUDIO_CAPABILITIES`
instead of
`null`
.
*
Allow customization of the
`AudioTrack`
buffer size calculation by
*
Allow customization of the
`AudioTrack`
buffer size calculation by
injecting an
`AudioTrackBufferSizeProvider`
to
`DefaultAudioSink`
.
injecting an
`AudioTrackBufferSizeProvider`
to
`DefaultAudioSink`
(
[
#8891
](
https://github.com/google/ExoPlayer/issues/8891
)
).
(
[
#8891
](
https://github.com/google/ExoPlayer/issues/8891
)
).
*
Retry
`AudioTrack`
creation if the requested buffer size was > 1MB
.
*
Retry
`AudioTrack`
creation if the requested buffer size was > 1MB
(
[
#9712
](
https://github.com/google/ExoPlayer/issues/9712
)
).
(
[
#9712
](
https://github.com/google/ExoPlayer/issues/9712
)
).
*
Extractors:
*
Extractors:
*
Fix incorrect parsing of H.265 SPS NAL units
*
Fix incorrect parsing of H.265 SPS NAL units
...
@@ -194,38 +194,38 @@ This release corresponds to the
...
@@ -194,38 +194,38 @@ This release corresponds to the
(
[
#9528
](
https://github.com/google/ExoPlayer/issues/9528
)
).
(
[
#9528
](
https://github.com/google/ExoPlayer/issues/9528
)
).
*
Remove deprecated symbols:
*
Remove deprecated symbols:
*
Remove
`Player.EventLister`
. Use
`Player.Listener`
instead.
*
Remove
`Player.EventLister`
. Use
`Player.Listener`
instead.
*
Remove
`MediaSourceFactory
#
setDrmSessionManager`
,
*
Remove
`MediaSourceFactory
.
setDrmSessionManager`
,
`MediaSourceFactory
#
setDrmHttpDataSourceFactory`
, and
`MediaSourceFactory
.
setDrmHttpDataSourceFactory`
, and
`MediaSourceFactory
#
setDrmUserAgent`
. Use
`MediaSourceFactory
.
setDrmUserAgent`
. Use
`MediaSourceFactory
#
setDrmSessionManagerProvider`
instead.
`MediaSourceFactory
.
setDrmSessionManagerProvider`
instead.
*
Remove
`MediaSourceFactory
#
setStreamKeys`
. Use
*
Remove
`MediaSourceFactory
.
setStreamKeys`
. Use
`MediaItem.Builder
#
setStreamKeys`
instead.
`MediaItem.Builder
.
setStreamKeys`
instead.
*
Remove
`MediaSourceFactory
#
createMediaSource(Uri)`
. Use
*
Remove
`MediaSourceFactory
.
createMediaSource(Uri)`
. Use
`MediaSourceFactory
#
createMediaSource(MediaItem)`
instead.
`MediaSourceFactory
.
createMediaSource(MediaItem)`
instead.
*
Remove
`setTag`
from
`DashMediaSource`
,
`HlsMediaSource`
and
*
Remove
`setTag`
from
`DashMediaSource`
,
`HlsMediaSource`
and
`SsMediaSource`
. Use
`MediaItem.Builder
#
setTag`
instead.
`SsMediaSource`
. Use
`MediaItem.Builder
.
setTag`
instead.
*
Remove
`DashMediaSource
#
setLivePresentationDelayMs(long, boolean)`
. Use
*
Remove
`DashMediaSource
.
setLivePresentationDelayMs(long, boolean)`
. Use
`MediaItem.Builder
#
setLiveConfiguration`
and
`MediaItem.Builder
.
setLiveConfiguration`
and
`MediaItem.LiveConfiguration.Builder
#
setTargetOffsetMs`
to override the
`MediaItem.LiveConfiguration.Builder
.
setTargetOffsetMs`
to override the
manifest, or
`DashMediaSource
#
setFallbackTargetLiveOffsetMs`
to provide
manifest, or
`DashMediaSource
.
setFallbackTargetLiveOffsetMs`
to provide
a fallback value.
a fallback value.
*
Remove
`(Simple)ExoPlayer.setThrowsWhenUsingWrongThread`
. Opting out of
*
Remove
`(Simple)ExoPlayer.setThrowsWhenUsingWrongThread`
. Opting out of
the thread enforcement is no longer possible.
the thread enforcement is no longer possible.
*
Remove
`ActionFile`
and
`ActionFileUpgradeUtil`
. Use ExoPlayer 2.16.1 or
*
Remove
`ActionFile`
and
`ActionFileUpgradeUtil`
. Use ExoPlayer 2.16.1 or
before to use
`ActionFileUpgradeUtil`
to merge legacy action files into
before to use
`ActionFileUpgradeUtil`
to merge legacy action files into
`DefaultDownloadIndex`
.
`DefaultDownloadIndex`
.
*
Remove
`ProgressiveMediaSource
#
setExtractorsFactory`
. Use
*
Remove
`ProgressiveMediaSource
.
setExtractorsFactory`
. Use
`ProgressiveMediaSource.Factory(DataSource.Factory, ExtractorsFactory)`
`ProgressiveMediaSource.Factory(DataSource.Factory, ExtractorsFactory)`
constructor instead.
constructor instead.
*
Remove
`ProgressiveMediaSource.Factory
#setTag`
and,
and
*
Remove
`ProgressiveMediaSource.Factory
.setTag`
and
`ProgressiveMediaSource.Factory
#
setCustomCacheKey`
. Use
`ProgressiveMediaSource.Factory
.
setCustomCacheKey`
. Use
`MediaItem.Builder
#setTag`
and
`MediaItem.Builder#
setCustomCacheKey`
`MediaItem.Builder
.setTag`
and
`MediaItem.Builder.
setCustomCacheKey`
instead.
instead.
*
Remove
`DefaultRenderersFactory(Context, @ExtensionRendererMode int)`
*
Remove
`DefaultRenderersFactory(Context, @ExtensionRendererMode int)`
and
`DefaultRenderersFactory(Context, @ExtensionRendererMode int, long)`
and
`DefaultRenderersFactory(Context, @ExtensionRendererMode int, long)`
constructors. Use the
`DefaultRenderersFactory(Context)`
constructor,
constructors. Use the
`DefaultRenderersFactory(Context)`
constructor,
`DefaultRenderersFactory
#
setExtensionRendererMode`
, and
`DefaultRenderersFactory
.
setExtensionRendererMode`
, and
`DefaultRenderersFactory
#
setAllowedVideoJoiningTimeMs`
instead.
`DefaultRenderersFactory
.
setAllowedVideoJoiningTimeMs`
instead.
*
Remove all public
`CronetDataSource`
constructors. Use
*
Remove all public
`CronetDataSource`
constructors. Use
`CronetDataSource.Factory`
instead.
`CronetDataSource.Factory`
instead.
*
Change the following
`IntDefs`
to
`@Target(TYPE_USE)`
only. This may break
*
Change the following
`IntDefs`
to
`@Target(TYPE_USE)`
only. This may break
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment