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
..
2021-07-23 14:14:31 +01:00
2021-07-21 14:51:49 +01:00
2021-07-20 08:51:12 +01:00
2021-07-20 08:51:12 +01:00
2021-07-21 14:35:35 +01:00
2021-07-20 08:56:43 +01:00
2021-07-21 18:58:47 +01:00
2021-05-12 11:50:31 +01:00
2021-05-17 18:20:33 +01:00

ExoPlayer website

The ExoPlayer website is hosted on GitHub Pages, and is statically generated using Jekyll.

  • GitHub provides a guide describing how to setup a GitHub Pages site using Jekyll here.
  • GitHub provides a guide describing how to test changes to the site locally here. Once your machine is setup, you can build and run a local instance of the site using ./run_locally.sh from the root directory.