From 6d00fe58b563c9aa8dd9a0733e7306a5acec2b05 Mon Sep 17 00:00:00 2001 From: ivanbuper Date: Wed, 12 Mar 2025 10:25:51 -0700 Subject: [PATCH] Remove deprecated `BaseAudioProcessor` in `exoplayer` module `BaseAudioProcessor` was moved to `common` over two years ago. PiperOrigin-RevId: 736179562 --- RELEASENOTES.md | 2 ++ .../exoplayer/audio/BaseAudioProcessor.java | 25 ------------------- 2 files changed, 2 insertions(+), 25 deletions(-) delete mode 100644 libraries/exoplayer/src/main/java/androidx/media3/exoplayer/audio/BaseAudioProcessor.java diff --git a/RELEASENOTES.md b/RELEASENOTES.md index 1c924235a3..5bb265c82c 100644 --- a/RELEASENOTES.md +++ b/RELEASENOTES.md @@ -74,6 +74,8 @@ `Player.seekToPreviousMediaItem()` instead. * Removed deprecated `Player.seekToNextWindow()`. Use `Player.seekToNextMediaItem()` instead. + * Removed deprecated `BaseAudioProcessor` in `exoplayer` module. Use + `BaseAudioProcessor` under `common` module. ## 1.6 diff --git a/libraries/exoplayer/src/main/java/androidx/media3/exoplayer/audio/BaseAudioProcessor.java b/libraries/exoplayer/src/main/java/androidx/media3/exoplayer/audio/BaseAudioProcessor.java deleted file mode 100644 index 1ea89f58d3..0000000000 --- a/libraries/exoplayer/src/main/java/androidx/media3/exoplayer/audio/BaseAudioProcessor.java +++ /dev/null @@ -1,25 +0,0 @@ -/* - * Copyright (C) 2019 The Android Open Source Project - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ -package androidx.media3.exoplayer.audio; - -import androidx.media3.common.util.UnstableApi; - -/** - * @deprecated Use {@link androidx.media3.common.audio.BaseAudioProcessor}. - */ -@Deprecated -@UnstableApi -public abstract class BaseAudioProcessor extends androidx.media3.common.audio.BaseAudioProcessor {}