Class BitStreamFilterNotFoundException
Represents an exception that is thrown when an FFmpeg bitstream filter cannot be found.
Implements
Inherited Members
Namespace: FFmpeg.Exceptions
Assembly: FFmpeg.dll
Syntax
public class BitStreamFilterNotFoundException : FFmpegException, ISerializable
Remarks
This exception corresponds to the BitstreamFilterNotFound FFmpeg error code. It is typically thrown when attempting to create or access a bitstream filter that is unavailable in the current FFmpeg build.
Constructors
View SourceBitStreamFilterNotFoundException()
Initializes a new instance of the BitStreamFilterNotFoundException class.
Declaration
public BitStreamFilterNotFoundException()
BitStreamFilterNotFoundException(string)
Initializes a new instance of the BitStreamFilterNotFoundException class with a specified error message.
Declaration
public BitStreamFilterNotFoundException(string message)
Parameters
| Type | Name | Description |
|---|---|---|
| string | message | The message that describes the error. |
BitStreamFilterNotFoundException(string, Exception)
Initializes a new instance of the BitStreamFilterNotFoundException class with a specified error message and inner exception.
Declaration
public BitStreamFilterNotFoundException(string message, Exception innerException)
Parameters
| Type | Name | Description |
|---|---|---|
| string | message | The message that describes the error. |
| Exception | innerException | The exception that caused this exception. |