Interface ILoggingContext
Represents an object that exposes an FFmpeg AVClass for logging.
Namespace: FFmpeg.Logging
Assembly: FFmpeg.dll
Syntax
public interface ILoggingContext
Remarks
This interface is implemented by types that can participate in FFmpeg's logging system. The returned pointer is passed to FFmpeg logging functions so that log messages can be associated with the corresponding native object.
Properties
View SourceAVClassPointer
Gets a pointer to the native AVClass associated with this object.
Declaration
void* AVClassPointer { get; }
Property Value
| Type | Description |
|---|---|
| void* |
Remarks
The returned pointer is intended for use with FFmpeg's logging API and should not be dereferenced or modified by user code.