Table of Contents

avcodec_find_encoder_by_name

Overview

Defined in avcodec.h

Finds an encoder with the specified name.

AVCodec *avcodec_find_encoder_by_name(const char *name);

Parameters

name

const char *name

The name of the requested encoder.

Return value

Returns an encoder AVCodec pointer if one was found, NULL otherwise.

See also

avcodec_find_encoder()


Back to ffmpeg