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
121 static int8_t offsets[8] = { 1, 1, 2, -3, -3, 3, 4, 4 };
122 static int8_t deltas [8] = { 0, 1, 0, 4, 4, 1, 0, 1 };
126 for (i = 0; i < 8; i++) {
128 for (j = 0; j < 128; j++)
129 requant_tab[i][j] = (j + offsets[i]) / step * step + deltas[i];
154 int p, chroma_width, chroma_height;
155 int luma_pitch, chroma_pitch, luma_size, chroma_size;
157 if (luma_width < 16 || luma_width > 640 ||
158 luma_height < 16 || luma_height > 480 ||
159 luma_width & 3 || luma_height & 3) {
161 luma_width, luma_height);
165 ctx->
width = luma_width ;
166 ctx->
height = luma_height;
168 chroma_width =
FFALIGN(luma_width >> 2, 4);
169 chroma_height =
FFALIGN(luma_height >> 2, 4);
171 luma_pitch =
FFALIGN(luma_width, 16);
172 chroma_pitch =
FFALIGN(chroma_width, 16);
176 luma_size = luma_pitch * (luma_height + 1);
180 chroma_size = chroma_pitch * (chroma_height + 1);
183 for (p = 0; p < 3; p++) {
184 ctx->
planes[p].
pitch = !p ? luma_pitch : chroma_pitch;
185 ctx->
planes[p].
width = !p ? luma_width : chroma_width;
186 ctx->
planes[p].
height = !p ? luma_height : chroma_height;
213 for (p = 0; p < 3; p++) {
231 int h, w, mv_x, mv_y,
offset, offset_dst;
235 offset_dst = (cell->
ypos << 2) * plane->
pitch + (cell->
xpos << 2);
244 if ((cell->
ypos << 2) + mv_y < -1 || (cell->
xpos << 2) + mv_x < 0 ||
248 "Motion vectors point out of the frame.\n");
252 offset = offset_dst + mv_y * plane->
pitch + mv_x;
257 for (w = cell->
width; w > 0;) {
259 if (!((cell->
xpos << 2) & 15) && w >= 4) {
260 for (; w >= 4; src += 16, dst += 16, w -= 4)
265 if (!((cell->
xpos << 2) & 7) && w >= 2) {
283 #define AVG_32(dst, src, ref) \
284 AV_WN32A(dst, ((AV_RN32(src) + AV_RN32(ref)) >> 1) & 0x7F7F7F7FUL)
286 #define AVG_64(dst, src, ref) \
287 AV_WN64A(dst, ((AV_RN64(src) + AV_RN64(ref)) >> 1) & 0x7F7F7F7F7F7F7F7FULL)
296 a &= 0xFF00FF00FF00FF00ULL;
299 a &= 0x00FF00FF00FF00FFULL;
321 for (; n > 0; dst += row_offset, n--)
337 #define BUFFER_PRECHECK \
338 if (*data_ptr >= last_ptr) \
339 return IV3_OUT_OF_DATA; \
341 #define RLE_BLOCK_COPY \
342 if (cell->mv_ptr || !skip_flag) \
343 copy_block4(dst, ref, row_offset, row_offset, 4 << v_zoom)
345 #define RLE_BLOCK_COPY_8 \
346 pix64 = AV_RN64(ref);\
348 pix64 = replicate64(pix64);\
349 fill_64(dst + row_offset, pix64, 7, row_offset);\
350 AVG_64(dst, ref, dst + row_offset);\
352 fill_64(dst, pix64, 8, row_offset)
354 #define RLE_LINES_COPY \
355 copy_block4(dst, ref, row_offset, row_offset, num_lines << v_zoom)
357 #define RLE_LINES_COPY_M10 \
358 pix64 = AV_RN64(ref);\
359 if (is_top_of_cell) {\
360 pix64 = replicate64(pix64);\
361 fill_64(dst + row_offset, pix64, (num_lines << 1) - 1, row_offset);\
362 AVG_64(dst, ref, dst + row_offset);\
364 fill_64(dst, pix64, num_lines << 1, row_offset)
366 #define APPLY_DELTA_4 \
367 AV_WN16A(dst + line_offset ,\
368 (AV_RN16(ref ) + delta_tab->deltas[dyad1]) & 0x7F7F);\
369 AV_WN16A(dst + line_offset + 2,\
370 (AV_RN16(ref + 2) + delta_tab->deltas[dyad2]) & 0x7F7F);\
372 if (is_top_of_cell && !cell->ypos) {\
373 AV_COPY32U(dst, dst + row_offset);\
375 AVG_32(dst, ref, dst + row_offset);\
379 #define APPLY_DELTA_8 \
381 if (is_top_of_cell) { \
382 AV_WN32A(dst + row_offset , \
383 (replicate32(AV_RN32(ref )) + delta_tab->deltas_m10[dyad1]) & 0x7F7F7F7F);\
384 AV_WN32A(dst + row_offset + 4, \
385 (replicate32(AV_RN32(ref + 4)) + delta_tab->deltas_m10[dyad2]) & 0x7F7F7F7F);\
387 AV_WN32A(dst + row_offset , \
388 (AV_RN32(ref ) + delta_tab->deltas_m10[dyad1]) & 0x7F7F7F7F);\
389 AV_WN32A(dst + row_offset + 4, \
390 (AV_RN32(ref + 4) + delta_tab->deltas_m10[dyad2]) & 0x7F7F7F7F);\
395 if (is_top_of_cell && !cell->ypos) {\
396 AV_COPY64U(dst, dst + row_offset);\
398 AVG_64(dst, ref, dst + row_offset);
401 #define APPLY_DELTA_1011_INTER \
404 (AV_RN32(dst ) + delta_tab->deltas_m10[dyad1]) & 0x7F7F7F7F);\
406 (AV_RN32(dst + 4 ) + delta_tab->deltas_m10[dyad2]) & 0x7F7F7F7F);\
407 AV_WN32A(dst + row_offset , \
408 (AV_RN32(dst + row_offset ) + delta_tab->deltas_m10[dyad1]) & 0x7F7F7F7F);\
409 AV_WN32A(dst + row_offset + 4, \
410 (AV_RN32(dst + row_offset + 4) + delta_tab->deltas_m10[dyad2]) & 0x7F7F7F7F);\
413 (AV_RN16(dst ) + delta_tab->deltas[dyad1]) & 0x7F7F);\
415 (AV_RN16(dst + 2 ) + delta_tab->deltas[dyad2]) & 0x7F7F);\
416 AV_WN16A(dst + row_offset , \
417 (AV_RN16(dst + row_offset ) + delta_tab->deltas[dyad1]) & 0x7F7F);\
418 AV_WN16A(dst + row_offset + 2, \
419 (AV_RN16(dst + row_offset + 2) + delta_tab->deltas[dyad2]) & 0x7F7F);\
425 int pitch,
int h_zoom,
int v_zoom,
int mode,
429 int x,
y,
line, num_lines;
433 unsigned int dyad1, dyad2;
435 int skip_flag = 0, is_top_of_cell, is_first_row = 1;
436 int row_offset, blk_row_offset, line_offset;
439 blk_row_offset = (row_offset << (2 + v_zoom)) - (cell->
width << 2);
440 line_offset = v_zoom ? row_offset : 0;
445 for (y = 0; y < cell->
height; is_first_row = 0, y += 1 + v_zoom) {
446 for (x = 0; x < cell->
width; x += 1 + h_zoom) {
450 if (rle_blocks > 0) {
453 }
else if (mode == 10 && !cell->
mv_ptr) {
458 for (line = 0; line < 4;) {
460 is_top_of_cell = is_first_row && !line;
464 delta_tab = delta[line & 1];
466 delta_tab = delta[1];
468 code = bytestream_get_byte(data_ptr);
470 if (code < delta_tab->num_dyads) {
472 dyad1 = bytestream_get_byte(data_ptr);
474 if (dyad1 >= delta_tab->
num_dyads || dyad1 >= 248)
481 if (swap_quads[line & 1])
482 FFSWAP(
unsigned int, dyad1, dyad2);
486 }
else if (mode == 10 && !cell->
mv_ptr) {
502 num_lines = 257 - code - line;
507 }
else if (mode == 10 && !cell->
mv_ptr) {
513 code = bytestream_get_byte(data_ptr);
514 rle_blocks = (code & 0x1F) - 1;
515 if (code >= 64 || rle_blocks < 0)
517 skip_flag = code & 0x20;
518 num_lines = 4 - line;
519 if (mode >= 10 || (cell->
mv_ptr || !skip_flag)) {
522 }
else if (mode == 10 && !cell->
mv_ptr) {
538 }
else if (mode == 10 && !cell->
mv_ptr) {
549 ref += row_offset * (num_lines << v_zoom);
550 dst += row_offset * (num_lines << v_zoom);
555 block += 4 << h_zoom;
556 ref_block += 4 << h_zoom;
560 ref_block += blk_row_offset;
561 block += blk_row_offset;
584 int x, mv_x, mv_y,
mode, vq_index, prim_indx, second_indx;
586 int offset, error = 0, swap_quads[2];
589 const uint8_t *data_start = data_ptr;
594 vq_index = code & 0xF;
597 offset = (cell->
ypos << 2) * plane->
pitch + (cell->
xpos << 2);
602 ref_block = block - plane->
pitch;
603 }
else if (mode >= 10) {
615 if ((cell->
ypos << 2) + mv_y < -1 || (cell->
xpos << 2) + mv_x < 0 ||
619 "Motion vectors point out of the frame.\n");
623 offset += mv_y * plane->
pitch + mv_x;
630 if (mode == 1 || mode == 4) {
632 prim_indx = (code >> 4) + ctx->
cb_offset;
633 second_indx = (code & 0xF) + ctx->
cb_offset;
636 prim_indx = second_indx = vq_index;
639 if (prim_indx >= 24 || second_indx >= 24) {
640 av_log(avctx,
AV_LOG_ERROR,
"Invalid VQ table indexes! Primary: %d, secondary: %d!\n",
641 prim_indx, second_indx);
645 delta[0] = &
vq_tab[second_indx];
646 delta[1] = &
vq_tab[prim_indx];
647 swap_quads[0] = second_indx >= 16;
648 swap_quads[1] = prim_indx >= 16;
652 if (vq_index >= 8 && ref_block) {
653 for (x = 0; x < cell->
width << 2; x++)
654 ref_block[x] =
requant_tab[vq_index & 7][ref_block[x] & 127];
664 if (mode >= 3 && cell->
mv_ptr) {
669 zoom_fac = mode >= 3;
671 0, zoom_fac, mode, delta, swap_quads,
672 &data_ptr, last_ptr);
676 if (mode == 10 && !cell->
mv_ptr) {
678 1, 1, mode, delta, swap_quads,
679 &data_ptr, last_ptr);
681 if (mode == 11 && !cell->
mv_ptr) {
686 zoom_fac = mode == 10;
688 zoom_fac, 1, mode, delta, swap_quads,
689 &data_ptr, last_ptr);
699 av_log(avctx,
AV_LOG_ERROR,
"Mode %d: RLE code %X is not allowed at the current line\n",
709 av_log(avctx,
AV_LOG_ERROR,
"Mode %d: unsupported RLE code: %X\n", mode, data_ptr[-1]);
716 return data_ptr - data_start;
729 #define SPLIT_CELL(size, new_size) (new_size) = ((size) > 2) ? ((((size) + 2) >> 2) << 1) : 1
731 #define UPDATE_BITPOS(n) \
732 ctx->skip_bits += (n); \
735 #define RESYNC_BITSTREAM \
736 if (ctx->need_resync && !(get_bits_count(&ctx->gb) & 7)) { \
737 skip_bits_long(&ctx->gb, ctx->skip_bits); \
738 ctx->skip_bits = 0; \
739 ctx->need_resync = 0; \
743 if (curr_cell.xpos + curr_cell.width > (plane->width >> 2) || \
744 curr_cell.ypos + curr_cell.height > (plane->height >> 2)) { \
745 av_log(avctx, AV_LOG_ERROR, "Invalid cell: x=%d, y=%d, w=%d, h=%d\n", \
746 curr_cell.xpos, curr_cell.ypos, curr_cell.width, curr_cell.height); \
747 return AVERROR_INVALIDDATA; \
753 const int depth,
const int strip_width)
763 curr_cell = *ref_cell;
771 if (curr_cell.
width > strip_width) {
773 curr_cell.
width = (curr_cell.
width <= (strip_width << 1) ? 1 : 2) * strip_width;
778 if (ref_cell->
width <= 0 || curr_cell.
width <= 0)
787 if (
parse_bintree(ctx, avctx, plane, code, &curr_cell, depth - 1, strip_width))
791 if (!curr_cell.
tree) {
813 if (!curr_cell.
tree) {
835 bytes_used =
decode_cell(ctx, avctx, plane, &curr_cell,
857 unsigned num_vectors;
861 num_vectors = bytestream_get_le32(&data); data_size -= 4;
862 if (num_vectors > 256) {
864 "Read invalid number of motion vectors %d\n", num_vectors);
867 if (num_vectors * 2 > data_size)
874 init_get_bits(&ctx->
gb, &data[num_vectors * 2], (data_size - num_vectors * 2) << 3);
881 curr_cell.
xpos = curr_cell.
ypos = 0;
891 #define OS_HDR_ID MKBETAG('F', 'R', 'M', 'H')
898 uint32_t frame_num, word2, check_sum, data_size;
899 uint32_t y_offset, u_offset, v_offset, starts[3], ends[3];
906 frame_num = bytestream2_get_le32(&gb);
907 word2 = bytestream2_get_le32(&gb);
908 check_sum = bytestream2_get_le32(&gb);
909 data_size = bytestream2_get_le32(&gb);
911 if ((frame_num ^ word2 ^ data_size ^
OS_HDR_ID) != check_sum) {
919 if (bytestream2_get_le16(&gb) != 32) {
926 ctx->
data_size = (bytestream2_get_le32(&gb) + 7) >> 3;
927 ctx->
cb_offset = bytestream2_get_byte(&gb);
936 height = bytestream2_get_le16(&gb);
937 width = bytestream2_get_le16(&gb);
941 if (width != ctx->
width || height != ctx->
height) {
944 av_dlog(avctx,
"Frame dimensions changed!\n");
946 if (width < 16 || width > 640 ||
947 height < 16 || height > 480 ||
948 width & 3 || height & 3) {
950 "Invalid picture dimensions: %d x %d!\n", width, height);
959 y_offset = bytestream2_get_le32(&gb);
960 v_offset = bytestream2_get_le32(&gb);
961 u_offset = bytestream2_get_le32(&gb);
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])
981 FFMIN3(y_offset, v_offset, u_offset) < gb.
buffer - bs_hdr + 16 ||
1026 uint32_t pitch = plane->
pitch;
1029 for (y = 0; y < dst_height; y++) {
1031 for (x = 0; x < plane->
width >> 2; x++) {
1037 for (x <<= 2; x < plane->
width; x++)
1038 *dst++ = *src++ << 1;
1040 src += pitch - plane->
width;
1041 dst += dst_pitch - plane->
width;
1066 int buf_size = avpkt->
size;
1112 (avctx->
height + 3) >> 2);
1115 (avctx->
height + 3) >> 2);