Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit c580d458 authored by Santiago Seifert's avatar Santiago Seifert
Browse files

Fix javadoc which was broken with renames

Bug: 150855597
Test: Not applicable.
Change-Id: I3f168736b612d65000d94314665b50c82adaa7f5
parent 87962f9d
Loading
Loading
Loading
Loading
+6 −6
Original line number Diff line number Diff line
@@ -104,12 +104,12 @@ import java.util.Map;
 *     private int bytesWrittenCount = 0;
 *
 *     @Override
 *     public void onSeekMap(int i, @NonNull MediaFormat mediaFormat) {
 *     public void onSeekMapFound(int i, @NonNull MediaFormat mediaFormat) {
 *       // Do nothing.
 *     }
 *
 *     @Override
 *     public void onTrackData(int i, @NonNull TrackData trackData) {
 *     public void onTrackDataFound(int i, @NonNull TrackData trackData) {
 *       MediaFormat mediaFormat = trackData.mediaFormat;
 *       if (videoTrackIndex == -1 &&
 *           mediaFormat
@@ -120,7 +120,7 @@ import java.util.Map;
 *     }
 *
 *     @Override
 *     public void onSampleData(int trackIndex, @NonNull InputReader inputReader)
 *     public void onSampleDataFound(int trackIndex, @NonNull InputReader inputReader)
 *         throws IOException {
 *       int numberOfBytesToRead = (int) inputReader.getLength();
 *       if (videoTrackIndex != trackIndex) {
@@ -387,9 +387,9 @@ public final class MediaParser {
         * @param flags Flags associated with the sample. See {@link MediaCodec
         *     MediaCodec.BUFFER_FLAG_*}.
         * @param size The size of the sample data, in bytes.
         * @param offset The number of bytes that have been consumed by {@code onSampleData(int,
         *     MediaParser.InputReader)} for the specified track, since the last byte belonging to
         *     the sample whose metadata is being passed.
         * @param offset The number of bytes that have been consumed by {@code
         *     onSampleDataFound(int, MediaParser.InputReader)} for the specified track, since the
         *     last byte belonging to the sample whose metadata is being passed.
         * @param cryptoData Encryption data required to decrypt the sample. May be null for
         *     unencrypted samples.
         */