Show / Hide Table of Contents

Class DecoderNotFoundException

Represents an exception that is thrown when an FFmpeg decoder cannot be found.

Inheritance
object
Exception
FFmpegException
DecoderNotFoundException
Implements
ISerializable
Inherited Members
FFmpegException.ThrowIfError(int)
FFmpegException.ErrorCode
Exception.GetBaseException()
Exception.ToString()
Exception.GetType()
Exception.TargetSite
Exception.Message
Exception.Data
Exception.InnerException
Exception.HelpLink
Exception.Source
Exception.HResult
Exception.StackTrace
Exception.SerializeObjectState
object.MemberwiseClone()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: FFmpeg.Exceptions
Assembly: FFmpeg.dll
Syntax
public class DecoderNotFoundException : FFmpegException, ISerializable
Remarks

This exception corresponds to the DecoderNotFound FFmpeg error code. It is typically thrown when attempting to open a codec for decoding that is not available in the current FFmpeg build or has not been registered.

Constructors

View Source

DecoderNotFoundException()

Initializes a new instance of the DecoderNotFoundException class.

Declaration
public DecoderNotFoundException()
View Source

DecoderNotFoundException(string)

Initializes a new instance of the DecoderNotFoundException class with a specified error message.

Declaration
public DecoderNotFoundException(string message)
Parameters
Type Name Description
string message

The message that describes the error.

View Source

DecoderNotFoundException(string, Exception)

Initializes a new instance of the DecoderNotFoundException class with a specified error message and inner exception.

Declaration
public DecoderNotFoundException(string message, Exception innerException)
Parameters
Type Name Description
string message

The message that describes the error.

Exception innerException

The exception that caused this exception.

Implements

ISerializable
  • View Source
In this article
Back to top Generated by DocFX