media/testutils/src/main/java/com/google/android/exoplayer2/testutil
andrewlewis 9c27cfcda7 Fix parameter names on overridden methods
The dokka javadoc generation tool complains when parameter names don't match between a method and its override. This change updates occurrences where there is currently a mismatch.

Notable renamings that might be controversial:
- `onPlaybackStateChanged(int state)` to `onPlaybackStateChanged(int playbackState)` affected a lot of lines but seems more consistent with other '-Changed' methods.
- `handleMessage(int messageType, Object payload)` to `handleMessage(int messageType, Object message)`
- `ExtractorInput` and `DataSource` inherit `DataReader` which had `read(byte[] target, ...`, while data sources normally called the first parameter `buffer`. I have standardized these all to use `buffer` even though it looks out of place in the `ExtractorInput` interface (which has more `read` methods with `target`).

PiperOrigin-RevId: 387290360
2021-07-28 09:15:29 +01:00
..
truth Merge pull request #8653 from dlafayet:textemphasis 2021-03-24 18:05:46 +00:00
Action.java Deprecate EventListener in favor of Listener 2021-04-30 18:56:35 +01:00
ActionSchedule.java Fix 2 ErrorProneStyle findings: 2021-06-21 22:24:15 +01:00
AdditionalFailureInfo.java Attach resource info to exceptions thrown in DataSourceContractTest 2020-12-14 10:16:53 +00:00
CacheAsserts.java Move DataSource reading methods into Util 2020-10-06 14:30:56 +01:00
CapturingAudioSink.java Rollback of fa6e01312b 2020-11-18 18:40:22 +00:00
CapturingRenderersFactory.java Trigger reconfiguration on newly obtained MediaCodecAdapters 2021-06-02 18:10:01 +01:00
DataSourceContractTest.java Re-word the DataSourceContractTest javadoc 2021-06-21 22:27:02 +01:00
DecoderCountersUtil.java Format Java source files 2021-05-06 13:32:25 +01:00
DefaultRenderersFactoryAsserts.java Remove DRM management from Renderers 2020-02-17 17:40:30 +00:00
DownloadBuilder.java Rollback of fa6e01312b 2020-11-18 18:40:22 +00:00
DummyMainThread.java Use static imports for methods that make sense without their class name 2020-07-27 23:59:52 +01:00
DumpableFormat.java Add ColorInfo to extractor tests' format serialization 2021-05-27 10:43:36 +01:00
Dumper.java Format Java source files 2021-05-06 13:32:25 +01:00
DumpFileAsserts.java Add ABR unit tests 2021-02-09 13:59:49 +00:00
ExoHostedTest.java Make Player.getPlayerError return a PlaybackException 2021-06-15 18:27:48 +01:00
ExoPlayerTestRunner.java Make onPlayerError take a PlaybackException 2021-06-21 22:15:01 +01:00
ExtractorAsserts.java Format Java source files 2021-05-06 13:32:25 +01:00
FailOnCloseDataSink.java Fix CacheWriter to handle potential DataSink write failures 2021-02-23 15:06:38 +00:00
FakeAdaptiveDataSet.java Format Java source files 2021-05-06 13:32:25 +01:00
FakeAdaptiveMediaPeriod.java Make getFallbackSelection nullable to indicate disabling of exclusion 2021-07-27 12:14:04 +01:00
FakeAdaptiveMediaSource.java Re-format some javadoc 2021-04-21 18:46:00 +01:00
FakeAudioRenderer.java Fix audio session ID generation 2021-01-13 00:03:16 +00:00
FakeChunkSource.java Change signature of ChunkSource.onChunkLoadError 2021-06-30 13:26:32 +01:00
FakeClock.java Format Java source files 2021-05-06 13:32:25 +01:00
FakeDataSet.java Format Java source files 2021-05-06 13:32:25 +01:00
FakeDataSource.java Fix parameter names on overridden methods 2021-07-28 09:15:29 +01:00
FakeExoMediaDrm.java Allow repeated DRM provisioning in DefaultDrmSessionManager 2021-06-21 22:18:57 +01:00
FakeExtractorInput.java Fix parameter names on overridden methods 2021-07-28 09:15:29 +01:00
FakeExtractorOutput.java Format Java source files 2021-05-06 13:32:25 +01:00
FakeMediaChunk.java Make DefaultHttpDataSourceFactory an inner class of the built class 2020-12-23 22:51:20 +00:00
FakeMediaChunkIterator.java DataSpec: Deprecate most constructors 2020-02-13 15:43:54 +00:00
FakeMediaClockRenderer.java Change FakeRenderer to take a track type instead of a list of formats 2020-03-19 00:49:10 +00:00
FakeMediaPeriod.java Replace non-inclusively named constant 2021-01-25 17:38:26 +00:00
FakeMediaSource.java Remove deprecated MediaSource.getTag 2021-05-12 11:52:03 +01:00
FakeRenderer.java Remove ExoPlaybackException factory method that doesn't take errorCode 2021-07-09 09:10:19 +01:00
FakeSampleStream.java SampleStream/SampleQueue: Introduce read flags 2021-03-24 18:03:28 +00:00
FakeShuffleOrder.java Merge robolectric_testutils into testutils. 2019-08-09 18:36:32 +01:00
FakeTimeline.java Add missing isPlaceholder forwarding in SinglePeriodAdTimeline 2021-05-06 13:33:06 +01:00
FakeTrackOutput.java Format Java source files 2021-05-06 13:32:25 +01:00
FakeTrackSelection.java Fix parameter names on overridden methods 2021-07-28 09:15:29 +01:00
FakeTrackSelector.java Split mutations method out of TrackSelection 2021-01-25 15:37:38 +00:00
FakeVideoRenderer.java Fix parameter names on overridden methods 2021-07-28 09:15:29 +01:00
HostActivity.java Format Java source files 2021-05-06 13:32:25 +01:00
HttpDataSourceTestEnv.java Add BandaidHttpDataSourceContractTest 2021-03-02 17:02:45 +00:00
MediaPeriodAsserts.java Split mutations method out of TrackSelection 2021-01-25 15:37:38 +00:00
MediaSourceTestRunner.java Use static imports for methods that make sense without their class name 2020-07-27 23:59:52 +01:00
NoUidTimeline.java Migrate ExoPlayerTest.playEmptyTimeline to TestExoPlayer 2020-08-01 12:54:33 +01:00
package-info.java More nullness fixes in testutil 2020-02-03 14:45:22 +00:00
StubExoPlayer.java Deprecate static metadata getter and listener method. 2021-07-21 14:44:00 +01:00
TestExoPlayerBuilder.java Add methods to set/get the seek back/forward increments in test player 2021-07-22 12:03:51 +01:00
TestUtil.java Format Java source files 2021-05-06 13:32:25 +01:00
TimelineAsserts.java Preserve window indices of Timeline when bundling 2021-03-24 18:05:35 +00:00
WebServerDispatcher.java Format Java source files 2021-05-06 13:32:25 +01:00