Go to the documentation of this file.
27 #define ANSI_MIN_READLINE 509
30 const AVFrame *p,
int *got_packet)
32 int i, j, l, commas,
ret,
size, linesize, lineout, rowsout;
35 linesize = lineout = (avctx->
width + 7) / 8;
36 commas = avctx->
height * linesize;
42 rowsout = (commas + lineout - 1) / lineout;
45 size = rowsout * (lineout * 6 + 1) + 106;
52 buf +=
snprintf(buf, 32,
"#define image_width %u\n", avctx->
width);
53 buf +=
snprintf(buf, 33,
"#define image_height %u\n", avctx->
height);
54 buf +=
snprintf(buf, 39,
"static unsigned char image_bits[] = {\n");
55 for (
i = 0, l = lineout;
i < avctx->
height;
i++) {
56 for (j = 0; j < linesize; j++) {
AVPixelFormat
Pixel format.
This structure describes decoded (raw) audio or video data.
#define ANSI_MIN_READLINE
const uint8_t ff_reverse[256]
@ AV_PIX_FMT_MONOWHITE
Y , 1bpp, 0 is white, 1 is black, in each byte pixels are ordered from the msb to the lsb.
#define AV_PKT_FLAG_KEY
The packet contains a keyframe.
uint8_t * data[AV_NUM_DATA_POINTERS]
pointer to the picture/channel planes.
static int xbm_encode_frame(AVCodecContext *avctx, AVPacket *pkt, const AVFrame *p, int *got_packet)
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification.
int flags
A combination of AV_PKT_FLAG values.
const char * name
Name of the codec implementation.
main external API structure.
This structure stores compressed data.
int width
picture width / height.
int linesize[AV_NUM_DATA_POINTERS]
For video, size in bytes of each picture line.
int ff_alloc_packet2(AVCodecContext *avctx, AVPacket *avpkt, int64_t size, int64_t min_size)
Check AVPacket size and/or allocate data.