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
53b44524
authored
May 26, 2022
by
ibaker
Committed by
Marc Baechinger
May 26, 2022
Browse files
Options
_('Browse Files')
Download
Email Patches
Plain Diff
Fix typos flagged by lint
PiperOrigin-RevId: 451135097
parent
b8769b27
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
4 additions
and
4 deletions
library/common/src/main/java/com/google/android/exoplayer2/BasePlayer.java
library/core/src/main/java/com/google/android/exoplayer2/trackselection/DefaultTrackSelector.java
library/core/src/main/java/com/google/android/exoplayer2/video/spherical/Projection.java
testutils/src/main/java/com/google/android/exoplayer2/testutil/DataSourceContractTest.java
library/common/src/main/java/com/google/android/exoplayer2/BasePlayer.java
View file @
53b44524
...
...
@@ -92,7 +92,7 @@ public abstract class BasePlayer implements Player {
/**
* {@inheritDoc}
*
* <p>BasePlayer and its descend
e
nts will return {@code true}.
* <p>BasePlayer and its descend
a
nts will return {@code true}.
*/
@Override
public
final
boolean
canAdvertiseSession
()
{
...
...
library/core/src/main/java/com/google/android/exoplayer2/trackselection/DefaultTrackSelector.java
View file @
53b44524
...
...
@@ -649,7 +649,7 @@ public class DefaultTrackSelector extends MappingTrackSelector {
* supported by the audio and video renderers for the selected tracks.
*
* <p>Tunneling is known to have many device specific issues and limitations. Manual testing is
* strongly recomended to check that the media plays correctly when this option is enabled. See
* strongly recom
m
ended to check that the media plays correctly when this option is enabled. See
* [#9661](https://github.com/google/ExoPlayer/issues/9661),
* [#9133](https://github.com/google/ExoPlayer/issues/9133),
* [#9317](https://github.com/google/ExoPlayer/issues/9317),
...
...
library/core/src/main/java/com/google/android/exoplayer2/video/spherical/Projection.java
View file @
53b44524
...
...
@@ -113,7 +113,7 @@ import java.lang.annotation.Target;
for
(
int
i
=
0
;
i
<
longitudes
+
1
;
++
i
)
{
// For each vertical edge in the band.
for
(
int
k
=
0
;
k
<
2
;
++
k
)
{
// For low and high points on an edge.
// For each point, determine it
'
s position in polar coordinates.
// For each point, determine its position in polar coordinates.
float
phi
=
k
==
0
?
phiLow
:
phiHigh
;
float
theta
=
quadWidthRads
*
i
+
(
float
)
Math
.
PI
-
horizontalFovRads
/
2
;
...
...
testutils/src/main/java/com/google/android/exoplayer2/testutil/DataSourceContractTest.java
View file @
53b44524
...
...
@@ -63,7 +63,7 @@ import org.mockito.Mockito;
*
* <p>Most implementations should pass all these tests. If necessary, subclasses can disable tests
* by overriding the {@link Test @Test} method with a no-op implementation. It's recommended (but
* not required) to also annotate this {@link Ignore @Ignore} so that JUnit correc
lt
y reports the
* not required) to also annotate this {@link Ignore @Ignore} so that JUnit correc
tl
y reports the
* test as skipped/ignored instead of passing.
*/
@RequiresApi
(
19
)
...
...
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