29 #define PUTBITS2(val)\
31 bitbuf |= (val) << bitcnt;\
41 const uint8_t *bitmap,
int linesize,
51 for(y = 0; y <
h; y++) {
53 if (buf_size * 8 <
w * 3 + 32)
64 while (x1 <
w && bitmap[x1] ==
color)
71 }
else if (
len >= 3 &&
len <= 10) {
77 }
else if (
len >= 12 &&
len <= 27) {
85 }
else if (
len >= 29) {
116 buf_size -= q - line_begin;
123 #define PUTBITS4(val)\
125 bitbuf |= (val) << bitcnt;\
136 const uint8_t *bitmap,
int linesize,
146 for(y = 0; y <
h; y++) {
148 if (buf_size * 8 <
w * 6 + 32)
158 color = bitmap[x1++];
159 while (x1 <
w && bitmap[x1] ==
color)
168 }
else if (
len >= 4 &&
len <= 7) {
172 }
else if (
len >= 9 &&
len <= 24) {
177 }
else if (
len >= 25) {
203 buf_size -= q - line_begin;
211 const uint8_t *bitmap,
int linesize,
219 for (y = 0; y <
h; y++) {
221 if (buf_size * 8 <
w * 12 + 24)
229 color = bitmap[x1++];
230 while (x1 <
w && bitmap[x1] ==
color)
242 }
else if (
len > 2) {
264 buf_size -= q - line_begin;
277 int page_id, region_id, clut_id, object_id,
i, bpp_index, page_state;
284 if (
h->num_rects && !
h->rects)
293 bytestream_put_be16(&q, page_id);
297 bytestream_put_be16(&q, avctx->
width - 1);
298 bytestream_put_be16(&q, avctx->
height - 1);
299 bytestream_put_be16(&pseg_len, q - pseg_len - 2);
305 if (buf_size < 8 + h->num_rects * 6)
309 bytestream_put_be16(&q, page_id);
315 *q++ = (
s->object_version << 4) | (page_state << 2) | 3;
317 for (region_id = 0; region_id <
h->num_rects; region_id++) {
320 bytestream_put_be16(&q,
h->rects[region_id]->x);
321 bytestream_put_be16(&q,
h->rects[region_id]->y);
324 bytestream_put_be16(&pseg_len, q - pseg_len - 2);
325 buf_size -= 8 +
h->num_rects * 6;
328 for (clut_id = 0; clut_id <
h->num_rects; clut_id++) {
329 if (buf_size < 6 + h->rects[clut_id]->nb_colors * 6)
334 if (
h->rects[clut_id]->nb_colors <= 4) {
337 }
else if (
h->rects[clut_id]->nb_colors <= 16) {
340 }
else if (
h->rects[clut_id]->nb_colors <= 256) {
351 bytestream_put_be16(&q, page_id);
355 *q++ = (0 << 4) | 0
xf;
357 for(
i = 0;
i <
h->rects[clut_id]->nb_colors;
i++) {
359 *q++ = (1 << (7 - bpp_index)) | (0xf << 1) | 1;
362 uint32_t x= ((uint32_t*)
h->rects[clut_id]->data[1])[
i];
363 a = (x >> 24) & 0xff;
364 r = (x >> 16) & 0xff;
375 bytestream_put_be16(&pseg_len, q - pseg_len - 2);
376 buf_size -= 6 +
h->rects[clut_id]->nb_colors * 6;
380 if (buf_size < h->num_rects * 22)
382 for (region_id = 0; region_id <
h->num_rects; region_id++) {
386 if (
h->rects[region_id]->nb_colors <= 4) {
389 }
else if (
h->rects[region_id]->nb_colors <= 16) {
392 }
else if (
h->rects[region_id]->nb_colors <= 256) {
401 bytestream_put_be16(&q, page_id);
405 *q++ = (
s->object_version << 4) | (0 << 3) | 0x07;
406 bytestream_put_be16(&q,
h->rects[region_id]->w);
407 bytestream_put_be16(&q,
h->rects[region_id]->h);
408 *q++ = ((1 + bpp_index) << 5) | ((1 + bpp_index) << 2) | 0x03;
413 bytestream_put_be16(&q, region_id);
414 *q++ = (0 << 6) | (0 << 4);
419 bytestream_put_be16(&pseg_len, q - pseg_len - 2);
421 buf_size -=
h->num_rects * 22;
425 for (object_id = 0; object_id <
h->num_rects; object_id++) {
426 int (*dvb_encode_rle)(
uint8_t **pq,
int buf_size,
427 const uint8_t *bitmap,
int linesize,
434 if (
h->rects[object_id]->nb_colors <= 4) {
437 }
else if (
h->rects[object_id]->nb_colors <= 16) {
440 }
else if (
h->rects[object_id]->nb_colors <= 256) {
450 bytestream_put_be16(&q, page_id);
454 bytestream_put_be16(&q, object_id);
455 *q++ = (
s->object_version << 4) | (0 << 2) | (0 << 1) | 1;
459 uint8_t *ptop_field_len, *pbottom_field_len, *top_ptr, *bottom_ptr;
464 pbottom_field_len = q;
469 ret = dvb_encode_rle(&q, buf_size,
470 h->rects[object_id]->data[0],
471 h->rects[object_id]->w * 2,
472 h->rects[object_id]->w,
473 h->rects[object_id]->h >> 1);
478 ret = dvb_encode_rle(&q, buf_size,
479 h->rects[object_id]->data[0] +
h->rects[object_id]->w,
480 h->rects[object_id]->w * 2,
481 h->rects[object_id]->w,
482 h->rects[object_id]->h >> 1);
487 bytestream_put_be16(&ptop_field_len, bottom_ptr - top_ptr);
488 bytestream_put_be16(&pbottom_field_len, q - bottom_ptr);
491 bytestream_put_be16(&pseg_len, q - pseg_len - 2);
501 bytestream_put_be16(&q, page_id);
505 bytestream_put_be16(&pseg_len, q - pseg_len - 2);
508 s->object_version = (
s->object_version + 1) & 0
xf;
513 unsigned char *buf,
int buf_size,