mirror of https://git.ffmpeg.org/ffmpeg.git
ljpegenc: rename the encoding function.
The new name is more consistent with the rest of Libav.
This commit is contained in:
parent
72c0b8f724
commit
0cdbc4d393
|
@ -57,7 +57,7 @@ typedef struct LJpegEncContext {
|
|||
uint16_t (*scratch)[4];
|
||||
} LJpegEncContext;
|
||||
|
||||
static int encode_picture_lossless(AVCodecContext *avctx, AVPacket *pkt,
|
||||
static int ljpeg_encode_frame(AVCodecContext *avctx, AVPacket *pkt,
|
||||
const AVFrame *pict, int *got_packet)
|
||||
{
|
||||
LJpegEncContext *s = avctx->priv_data;
|
||||
|
@ -289,7 +289,7 @@ AVCodec ff_ljpeg_encoder = {
|
|||
.id = AV_CODEC_ID_LJPEG,
|
||||
.priv_data_size = sizeof(LJpegEncContext),
|
||||
.init = ljpeg_encode_init,
|
||||
.encode2 = encode_picture_lossless,
|
||||
.encode2 = ljpeg_encode_frame,
|
||||
.close = ljpeg_encode_close,
|
||||
.pix_fmts = (const enum AVPixelFormat[]){ AV_PIX_FMT_YUVJ420P,
|
||||
AV_PIX_FMT_YUVJ422P,
|
||||
|
|
Loading…
Reference in New Issue