56 #define BS_8BIT_PEL (1 << 1)
57 #define BS_KEYFRAME (1 << 2)
58 #define BS_MV_Y_HALF (1 << 4)
59 #define BS_MV_X_HALF (1 << 5)
60 #define BS_NONREF (1 << 8)
64 typedef struct Plane {
72 #define CELL_STACK_MAX 20
122 static int8_t offsets[8] = { 1, 1, 2, -3, -3, 3, 4, 4 };
123 static int8_t deltas [8] = { 0, 1, 0, 4, 4, 1, 0, 1 };
127 for (i = 0; i < 8; i++) {
129 for (j = 0; j < 128; j++)
130 requant_tab[i][j] = (j + offsets[i]) / step * step + deltas[i];
155 int p, chroma_width, chroma_height;
156 int luma_pitch, chroma_pitch, luma_size, chroma_size;
158 if (luma_width < 16 || luma_width > 640 ||
159 luma_height < 16 || luma_height > 480 ||
160 luma_width & 3 || luma_height & 3) {
162 luma_width, luma_height);
166 ctx->
width = luma_width ;
167 ctx->
height = luma_height;
169 chroma_width =
FFALIGN(luma_width >> 2, 4);
170 chroma_height =
FFALIGN(luma_height >> 2, 4);
172 luma_pitch =
FFALIGN(luma_width, 16);
173 chroma_pitch =
FFALIGN(chroma_width, 16);
177 luma_size = luma_pitch * (luma_height + 1);
181 chroma_size = chroma_pitch * (chroma_height + 1);
184 for (p = 0; p < 3; p++) {
185 ctx->
planes[p].
pitch = !p ? luma_pitch : chroma_pitch;
186 ctx->
planes[p].
width = !p ? luma_width : chroma_width;
187 ctx->
planes[p].
height = !p ? luma_height : chroma_height;
214 for (p = 0; p < 3; p++) {
232 int h, w, mv_x, mv_y,
offset, offset_dst;
236 offset_dst = (cell->
ypos << 2) * plane->
pitch + (cell->
xpos << 2);
243 offset = offset_dst + mv_y * plane->
pitch + mv_x;
248 for (w = cell->
width; w > 0;) {
250 if (!((cell->
xpos << 2) & 15) && w >= 4) {
251 for (; w >= 4; src += 16, dst += 16, w -= 4)
256 if (!((cell->
xpos << 2) & 7) && w >= 2) {
274 #define AVG_32(dst, src, ref) \
275 AV_WN32A(dst, ((AV_RN32A(src) + AV_RN32A(ref)) >> 1) & 0x7F7F7F7FUL)
277 #define AVG_64(dst, src, ref) \
278 AV_WN64A(dst, ((AV_RN64A(src) + AV_RN64A(ref)) >> 1) & 0x7F7F7F7F7F7F7F7FULL)
287 a &= 0xFF00FF00FF00FF00ULL;
290 a &= 0x00FF00FF00FF00FFULL;
312 for (; n > 0; dst += row_offset, n--)
328 #define BUFFER_PRECHECK \
329 if (*data_ptr >= last_ptr) \
330 return IV3_OUT_OF_DATA; \
332 #define RLE_BLOCK_COPY \
333 if (cell->mv_ptr || !skip_flag) \
334 copy_block4(dst, ref, row_offset, row_offset, 4 << v_zoom)
336 #define RLE_BLOCK_COPY_8 \
337 pix64 = AV_RN64A(ref);\
339 pix64 = replicate64(pix64);\
340 fill_64(dst + row_offset, pix64, 7, row_offset);\
341 AVG_64(dst, ref, dst + row_offset);\
343 fill_64(dst, pix64, 8, row_offset)
345 #define RLE_LINES_COPY \
346 copy_block4(dst, ref, row_offset, row_offset, num_lines << v_zoom)
348 #define RLE_LINES_COPY_M10 \
349 pix64 = AV_RN64A(ref);\
350 if (is_top_of_cell) {\
351 pix64 = replicate64(pix64);\
352 fill_64(dst + row_offset, pix64, (num_lines << 1) - 1, row_offset);\
353 AVG_64(dst, ref, dst + row_offset);\
355 fill_64(dst, pix64, num_lines << 1, row_offset)
357 #define APPLY_DELTA_4 \
358 AV_WN16A(dst + line_offset ,\
359 (AV_RN16A(ref ) + delta_tab->deltas[dyad1]) & 0x7F7F);\
360 AV_WN16A(dst + line_offset + 2,\
361 (AV_RN16A(ref + 2) + delta_tab->deltas[dyad2]) & 0x7F7F);\
363 if (is_top_of_cell && !cell->ypos) {\
364 AV_COPY32(dst, dst + row_offset);\
366 AVG_32(dst, ref, dst + row_offset);\
370 #define APPLY_DELTA_8 \
372 if (is_top_of_cell) { \
373 AV_WN32A(dst + row_offset , \
374 (replicate32(AV_RN32A(ref )) + delta_tab->deltas_m10[dyad1]) & 0x7F7F7F7F);\
375 AV_WN32A(dst + row_offset + 4, \
376 (replicate32(AV_RN32A(ref + 4)) + delta_tab->deltas_m10[dyad2]) & 0x7F7F7F7F);\
378 AV_WN32A(dst + row_offset , \
379 (AV_RN32A(ref ) + delta_tab->deltas_m10[dyad1]) & 0x7F7F7F7F);\
380 AV_WN32A(dst + row_offset + 4, \
381 (AV_RN32A(ref + 4) + delta_tab->deltas_m10[dyad2]) & 0x7F7F7F7F);\
386 if (is_top_of_cell && !cell->ypos) {\
387 AV_COPY64(dst, dst + row_offset);\
389 AVG_64(dst, ref, dst + row_offset);
392 #define APPLY_DELTA_1011_INTER \
395 (AV_RN32A(dst ) + delta_tab->deltas_m10[dyad1]) & 0x7F7F7F7F);\
397 (AV_RN32A(dst + 4 ) + delta_tab->deltas_m10[dyad2]) & 0x7F7F7F7F);\
398 AV_WN32A(dst + row_offset , \
399 (AV_RN32A(dst + row_offset ) + delta_tab->deltas_m10[dyad1]) & 0x7F7F7F7F);\
400 AV_WN32A(dst + row_offset + 4, \
401 (AV_RN32A(dst + row_offset + 4) + delta_tab->deltas_m10[dyad2]) & 0x7F7F7F7F);\
404 (AV_RN16A(dst ) + delta_tab->deltas[dyad1]) & 0x7F7F);\
406 (AV_RN16A(dst + 2 ) + delta_tab->deltas[dyad2]) & 0x7F7F);\
407 AV_WN16A(dst + row_offset , \
408 (AV_RN16A(dst + row_offset ) + delta_tab->deltas[dyad1]) & 0x7F7F);\
409 AV_WN16A(dst + row_offset + 2, \
410 (AV_RN16A(dst + row_offset + 2) + delta_tab->deltas[dyad2]) & 0x7F7F);\
416 int pitch,
int h_zoom,
int v_zoom,
int mode,
420 int x,
y,
line, num_lines;
424 unsigned int dyad1, dyad2;
426 int skip_flag = 0, is_top_of_cell, is_first_row = 1;
427 int row_offset, blk_row_offset, line_offset;
430 blk_row_offset = (row_offset << (2 + v_zoom)) - (cell->
width << 2);
431 line_offset = v_zoom ? row_offset : 0;
436 for (y = 0; y < cell->
height; is_first_row = 0, y += 1 + v_zoom) {
437 for (x = 0; x < cell->
width; x += 1 + h_zoom) {
441 if (rle_blocks > 0) {
444 }
else if (mode == 10 && !cell->
mv_ptr) {
449 for (line = 0; line < 4;) {
451 is_top_of_cell = is_first_row && !line;
455 delta_tab = delta[line & 1];
457 delta_tab = delta[1];
459 code = bytestream_get_byte(data_ptr);
461 if (code < delta_tab->num_dyads) {
463 dyad1 = bytestream_get_byte(data_ptr);
465 if (dyad1 >= delta_tab->
num_dyads || dyad1 >= 248)
472 if (swap_quads[line & 1])
473 FFSWAP(
unsigned int, dyad1, dyad2);
477 }
else if (mode == 10 && !cell->
mv_ptr) {
493 num_lines = 257 - code - line;
498 }
else if (mode == 10 && !cell->
mv_ptr) {
504 code = bytestream_get_byte(data_ptr);
505 rle_blocks = (code & 0x1F) - 1;
506 if (code >= 64 || rle_blocks < 0)
508 skip_flag = code & 0x20;
509 num_lines = 4 - line;
510 if (mode >= 10 || (cell->
mv_ptr || !skip_flag)) {
513 }
else if (mode == 10 && !cell->
mv_ptr) {
529 }
else if (mode == 10 && !cell->
mv_ptr) {
540 ref += row_offset * (num_lines << v_zoom);
541 dst += row_offset * (num_lines << v_zoom);
546 block += 4 << h_zoom;
547 ref_block += 4 << h_zoom;
551 ref_block += blk_row_offset;
552 block += blk_row_offset;
575 int x, mv_x, mv_y,
mode, vq_index, prim_indx, second_indx;
577 int offset, error = 0, swap_quads[2];
580 const uint8_t *data_start = data_ptr;
585 vq_index = code & 0xF;
588 offset = (cell->
ypos << 2) * plane->
pitch + (cell->
xpos << 2);
594 if ( mv_x + 4*cell->
xpos < 0
595 || mv_y + 4*cell->
ypos < 0
605 ref_block = block - plane->
pitch;
606 }
else if (mode >= 10) {
614 offset += mv_y * plane->
pitch + mv_x;
621 if (mode == 1 || mode == 4) {
623 prim_indx = (code >> 4) + ctx->
cb_offset;
624 second_indx = (code & 0xF) + ctx->
cb_offset;
627 prim_indx = second_indx = vq_index;
630 if (prim_indx >= 24 || second_indx >= 24) {
631 av_log(avctx,
AV_LOG_ERROR,
"Invalid VQ table indexes! Primary: %d, secondary: %d!\n",
632 prim_indx, second_indx);
636 delta[0] = &
vq_tab[second_indx];
637 delta[1] = &
vq_tab[prim_indx];
638 swap_quads[0] = second_indx >= 16;
639 swap_quads[1] = prim_indx >= 16;
643 if (vq_index >= 8 && ref_block) {
644 for (x = 0; x < cell->
width << 2; x++)
645 ref_block[x] =
requant_tab[vq_index & 7][ref_block[x] & 127];
655 if (mode >= 3 && cell->
mv_ptr) {
660 zoom_fac = mode >= 3;
662 0, zoom_fac, mode, delta, swap_quads,
663 &data_ptr, last_ptr);
667 if (mode == 10 && !cell->
mv_ptr) {
669 1, 1, mode, delta, swap_quads,
670 &data_ptr, last_ptr);
672 if (mode == 11 && !cell->
mv_ptr) {
677 zoom_fac = mode == 10;
679 zoom_fac, 1, mode, delta, swap_quads,
680 &data_ptr, last_ptr);
690 av_log(avctx,
AV_LOG_ERROR,
"Mode %d: RLE code %X is not allowed at the current line\n",
700 av_log(avctx,
AV_LOG_ERROR,
"Mode %d: unsupported RLE code: %X\n", mode, data_ptr[-1]);
707 return data_ptr - data_start;
720 #define SPLIT_CELL(size, new_size) (new_size) = ((size) > 2) ? ((((size) + 2) >> 2) << 1) : 1
722 #define UPDATE_BITPOS(n) \
723 ctx->skip_bits += (n); \
726 #define RESYNC_BITSTREAM \
727 if (ctx->need_resync && !(get_bits_count(&ctx->gb) & 7)) { \
728 skip_bits_long(&ctx->gb, ctx->skip_bits); \
729 ctx->skip_bits = 0; \
730 ctx->need_resync = 0; \
734 if (curr_cell.xpos + curr_cell.width > (plane->width >> 2) || \
735 curr_cell.ypos + curr_cell.height > (plane->height >> 2)) { \
736 av_log(avctx, AV_LOG_ERROR, "Invalid cell: x=%d, y=%d, w=%d, h=%d\n", \
737 curr_cell.xpos, curr_cell.ypos, curr_cell.width, curr_cell.height); \
738 return AVERROR_INVALIDDATA; \
744 const int depth,
const int strip_width)
755 curr_cell = *ref_cell;
763 if (curr_cell.
width > strip_width) {
765 curr_cell.
width = (curr_cell.
width <= (strip_width << 1) ? 1 : 2) * strip_width;
770 if (ref_cell->
width <= 0 || curr_cell.
width <= 0)
779 if (
parse_bintree(ctx, avctx, plane, code, &curr_cell, depth - 1, strip_width))
783 if (!curr_cell.
tree) {
800 mv_y = curr_cell.
mv_ptr[0];
801 mv_x = curr_cell.
mv_ptr[1];
802 if ( mv_x + 4*curr_cell.
xpos < 0
803 || mv_y + 4*curr_cell.
ypos < 0
815 if (!curr_cell.
tree) {
837 bytes_used =
decode_cell(ctx, avctx, plane, &curr_cell,
859 unsigned num_vectors;
863 num_vectors = bytestream_get_le32(&data); data_size -= 4;
864 if (num_vectors > 256) {
866 "Read invalid number of motion vectors %d\n", num_vectors);
869 if (num_vectors * 2 > data_size)
876 init_get_bits(&ctx->
gb, &data[num_vectors * 2], (data_size - num_vectors * 2) << 3);
883 curr_cell.
xpos = curr_cell.
ypos = 0;
893 #define OS_HDR_ID MKBETAG('F', 'R', 'M', 'H')
896 const uint8_t *buf,
int buf_size)
898 const uint8_t *buf_ptr = buf, *bs_hdr;
899 uint32_t frame_num, word2, check_sum, data_size;
900 uint32_t y_offset, u_offset, v_offset, starts[3], ends[3];
905 frame_num = bytestream_get_le32(&buf_ptr);
906 word2 = bytestream_get_le32(&buf_ptr);
907 check_sum = bytestream_get_le32(&buf_ptr);
908 data_size = bytestream_get_le32(&buf_ptr);
910 if ((frame_num ^ word2 ^ data_size ^
OS_HDR_ID) != check_sum) {
919 if (bytestream_get_le16(&buf_ptr) != 32) {
926 ctx->
data_size = (bytestream_get_le32(&buf_ptr) + 7) >> 3;
937 height = bytestream_get_le16(&buf_ptr);
938 width = bytestream_get_le16(&buf_ptr);
942 if (width != ctx->
width || height != ctx->
height) {
945 av_dlog(avctx,
"Frame dimensions changed!\n");
947 if (width < 16 || width > 640 ||
948 height < 16 || height > 480 ||
949 width & 3 || height & 3) {
951 "Invalid picture dimensions: %d x %d!\n", width, height);
960 y_offset = bytestream_get_le32(&buf_ptr);
961 v_offset = bytestream_get_le32(&buf_ptr);
962 u_offset = bytestream_get_le32(&buf_ptr);
966 starts[0] = y_offset;
967 starts[1] = v_offset;
968 starts[2] = u_offset;
970 for (j = 0; j < 3; j++) {
972 for (i = 2; i >= 0; i--)
973 if (starts[i] < ends[j] && starts[i] > starts[j])
989 ctx->
alt_quant = buf_ptr +
sizeof(uint32_t);
1021 int dst_pitch,
int dst_height)
1025 uint32_t pitch = plane->
pitch;
1028 for (y = 0; y < dst_height; y++) {
1030 for (x = 0; x < plane->
width >> 2; x++) {
1036 for (x <<= 2; x < plane->
width; x++)
1037 *dst++ = *src++ << 1;
1039 src += pitch - plane->
width;
1040 dst += dst_pitch - plane->
width;
1066 int buf_size = avpkt->
size;
1117 (avctx->
height + 3) >> 2);
1120 (avctx->
height + 3) >> 2);