mirror of
https://github.com/samsonjs/media.git
synced 2026-04-10 12:05:47 +00:00
Add video decoder exception class
This will be used in common video renderer and decoder classes. PiperOrigin-RevId: 261287124
This commit is contained in:
parent
0887ab059c
commit
39317048e9
2 changed files with 43 additions and 1 deletions
|
|
@ -15,8 +15,10 @@
|
|||
*/
|
||||
package com.google.android.exoplayer2.ext.vp9;
|
||||
|
||||
import com.google.android.exoplayer2.video.VideoDecoderException;
|
||||
|
||||
/** Thrown when a libvpx decoder error occurs. */
|
||||
public final class VpxDecoderException extends Exception {
|
||||
public final class VpxDecoderException extends VideoDecoderException {
|
||||
|
||||
/* package */ VpxDecoderException(String message) {
|
||||
super(message);
|
||||
|
|
|
|||
|
|
@ -0,0 +1,40 @@
|
|||
/*
|
||||
* 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 com.google.android.exoplayer2.video;
|
||||
|
||||
/** Thrown when a video decoder error occurs. */
|
||||
public class VideoDecoderException extends Exception {
|
||||
|
||||
/**
|
||||
* Creates an instance with the given message.
|
||||
*
|
||||
* @param message The detail message for this exception.
|
||||
*/
|
||||
public VideoDecoderException(String message) {
|
||||
super(message);
|
||||
}
|
||||
|
||||
/**
|
||||
* Creates an instance with the given message and cause.
|
||||
*
|
||||
* @param message The detail message for this exception.
|
||||
* @param cause the cause (which is saved for later retrieval by the {@link #getCause()} method).
|
||||
* A <tt>null</tt> value is permitted, and indicates that the cause is nonexistent or unknown.
|
||||
*/
|
||||
public VideoDecoderException(String message, Throwable cause) {
|
||||
super(message, cause);
|
||||
}
|
||||
}
|
||||
Loading…
Reference in a new issue