50 #define CVID_HEADER_SIZE 10
51 #define STRIP_HEADER_SIZE 12
52 #define CHUNK_HEADER_SIZE 4
54 #define MB_SIZE 4 //4x4 MBs
55 #define MB_AREA (MB_SIZE * MB_SIZE)
57 #define VECTOR_MAX 6 // six or four entries per vector depending on format
58 #define CODEBOOK_MAX 256 // size of a codebook
60 #define MAX_STRIPS 32 // Note: having fewer choices regarding the number of strips speeds up encoding (obviously)
61 #define MIN_STRIPS 1 // Note: having more strips speeds up encoding the frame (this is less obvious)
131 #define OFFSET(x) offsetof(CinepakEncContext, x)
132 #define VE AV_OPT_FLAG_VIDEO_PARAM | AV_OPT_FLAG_ENCODING_PARAM
134 {
"max_extra_cb_iterations",
"Max extra codebook recalculation passes, more is better and slower",
136 {
"skip_empty_cb",
"Avoid wasting bytes, ignore vintage MacOS decoder",
138 {
"max_strips",
"Limit strips/frame, vintage compatible is 1..3, otherwise the more the better",
140 {
"min_strips",
"Enforce min strips/frame, more is worse and faster, must be <= max_strips",
142 {
"strip_number_adaptivity",
"How fast the strip number adapts, more is slightly better, much slower",
157 int x, mb_count, strip_buf_size, frame_buf_size;
160 av_log(avctx,
AV_LOG_ERROR,
"width and height must be multiples of four (got %ix%i)\n",
165 if (
s->min_min_strips >
s->max_max_strips) {
166 av_log(avctx,
AV_LOG_ERROR,
"minimum number of strips must not exceed maximum (got %i and %i)\n",
167 s->min_min_strips,
s->max_max_strips);
201 if (!(
s->strip_buf =
av_malloc(strip_buf_size)))
204 if (!(
s->frame_buf =
av_malloc(frame_buf_size)))
214 s->frame_buf_size = frame_buf_size;
220 s->last_frame->data[0] =
s->pict_bufs[0];
221 s->last_frame->linesize[0] =
s->w;
222 s->best_frame->data[0] =
s->pict_bufs[1];
223 s->best_frame->linesize[0] =
s->w;
224 s->scratch_frame->data[0] =
s->pict_bufs[2];
225 s->scratch_frame->linesize[0] =
s->w;
228 s->last_frame->data[1] =
s->last_frame->data[0] +
s->w *
s->h;
229 s->last_frame->data[2] =
s->last_frame->data[1] + ((
s->w *
s->h) >> 2);
230 s->last_frame->linesize[1] =
231 s->last_frame->linesize[2] =
s->w >> 1;
233 s->best_frame->data[1] =
s->best_frame->data[0] +
s->w *
s->h;
234 s->best_frame->data[2] =
s->best_frame->data[1] + ((
s->w *
s->h) >> 2);
235 s->best_frame->linesize[1] =
236 s->best_frame->linesize[2] =
s->w >> 1;
238 s->scratch_frame->data[1] =
s->scratch_frame->data[0] +
s->w *
s->h;
239 s->scratch_frame->data[2] =
s->scratch_frame->data[1] + ((
s->w *
s->h) >> 2);
240 s->scratch_frame->linesize[1] =
241 s->scratch_frame->linesize[2] =
s->w >> 1;
243 s->input_frame->data[0] =
s->pict_bufs[3];
244 s->input_frame->linesize[0] =
s->w;
245 s->input_frame->data[1] =
s->input_frame->data[0] +
s->w *
s->h;
246 s->input_frame->data[2] =
s->input_frame->data[1] + ((
s->w *
s->h) >> 2);
247 s->input_frame->linesize[1] =
248 s->input_frame->linesize[2] =
s->w >> 1;
251 s->min_strips =
s->min_min_strips;
252 s->max_strips =
s->max_max_strips;
276 int *training_set_v1_shrunk,
277 int *training_set_v4_shrunk)
284 int64_t score1, score2, score3;
289 switch (
info->mode) {
292 ret +=
s->lambda * 8 * mb_count;
295 for (x = 0; x < mb_count; x++) {
308 *training_set_v1_shrunk = *training_set_v4_shrunk = 0;
309 for (x = 0; x < mb_count; x++) {
319 for (x = 0; x < mb_count; x++) {
324 if (score1 <= score2) {
338 int v1_shrunk = 0, v4_shrunk = 0;
339 for (x = 0; x < mb_count; x++) {
346 }
else if (
mb->best_encoding ==
ENC_V1) {
364 *training_set_v1_shrunk = v1_shrunk;
365 *training_set_v4_shrunk = v4_shrunk;
367 for (x = 0; x < mb_count; x++) {
373 if (score1 <= score2 && score1 <= score3) {
376 }
else if (score2 <= score3) {
400 int chunk_type_yuv,
int chunk_type_gray,
404 int incremental_codebook_replacement_mode = 0;
409 chunk_type_yuv + (incremental_codebook_replacement_mode ? 1 : 0) :
410 chunk_type_gray + (incremental_codebook_replacement_mode ? 1 : 0),
412 (incremental_codebook_replacement_mode ? (
size + 31) / 32 * 4 : 0));
419 if (incremental_codebook_replacement_mode) {
422 for (x = 0; x <
size; x++) {
429 for (y = 0; y < entry_size; y++)
430 buf[
ret++] = codebook[y + x * entry_size] ^ (y >= 4 ? 0x80 : 0);
431 if ((
flags & 0xffffffff) == 0xffffffff) {
439 for (x = 0; x <
size; x++)
440 for (y = 0; y < entry_size; y++)
441 buf[
ret++] = codebook[y + x * entry_size] ^ (y >= 4 ? 0x80 : 0);
448 uint8_t * in_data[4],
int in_linesize[4],
449 uint8_t *out_data[4],
int out_linesize[4])
451 out_data[0] = in_data[0] + x + y * in_linesize[0];
452 out_linesize[0] = in_linesize[0];
455 out_data[1] = in_data[1] + (x >> 1) + (y >> 1) * in_linesize[1];
456 out_linesize[1] = in_linesize[1];
458 out_data[2] = in_data[2] + (x >> 1) + (y >> 1) * in_linesize[2];
459 out_linesize[2] = in_linesize[2];
471 data[0][ linesize[0]] =
472 data[0][1 + linesize[0]] =
info->v1_codebook[v1_vector * entry_size];
476 data[0][2 + linesize[0]] =
477 data[0][3 + linesize[0]] =
info->v1_codebook[v1_vector * entry_size + 1];
479 data[0][ 2 * linesize[0]] =
480 data[0][1 + 2 * linesize[0]] =
481 data[0][ 3 * linesize[0]] =
482 data[0][1 + 3 * linesize[0]] =
info->v1_codebook[v1_vector * entry_size + 2];
484 data[0][2 + 2 * linesize[0]] =
485 data[0][3 + 2 * linesize[0]] =
486 data[0][2 + 3 * linesize[0]] =
487 data[0][3 + 3 * linesize[0]] =
info->v1_codebook[v1_vector * entry_size + 3];
492 data[1][ linesize[1]] =
493 data[1][1 + linesize[1]] =
info->v1_codebook[v1_vector * entry_size + 4];
497 data[2][ linesize[2]] =
498 data[2][1 + linesize[2]] =
info->v1_codebook[v1_vector * entry_size + 5];
508 for (
i = y = 0; y < 4; y += 2) {
509 for (x = 0; x < 4; x += 2,
i++) {
510 data[0][x + y * linesize[0]] =
info->v4_codebook[v4_vector[
i] * entry_size];
511 data[0][x + 1 + y * linesize[0]] =
info->v4_codebook[v4_vector[
i] * entry_size + 1];
512 data[0][x + (y + 1) * linesize[0]] =
info->v4_codebook[v4_vector[
i] * entry_size + 2];
513 data[0][x + 1 + (y + 1) * linesize[0]] =
info->v4_codebook[v4_vector[
i] * entry_size + 3];
516 data[1][(x >> 1) + (y >> 1) * linesize[1]] =
info->v4_codebook[v4_vector[
i] * entry_size + 4];
517 data[2][(x >> 1) + (y >> 1) * linesize[2]] =
info->v4_codebook[v4_vector[
i] * entry_size + 5];
524 uint8_t *a_data[4],
int a_linesize[4],
525 uint8_t *b_data[4],
int b_linesize[4])
530 memcpy(a_data[0] + y * a_linesize[0], b_data[0] + y * b_linesize[0],
534 for (p = 1; p <= 2; p++)
535 for (y = 0; y <
MB_SIZE / 2; y++)
536 memcpy(a_data[p] + y * a_linesize[p],
537 b_data[p] + y * b_linesize[p],
543 uint8_t *scratch_data[4],
int scratch_linesize[4],
544 uint8_t *last_data[4],
int last_linesize[4],
547 int x, y, z,
bits, temp_size, header_ofs,
ret = 0, mb_count =
s->w *
h /
MB_AREA;
548 int needs_extra_bit, should_write_temp;
550 unsigned char temp[64];
552 uint8_t *sub_scratch_data[4] = { 0 }, *sub_last_data[4] = { 0 };
553 int sub_scratch_linesize[4] = { 0 }, sub_last_linesize[4] = { 0 };
559 if (
info->v4_size || !
s->skip_empty_cb)
562 if (
info->v1_size || !
s->skip_empty_cb)
566 for (z = y = 0; y <
h; y +=
MB_SIZE)
567 for (x = 0; x <
s->w; x +=
MB_SIZE, z++) {
571 sub_scratch_data, sub_scratch_linesize);
575 sub_last_data, sub_last_linesize);
576 copy_mb(
s, sub_scratch_data, sub_scratch_linesize,
577 sub_last_data, sub_last_linesize);
586 switch (
info->mode) {
590 for (x = 0; x < mb_count; x++)
591 buf[
ret++] =
s->mb[x].v1_vector;
599 for (x = 0; x < mb_count; x += 32) {
601 for (y = x; y <
FFMIN(x + 32, mb_count); y++)
602 if (
s->mb[y].best_encoding ==
ENC_V4)
603 flags |= 1
U << (31 - y + x);
608 for (y = x; y <
FFMIN(x + 32, mb_count); y++) {
614 for (z = 0; z < 4; z++)
628 for (x = 0; x < mb_count; x++) {
632 should_write_temp = 0;
646 if (
mb->best_encoding ==
ENC_SKIP || needs_extra_bit) {
651 should_write_temp = 1;
654 if (needs_extra_bit) {
660 temp[temp_size++] =
mb->v1_vector;
661 else if (
mb->best_encoding ==
ENC_V4)
662 for (z = 0; z < 4; z++)
663 temp[temp_size++] =
mb->v4_vector[z];
665 if (should_write_temp) {
689 uint8_t *a_data[4],
int a_linesize[4],
690 uint8_t *b_data[4],
int b_linesize[4])
692 int x, y, p, d,
ret = 0;
695 for (x = 0; x <
MB_SIZE; x++) {
696 d = a_data[0][x + y * a_linesize[0]] - b_data[0][x + y * b_linesize[0]];
701 for (p = 1; p <= 2; p++) {
702 for (y = 0; y <
MB_SIZE / 2; y++)
703 for (x = 0; x <
MB_SIZE / 2; x++) {
704 d = a_data[p][x + y * a_linesize[p]] - b_data[p][x + y * b_linesize[p]];
714 #define CERTAIN(x) ((x) != ENC_UNCERTAIN)
719 int x, y,
i, j, k, x2, y2, x3, y3,
plane,
shift, mbn;
721 int *codebook = v1mode ?
info->v1_codebook :
info->v4_codebook;
723 int64_t total_error = 0;
725 uint8_t *sub_data[4], *vq_data[4];
726 int sub_linesize[4], vq_linesize[4];
728 for (mbn =
i = y = 0; y <
h; y +=
MB_SIZE) {
729 for (x = 0; x <
s->w; x +=
MB_SIZE, ++mbn) {
734 if (
s->mb[mbn].best_encoding != encoding)
738 base =
s->codebook_input +
i * entry_size;
741 for (j = y2 = 0; y2 < entry_size; y2 += 2)
742 for (x2 = 0; x2 < 4; x2 += 2, j++) {
743 plane = y2 < 4 ? 0 : 1 + (x2 >> 1);
744 shift = y2 < 4 ? 0 : 1;
754 for (j = y2 = 0; y2 <
MB_SIZE; y2 += 2) {
755 for (x2 = 0; x2 <
MB_SIZE; x2 += 2)
756 for (k = 0; k < entry_size; k++, j++) {
757 plane = k >= 4 ? k - 3 : 0;
763 x3 = x + x2 + (k & 1);
764 y3 = y + y2 + (k >> 1);
784 vq_data[0] = vq_pict_buf;
786 vq_data[1] = &vq_pict_buf[
MB_AREA];
787 vq_data[2] = vq_data[1] + (
MB_AREA >> 2);
793 for (x = 0; x <
s->w; x +=
MB_SIZE, j++) {
796 if (
CERTAIN(encoding) &&
mb->best_encoding != encoding)
803 mb->v1_vector =
s->codebook_closest[
i];
809 vq_data, vq_linesize);
810 total_error +=
mb->v1_error;
812 for (k = 0; k < 4; k++)
813 mb->v4_vector[k] =
s->codebook_closest[
i + k];
819 vq_data, vq_linesize);
820 total_error +=
mb->v4_error;
831 uint8_t *last_data[4],
int last_linesize[4],
836 uint8_t *sub_last_data [4], *sub_pict_data [4];
837 int sub_last_linesize[4], sub_pict_linesize[4];
840 for (x = 0; x <
s->w; x +=
MB_SIZE,
i++) {
842 sub_last_data, sub_last_linesize);
844 sub_pict_data, sub_pict_linesize);
846 s->mb[
i].skip_error =
848 sub_last_data, sub_last_linesize,
849 sub_pict_data, sub_pict_linesize);
854 unsigned char *
buf,
int strip_size)
861 buf[0] = keyframe ? 0x10 : 0x11;
872 uint8_t *last_data[4],
int last_linesize[4],
874 uint8_t *scratch_data[4],
int scratch_linesize[4],
875 unsigned char *
buf, int64_t *best_score)
881 int v1enough, v1_size, v4enough, v4_size;
882 int new_v1_size, new_v4_size;
883 int v1shrunk, v4shrunk;
893 #define SMALLEST_CODEBOOK 1
895 for (v4enough = 0, v4_size = 0; v4_size <= v1_size && !v4enough; v4_size = v4_size ? v4_size << 2 : v1_size >= SMALLEST_CODEBOOK << 2 ? v1_size >> 2 :
SMALLEST_CODEBOOK) {
904 info.v1_size = v1_size;
908 if (
info.v1_size < v1_size)
919 info.v4_size = v4_size;
922 if (
info.v4_size < v4_size)
931 &v1shrunk, &v4shrunk);
934 int extra_iterations_limit =
s->max_extra_cb_iterations;
937 info.v1_size = v1_size;
939 if (new_v1_size <
info.v1_size)
940 info.v1_size = new_v1_size;
942 info.v4_size = v4_size;
944 if (new_v4_size <
info.v4_size)
945 info.v4_size = new_v4_size;
952 &v1shrunk, &v4shrunk);
954 if ((!v1shrunk && !v4shrunk) || !extra_iterations_limit--)
958 info.v1_size = v1_size;
960 if (new_v1_size <
info.v1_size)
961 info.v1_size = new_v1_size;
964 info.v4_size = v4_size;
966 if (new_v4_size <
info.v4_size)
967 info.v4_size = new_v4_size;
972 if (best_size == 0 || score < *best_score) {
975 scratch_data, scratch_linesize,
976 last_data, last_linesize, &
info,
986 memcpy(
buf,
s->strip_buf, best_size);
992 int num_strips,
int data_size,
int isakeyframe)
994 buf[0] = isakeyframe ? 0 : 1;
1004 int isakeyframe,
unsigned char *
buf,
int buf_size)
1006 int num_strips, strip,
i, y, nexty,
size, temp_size, best_size;
1007 uint8_t *last_data [4], *
data [4], *scratch_data [4];
1008 int last_linesize[4], linesize[4], scratch_linesize[4];
1009 int64_t best_score = 0, score, score_temp;
1015 for (y = 0; y <
s->h; y += 2)
1016 for (x = 0; x <
s->w; x += 2) {
1019 ir[0] =
frame->data[0] + x * 3 + y *
frame->linesize[0];
1020 ir[1] = ir[0] +
frame->linesize[0];
1022 s->input_frame->data,
s->input_frame->linesize,
1023 scratch_data, scratch_linesize);
1025 for (
i = 0;
i < 4; ++
i) {
1029 rr = ir[i2][i1 * 3 + 0];
1030 gg = ir[i2][i1 * 3 + 1];
1031 bb = ir[i2][i1 * 3 + 2];
1038 rr = (2396625 * rr + 4793251 * gg + 1198732 * bb) >> 23;
1043 scratch_data[0][i1 + i2 * scratch_linesize[0]] = rr;
1049 rr = (-299683 *
r - 599156 *
g + 898839 *
b) >> 23;
1054 scratch_data[1][0] = rr + 128;
1057 rr = (748893 *
r - 599156 *
g - 149737 *
b) >> 23;
1062 scratch_data[2][0] = rr + 128;
1068 for (num_strips =
s->min_strips; num_strips <= s->max_strips && num_strips <= s->
h /
MB_SIZE; num_strips++) {
1072 for (y = 0, strip = 1; y <
s->h; strip++, y = nexty) {
1075 nexty = strip *
s->h / num_strips;
1078 nexty += 4 - (nexty & 3);
1080 strip_height = nexty - y;
1081 if (strip_height <= 0) {
1082 av_log(
s->avctx,
AV_LOG_INFO,
"skipping zero height strip %i of %i\n", strip, num_strips);
1088 s->input_frame->data,
s->input_frame->linesize,
1095 s->last_frame->data,
s->last_frame->linesize,
1096 last_data, last_linesize);
1098 s->scratch_frame->data,
s->scratch_frame->linesize,
1099 scratch_data, scratch_linesize);
1101 if ((temp_size =
rd_strip(
s, y, strip_height, isakeyframe,
1102 last_data, last_linesize,
data, linesize,
1103 scratch_data, scratch_linesize,
1108 score += score_temp;
1112 if (best_score == 0 || score < best_score) {
1117 memcpy(
buf,
s->frame_buf, best_size);
1118 best_nstrips = num_strips;
1122 if (num_strips - best_nstrips > 4)
1129 if (!
s->strip_number_delta_range) {
1130 if (best_nstrips ==
s->max_strips) {
1131 s->max_strips = best_nstrips + 1;
1132 if (
s->max_strips >=
s->max_max_strips)
1133 s->max_strips =
s->max_max_strips;
1135 s->max_strips = best_nstrips;
1137 s->min_strips =
s->max_strips - 1;
1138 if (
s->min_strips <
s->min_min_strips)
1139 s->min_strips =
s->min_min_strips;
1141 s->max_strips = best_nstrips +
s->strip_number_delta_range;
1142 if (
s->max_strips >=
s->max_max_strips)
1143 s->max_strips =
s->max_max_strips;
1144 s->min_strips = best_nstrips -
s->strip_number_delta_range;
1145 if (
s->min_strips <
s->min_min_strips)
1146 s->min_strips =
s->min_min_strips;
1164 if (
s->curframe == 0)
1170 if (++
s->curframe >=
s->keyint)