Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
SDK
/
exoplayer
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Settings
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
a83fe511
authored
Aug 13, 2021
by
olly
Committed by
Oliver Woodman
Aug 17, 2021
Browse files
Options
_('Browse Files')
Download
Email Patches
Plain Diff
Move DecryptionException into decoder package
PiperOrigin-RevId: 390582804
parent
88a637bc
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
6 additions
and
3 deletions
RELEASENOTES.md
extensions/opus/src/main/java/com/google/android/exoplayer2/ext/opus/OpusDecoder.java
extensions/vp9/src/main/java/com/google/android/exoplayer2/ext/vp9/VpxDecoder.java
library/common/src/main/java/com/google/android/exoplayer2/drm/DecryptionException.java → library/common/src/main/java/com/google/android/exoplayer2/decoder/DecryptionException.java
RELEASENOTES.md
View file @
a83fe511
# Release notes
# Release notes
### dev-v2 (not yet released)
### dev-v2 (not yet released)
*
Core Library:
*
Core Library:
*
Move
`com.google.android.exoplayer2.device.DeviceInfo`
to
*
Move
`com.google.android.exoplayer2.device.DeviceInfo`
to
`com.google.android.exoplayer2.DeviceInfo`
.
`com.google.android.exoplayer2.DeviceInfo`
.
*
Move
`com.google.android.exoplayer2.drm.DecryptionException`
to
`com.google.android.exoplayer2.decoder.DecryptionException`
.
*
Make
`ExoPlayer.Builder`
return a
`SimpleExoPlayer`
instance.
*
Make
`ExoPlayer.Builder`
return a
`SimpleExoPlayer`
instance.
*
Deprecate
`SimpleExoPlayer.Builder`
. Use
`ExoPlayer.Builder`
instead.
*
Deprecate
`SimpleExoPlayer.Builder`
. Use
`ExoPlayer.Builder`
instead.
*
Android 12 compatibility:
*
Android 12 compatibility:
...
...
extensions/opus/src/main/java/com/google/android/exoplayer2/ext/opus/OpusDecoder.java
View file @
a83fe511
...
@@ -23,9 +23,9 @@ import com.google.android.exoplayer2.C;
...
@@ -23,9 +23,9 @@ import com.google.android.exoplayer2.C;
import
com.google.android.exoplayer2.audio.OpusUtil
;
import
com.google.android.exoplayer2.audio.OpusUtil
;
import
com.google.android.exoplayer2.decoder.CryptoInfo
;
import
com.google.android.exoplayer2.decoder.CryptoInfo
;
import
com.google.android.exoplayer2.decoder.DecoderInputBuffer
;
import
com.google.android.exoplayer2.decoder.DecoderInputBuffer
;
import
com.google.android.exoplayer2.decoder.DecryptionException
;
import
com.google.android.exoplayer2.decoder.SimpleDecoder
;
import
com.google.android.exoplayer2.decoder.SimpleDecoder
;
import
com.google.android.exoplayer2.decoder.SimpleOutputBuffer
;
import
com.google.android.exoplayer2.decoder.SimpleOutputBuffer
;
import
com.google.android.exoplayer2.drm.DecryptionException
;
import
com.google.android.exoplayer2.drm.ExoMediaCrypto
;
import
com.google.android.exoplayer2.drm.ExoMediaCrypto
;
import
com.google.android.exoplayer2.util.Assertions
;
import
com.google.android.exoplayer2.util.Assertions
;
import
com.google.android.exoplayer2.util.Util
;
import
com.google.android.exoplayer2.util.Util
;
...
...
extensions/vp9/src/main/java/com/google/android/exoplayer2/ext/vp9/VpxDecoder.java
View file @
a83fe511
...
@@ -23,8 +23,8 @@ import androidx.annotation.VisibleForTesting;
...
@@ -23,8 +23,8 @@ import androidx.annotation.VisibleForTesting;
import
com.google.android.exoplayer2.C
;
import
com.google.android.exoplayer2.C
;
import
com.google.android.exoplayer2.decoder.CryptoInfo
;
import
com.google.android.exoplayer2.decoder.CryptoInfo
;
import
com.google.android.exoplayer2.decoder.DecoderInputBuffer
;
import
com.google.android.exoplayer2.decoder.DecoderInputBuffer
;
import
com.google.android.exoplayer2.decoder.DecryptionException
;
import
com.google.android.exoplayer2.decoder.SimpleDecoder
;
import
com.google.android.exoplayer2.decoder.SimpleDecoder
;
import
com.google.android.exoplayer2.drm.DecryptionException
;
import
com.google.android.exoplayer2.drm.ExoMediaCrypto
;
import
com.google.android.exoplayer2.drm.ExoMediaCrypto
;
import
com.google.android.exoplayer2.util.Assertions
;
import
com.google.android.exoplayer2.util.Assertions
;
import
com.google.android.exoplayer2.util.Util
;
import
com.google.android.exoplayer2.util.Util
;
...
...
library/common/src/main/java/com/google/android/exoplayer2/d
rm
/DecryptionException.java
→
library/common/src/main/java/com/google/android/exoplayer2/d
ecoder
/DecryptionException.java
View file @
a83fe511
...
@@ -13,7 +13,7 @@
...
@@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* See the License for the specific language governing permissions and
* limitations under the License.
* limitations under the License.
*/
*/
package
com
.
google
.
android
.
exoplayer2
.
d
rm
;
package
com
.
google
.
android
.
exoplayer2
.
d
ecoder
;
/** Thrown when a non-platform component fails to decrypt data. */
/** Thrown when a non-platform component fails to decrypt data. */
public
class
DecryptionException
extends
Exception
{
public
class
DecryptionException
extends
Exception
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment