61 const uint8_t *
src,
int src_plane_size,
int nplanes)
67 if (dst_size < 2LL * src_plane_size * nplanes || src_plane_size <= 0)
70 for (p = 0; p < nplanes; p++) {
72 const uint8_t *src_plane = src + p;
73 const uint8_t *src_plane_end = src_plane + src_plane_size * nplanes;
77 for (; ; src_plane += nplanes) {
78 if (src_plane < src_plane_end && *src_plane == prev && count < 0x3F) {
83 if (count != 1 || prev >= 0xC0)
84 *dst++ = 0xC0 |
count;
87 if (src_plane == src_plane_end)
97 return dst - dst_start;
108 int bpp, nplanes,
i,
y, line_bytes, written,
ret, max_pkt_size,
sw, sh;
109 const uint32_t *pal =
NULL;
110 uint32_t palette256[256];
117 if (avctx->
width > 65535 || avctx->
height > 65535) {
140 pal = (uint32_t *)pict->
data[1];
152 line_bytes = (avctx->
width * bpp + 7) >> 3;
153 line_bytes = (line_bytes + 1) & ~1;
155 max_pkt_size = 128 + avctx->
height * 2 * line_bytes * nplanes + (pal ? 256*3 + 1 : 0);
163 if (sw > 0xFFFFu || sh > 0xFFFFu)
166 bytestream_put_byte(&buf, 10);
167 bytestream_put_byte(&buf, 5);
168 bytestream_put_byte(&buf, 1);
169 bytestream_put_byte(&buf, bpp);
170 bytestream_put_le16(&buf, 0);
171 bytestream_put_le16(&buf, 0);
172 bytestream_put_le16(&buf, avctx->
width - 1);
173 bytestream_put_le16(&buf, avctx->
height - 1);
174 bytestream_put_le16(&buf, sw);
175 bytestream_put_le16(&buf, sh);
176 for (i = 0; i < 16; i++)
177 bytestream_put_be24(&buf, pal ? pal[i] : 0);
178 bytestream_put_byte(&buf, 0);
179 bytestream_put_byte(&buf, nplanes);
180 bytestream_put_le16(&buf, line_bytes);
182 while (buf - pkt->
data < 128)
187 for (y = 0; y < avctx->
height; y++) {
189 src, line_bytes, nplanes)) < 0) {
197 if (nplanes == 1 && bpp == 8) {
198 if (buf_end - buf < 257) {
202 bytestream_put_byte(&buf, 12);
203 for (i = 0; i < 256; i++) {
204 bytestream_put_be24(&buf, pal[i]);
This structure describes decoded (raw) audio or video data.
packed RGB 8:8:8, 24bpp, RGBRGB...
AVFrame * coded_frame
the picture in the bitstream
static av_cold int init(AVCodecContext *avctx)
AVRational sample_aspect_ratio
sample aspect ratio (0 if unknown) That is the width of a pixel divided by the height of the pixel...
enum AVPixelFormat pix_fmt
Pixel format, see AV_PIX_FMT_xxx.
packed RGB 1:2:1, 8bpp, (msb)1B 2G 1R(lsb)
8 bit with PIX_FMT_RGB32 palette
#define AV_PKT_FLAG_KEY
The packet contains a keyframe.
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
static int pcx_rle_encode(uint8_t *dst, int dst_size, const uint8_t *src, int src_plane_size, int nplanes)
PCX run-length encoder.
void av_log(void *avcl, int level, const char *fmt,...)
int avpriv_set_systematic_pal2(uint32_t pal[256], enum AVPixelFormat pix_fmt)
const char * name
Name of the codec implementation.
int flags
A combination of AV_PKT_FLAG values.
int av_reduce(int *dst_num, int *dst_den, int64_t num, int64_t den, int64_t max)
Reduce a fraction.
enum AVPictureType pict_type
Picture type of the frame.
packed RGB 1:2:1, 8bpp, (msb)1R 2G 1B(lsb)
int width
picture width / height.
static int pcx_encode_frame(AVCodecContext *avctx, AVPacket *pkt, const AVFrame *frame, int *got_packet)
int ff_alloc_packet2(AVCodecContext *avctx, AVPacket *avpkt, int size)
Check AVPacket size and/or allocate data.
packed RGB 3:3:2, 8bpp, (msb)2B 3G 3R(lsb)
int linesize[AV_NUM_DATA_POINTERS]
For video, size in bytes of each picture line.
normalize analysis window sw
main external API structure.
struct PCXContext PCXContext
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
void avcodec_get_frame_defaults(AVFrame *frame)
Set the fields of the given AVFrame to default values.
synthesis window for stochastic i
uint8_t * data[AV_NUM_DATA_POINTERS]
pointer to the picture/channel planes.
Y , 1bpp, 0 is black, 1 is white, in each byte pixels are ordered from the msb to the lsb...
common internal api header.
packed RGB 3:3:2, 8bpp, (msb)2R 3G 3B(lsb)
else dst[i][x+y *dst_stride[i]]
int key_frame
1 -> keyframe, 0-> not
static const uint32_t monoblack_pal[16]
static av_cold int pcx_encode_init(AVCodecContext *avctx)
AVPixelFormat
Pixel format.
This structure stores compressed data.