Go to the source code of this file.
Classes | |
| struct | QtrleEncContext |
Functions | |
| static int | qtrle_encode_init (AVCodecContext *avctx) |
| static void | qtrle_encode_line (QtrleEncContext *s, AVFrame *p, int line, uint8_t **buf) |
| Computes the best RLE sequence for a line. | |
| static int | encode_frame (QtrleEncContext *s, AVFrame *p, uint8_t *buf) |
| Encodes frame including header. | |
| static int | qtrle_encode_frame (AVCodecContext *avctx, uint8_t *buf, int buf_size, void *data) |
| static int | qtrle_encode_end (AVCodecContext *avctx) |
Variables | |
| AVCodec | qtrle_encoder |
| static int qtrle_encode_init | ( | AVCodecContext * | avctx | ) | [static] |
Definition at line 60 of file qtrleenc.c.
| static void qtrle_encode_line | ( | QtrleEncContext * | s, | |
| AVFrame * | p, | |||
| int | line, | |||
| uint8_t ** | buf | |||
| ) | [static] |
Computes the best RLE sequence for a line.
Definition at line 105 of file qtrleenc.c.
Referenced by encode_frame().
| static int encode_frame | ( | QtrleEncContext * | s, | |
| AVFrame * | p, | |||
| uint8_t * | buf | |||
| ) | [static] |
| static int qtrle_encode_frame | ( | AVCodecContext * | avctx, | |
| uint8_t * | buf, | |||
| int | buf_size, | |||
| void * | data | |||
| ) | [static] |
Definition at line 274 of file qtrleenc.c.
| static int qtrle_encode_end | ( | AVCodecContext * | avctx | ) | [static] |
Definition at line 306 of file qtrleenc.c.
Initial value:
{
"qtrle",
CODEC_TYPE_VIDEO,
CODEC_ID_QTRLE,
sizeof(QtrleEncContext),
qtrle_encode_init,
qtrle_encode_frame,
qtrle_encode_end,
.pix_fmts = (enum PixelFormat[]){PIX_FMT_RGB24, -1},
}
Definition at line 317 of file qtrleenc.c.
1.5.5