Remove deprecated BaseAudioProcessor in exoplayer module

`BaseAudioProcessor` was moved to `common` over two years ago.

PiperOrigin-RevId: 736179562
This commit is contained in:
ivanbuper 2025-03-12 10:25:51 -07:00 committed by Copybara-Service
parent 03892cc1b5
commit 6d00fe58b5
2 changed files with 2 additions and 25 deletions

View File

@ -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

View File

@ -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 {}