Commit de67030f by tonihei Committed by Santiago Seifert

Add back VpxOutputBuffer proguard config.

This is needed to support old binary builds that still rely on the
existance of this class.

PiperOrigin-RevId: 344799495
parent f8041e1b
...@@ -9,3 +9,9 @@ ...@@ -9,3 +9,9 @@
-keep class com.google.android.exoplayer2.video.VideoDecoderOutputBuffer { -keep class com.google.android.exoplayer2.video.VideoDecoderOutputBuffer {
*; *;
} }
# The deprecated VpxOutputBuffer might be used by old binary versions. Remove
# once VpxOutputBuffer is removed.
-keep class com.google.android.exoplayer2.ext.vp9.VpxOutputBuffer {
*;
}
...@@ -18,7 +18,8 @@ package com.google.android.exoplayer2.ext.vp9; ...@@ -18,7 +18,8 @@ package com.google.android.exoplayer2.ext.vp9;
import com.google.android.exoplayer2.video.VideoDecoderOutputBuffer; import com.google.android.exoplayer2.video.VideoDecoderOutputBuffer;
// TODO(b/139174707): Delete this class once binaries in WVVp9OpusPlaybackTest are updated to depend // TODO(b/139174707): Delete this class once binaries in WVVp9OpusPlaybackTest are updated to depend
// on VideoDecoderOutputBuffer. Also mark VideoDecoderOutputBuffer as final. // on VideoDecoderOutputBuffer. Also mark VideoDecoderOutputBuffer as final and remove proguard
// config for VpxOutputBuffer.
/** /**
* Video output buffer, populated by {@link VpxDecoder}. * Video output buffer, populated by {@link VpxDecoder}.
* *
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment