AV module

VideoContext

Base video context from which all video encoders and decoders derive.

VideoContext

#include <icy/av/videocontext.h>

Subclassed by: VideoDecoder, VideoEncoder

Base video context from which all video encoders and decoders derive.

Public Attributes

ReturnNameDescription
PacketSignalemitter
VideoCodeciparamsinput parameters
VideoCodecoparamsoutput parameters
AVStream *streamencoder or decoder stream
AVCodecContext *ctxencoder or decoder context
const AVCodec *codecencoder or decoder codec
AVFrame *frameencoder or decoder frame
std::unique_ptr< VideoConverter >convvideo conversion context
int64_ttimestream time in codec time base
int64_tptslast packet pts value
doublesecondsvideo time in seconds
std::stringerrorerror message

emitter

PacketSignal emitter

iparams

VideoCodec iparams

input parameters


oparams

VideoCodec oparams

output parameters


stream

AVStream * stream

encoder or decoder stream


ctx

AVCodecContext * ctx

encoder or decoder context


codec

const AVCodec * codec

encoder or decoder codec


frame

AVFrame * frame

encoder or decoder frame


conv

std::unique_ptr< VideoConverter > conv

video conversion context


time

int64_t time

stream time in codec time base


pts

int64_t pts

last packet pts value


seconds

double seconds

video time in seconds


error

std::string error

error message

Public Methods

ReturnNameDescription
VideoContext
VideoContextDeleted constructor.
VideoContextDeleted constructor.
voidcreate virtualInitialise the AVCodecContext with codec-specific defaults. Overridden by VideoEncoder and VideoDecoder.
voidopen virtualOpen the codec and create the pixel format conversion context if required. Throws std::runtime_error if the codec context has not been created.
voidclose virtualClose the codec context, free the frame, and reset timestamps.
booldecode virtualDecode a compressed video packet and emit the resulting frame.
boolencode virtualEncode a buffer of interleaved video data.
boolencode virtualEncode a planar video frame.
boolencode virtualEncode a single AVFrame.
voidflush virtualFlush any frames buffered inside the codec and emit remaining output.
AVFrame *convert virtualConvert the video frame and return the result.
boolrecreateConverter virtualRecreate the VideoConverter if the input or output parameters have changed. Called automatically by open() and convert().

VideoContext

VideoContext()

VideoContext

VideoContext(const VideoContext &) = delete

Deleted constructor.


VideoContext

VideoContext(VideoContext &&) = delete

Deleted constructor.


create

virtual

virtual void create()

Initialise the AVCodecContext with codec-specific defaults. Overridden by VideoEncoder and VideoDecoder.


open

virtual

virtual void open()

Open the codec and create the pixel format conversion context if required. Throws std::runtime_error if the codec context has not been created.


close

virtual

virtual void close()

Close the codec context, free the frame, and reset timestamps.


decode

virtual

virtual bool decode(AVPacket & ipacket)

Decode a compressed video packet and emit the resulting frame.

Parameters

  • ipacket The compressed video packet to decode.

Returns

True if an output frame was decoded and emitted, false otherwise.


encode

virtual

virtual bool encode(uint8_t * data, int size, int64_t pts)

Encode a buffer of interleaved video data.

Parameters

  • data Pointer to the interleaved frame buffer.

  • size Size of the buffer in bytes.

  • pts Presentation timestamp in stream time base units.

Returns

True if an encoded packet was produced and emitted.


encode

virtual

virtual bool encode(uint8_t * data, int linesize, int64_t pts)

Encode a planar video frame.

Parameters

  • data Array of per-plane data pointers (up to 4 planes).

  • linesize Array of per-plane byte strides.

  • pts Presentation timestamp in stream time base units.

Returns

True if an encoded packet was produced and emitted.


encode

virtual

virtual bool encode(AVFrame * iframe)

Encode a single AVFrame.

Parameters

  • iframe The source video frame; must have all fields set correctly.

Returns

True if an encoded packet was produced and emitted.


flush

virtual

virtual void flush()

Flush any frames buffered inside the codec and emit remaining output.


convert

virtual

virtual AVFrame * convert(AVFrame * iframe)

Convert the video frame and return the result.

The input frame will only be converted if it doesn't match the output format. If the frame is not converted the input frame will be returned. If the input frame format does not match the [VideoConverter](icy-av-VideoConverter.html#videoconverter) context then the [VideoConverter](icy-av-VideoConverter.html#videoconverter) will be recreated with the input frame params.


recreateConverter

virtual

virtual bool recreateConverter()

Recreate the VideoConverter if the input or output parameters have changed. Called automatically by open() and convert().

Returns

True if the converter was (re)created, false if it is already up to date.