43 int src_x, src_y, motion_x, motion_y;
47 motion_x =
s->sprite_offset[0][0];
48 motion_y =
s->sprite_offset[0][1];
49 src_x =
s->mb_x * 16 + (motion_x >> (
s->sprite_warping_accuracy + 1));
50 src_y =
s->mb_y * 16 + (motion_y >> (
s->sprite_warping_accuracy + 1));
51 motion_x *= 1 << (3 -
s->sprite_warping_accuracy);
52 motion_y *= 1 << (3 -
s->sprite_warping_accuracy);
53 src_x = av_clip(src_x, -16,
s->width);
54 if (src_x ==
s->width)
56 src_y = av_clip(src_y, -16,
s->height);
57 if (src_y ==
s->height)
63 ptr = ref_picture[0] + src_y *
linesize + src_x;
65 if ((
unsigned)src_x >=
FFMAX(
s->h_edge_pos - 17, 0) ||
66 (
unsigned)src_y >=
FFMAX(
s->v_edge_pos - 17, 0)) {
67 s->vdsp.emulated_edge_mc(
s->sc.edge_emu_buffer, ptr,
71 s->h_edge_pos,
s->v_edge_pos);
72 ptr =
s->sc.edge_emu_buffer;
75 if ((motion_x | motion_y) & 7) {
77 motion_x & 15, motion_y & 15, 128 -
s->no_rounding);
78 s->mdsp.gmc1(dest_y + 8, ptr + 8,
linesize, 16,
79 motion_x & 15, motion_y & 15, 128 -
s->no_rounding);
83 dxy = ((motion_x >> 3) & 1) | ((motion_y >> 2) & 2);
85 s->hdsp.put_no_rnd_pixels_tab[0][dxy](dest_y, ptr,
linesize, 16);
87 s->hdsp.put_pixels_tab[0][dxy](dest_y, ptr,
linesize, 16);
94 motion_x =
s->sprite_offset[1][0];
95 motion_y =
s->sprite_offset[1][1];
96 src_x =
s->mb_x * 8 + (motion_x >> (
s->sprite_warping_accuracy + 1));
97 src_y =
s->mb_y * 8 + (motion_y >> (
s->sprite_warping_accuracy + 1));
98 motion_x *= 1 << (3 -
s->sprite_warping_accuracy);
99 motion_y *= 1 << (3 -
s->sprite_warping_accuracy);
100 src_x = av_clip(src_x, -8,
s->width >> 1);
101 if (src_x ==
s->width >> 1)
103 src_y = av_clip(src_y, -8,
s->height >> 1);
104 if (src_y ==
s->height >> 1)
108 ptr = ref_picture[1] +
offset;
109 if ((
unsigned)src_x >=
FFMAX((
s->h_edge_pos >> 1) - 9, 0) ||
110 (unsigned)src_y >=
FFMAX((
s->v_edge_pos >> 1) - 9, 0)) {
111 s->vdsp.emulated_edge_mc(
s->sc.edge_emu_buffer, ptr,
115 s->h_edge_pos >> 1,
s->v_edge_pos >> 1);
116 ptr =
s->sc.edge_emu_buffer;
120 motion_x & 15, motion_y & 15, 128 -
s->no_rounding);
122 ptr = ref_picture[2] +
offset;
124 s->vdsp.emulated_edge_mc(
s->sc.edge_emu_buffer, ptr,
128 s->h_edge_pos >> 1,
s->v_edge_pos >> 1);
129 ptr =
s->sc.edge_emu_buffer;
132 motion_x & 15, motion_y & 15, 128 -
s->no_rounding);
141 const int a =
s->sprite_warping_accuracy;
147 ptr = ref_picture[0];
149 ox =
s->sprite_offset[0][0] +
s->sprite_delta[0][0] *
s->mb_x * 16 +
150 s->sprite_delta[0][1] *
s->mb_y * 16;
151 oy =
s->sprite_offset[0][1] +
s->sprite_delta[1][0] *
s->mb_x * 16 +
152 s->sprite_delta[1][1] *
s->mb_y * 16;
156 s->sprite_delta[0][0],
s->sprite_delta[0][1],
157 s->sprite_delta[1][0],
s->sprite_delta[1][1],
158 a + 1, (1 << (2 *
a + 1)) -
s->no_rounding,
159 s->h_edge_pos,
s->v_edge_pos);
160 s->mdsp.gmc(dest_y + 8, ptr,
linesize, 16,
161 ox +
s->sprite_delta[0][0] * 8,
162 oy +
s->sprite_delta[1][0] * 8,
163 s->sprite_delta[0][0],
s->sprite_delta[0][1],
164 s->sprite_delta[1][0],
s->sprite_delta[1][1],
165 a + 1, (1 << (2 *
a + 1)) -
s->no_rounding,
166 s->h_edge_pos,
s->v_edge_pos);
171 ox =
s->sprite_offset[1][0] +
s->sprite_delta[0][0] *
s->mb_x * 8 +
172 s->sprite_delta[0][1] *
s->mb_y * 8;
173 oy =
s->sprite_offset[1][1] +
s->sprite_delta[1][0] *
s->mb_x * 8 +
174 s->sprite_delta[1][1] *
s->mb_y * 8;
176 ptr = ref_picture[1];
179 s->sprite_delta[0][0],
s->sprite_delta[0][1],
180 s->sprite_delta[1][0],
s->sprite_delta[1][1],
181 a + 1, (1 << (2 *
a + 1)) -
s->no_rounding,
182 (
s->h_edge_pos + 1) >> 1, (
s->v_edge_pos + 1) >> 1);
184 ptr = ref_picture[2];
187 s->sprite_delta[0][0],
s->sprite_delta[0][1],
188 s->sprite_delta[1][0],
s->sprite_delta[1][1],
189 a + 1, (1 << (2 *
a + 1)) -
s->no_rounding,
190 (
s->h_edge_pos + 1) >> 1, (
s->v_edge_pos + 1) >> 1);
195 int src_x,
int src_y,
197 int motion_x,
int motion_y)
202 src_x += motion_x >> 1;
203 src_y += motion_y >> 1;
206 src_x = av_clip(src_x, -16,
s->width);
207 if (src_x !=
s->width)
209 src_y = av_clip(src_y, -16,
s->height);
210 if (src_y !=
s->height)
211 dxy |= (motion_y & 1) << 1;
212 src += src_y *
s->linesize + src_x;
214 if ((
unsigned)src_x >=
FFMAX(
s->h_edge_pos - (motion_x & 1) - 7, 0) ||
215 (unsigned)src_y >=
FFMAX(
s->v_edge_pos - (motion_y & 1) - 7, 0)) {
216 s->vdsp.emulated_edge_mc(
s->sc.edge_emu_buffer,
src,
217 s->linesize,
s->linesize,
220 s->h_edge_pos,
s->v_edge_pos);
221 src =
s->sc.edge_emu_buffer;
224 pix_op[dxy](
dest,
src,
s->linesize, 8);
245 uint8_t *ptr_y, *ptr_cb, *ptr_cr;
246 int dxy, uvdxy, mx, my, src_x, src_y,
251 linesize =
s->current_picture.f->linesize[0] << field_based;
252 uvlinesize =
s->current_picture.f->linesize[1] << field_based;
253 block_y_half = (field_based | is_16x8);
255 dxy = ((motion_y & 1) << 1) | (motion_x & 1);
256 src_x =
s->mb_x * 16 + (motion_x >> 1);
257 src_y = (
mb_y << (4 - block_y_half)) + (motion_y >> 1);
259 if (!is_mpeg12 &&
s->out_format ==
FMT_H263) {
261 mx = (motion_x >> 1) | (motion_x & 1);
263 uvdxy = ((my & 1) << 1) | (mx & 1);
264 uvsrc_x =
s->mb_x * 8 + (mx >> 1);
265 uvsrc_y = (
mb_y << (3 - block_y_half)) + (my >> 1);
267 uvdxy = dxy | (motion_y & 2) | ((motion_x & 2) >> 1);
268 uvsrc_x = src_x >> 1;
269 uvsrc_y = src_y >> 1;
272 }
else if (!is_mpeg12 &&
s->out_format ==
FMT_H261) {
276 uvsrc_x =
s->mb_x * 8 + mx;
277 uvsrc_y =
mb_y * 8 + my;
279 if (
s->chroma_y_shift) {
282 uvdxy = ((my & 1) << 1) | (mx & 1);
283 uvsrc_x =
s->mb_x * 8 + (mx >> 1);
284 uvsrc_y = (
mb_y << (3 - block_y_half)) + (my >> 1);
286 if (
s->chroma_x_shift) {
289 uvdxy = ((motion_y & 1) << 1) | (mx & 1);
290 uvsrc_x =
s->mb_x * 8 + (mx >> 1);
301 ptr_y = ref_picture[0] + src_y *
linesize + src_x;
302 ptr_cb = ref_picture[1] + uvsrc_y *
uvlinesize + uvsrc_x;
303 ptr_cr = ref_picture[2] + uvsrc_y *
uvlinesize + uvsrc_x;
305 if ((
unsigned)src_x >=
FFMAX(
s->h_edge_pos - (motion_x & 1) - 15 , 0) ||
311 "MPEG motion vector out of boundary (%d %d)\n", src_x,
315 src_y = (unsigned)src_y << field_based;
316 s->vdsp.emulated_edge_mc(
s->sc.edge_emu_buffer, ptr_y,
317 s->linesize,
s->linesize,
318 17, 17 + field_based,
320 s->h_edge_pos,
s->v_edge_pos);
321 ptr_y =
s->sc.edge_emu_buffer;
323 uint8_t *ubuf =
s->sc.edge_emu_buffer + 18 *
s->linesize;
324 uint8_t *vbuf = ubuf + 10 *
s->uvlinesize;
326 vbuf -=
s->uvlinesize;
327 uvsrc_y = (unsigned)uvsrc_y << field_based;
328 s->vdsp.emulated_edge_mc(ubuf, ptr_cb,
329 s->uvlinesize,
s->uvlinesize,
332 s->h_edge_pos >> 1,
s->v_edge_pos >> 1);
333 s->vdsp.emulated_edge_mc(vbuf, ptr_cr,
334 s->uvlinesize,
s->uvlinesize,
337 s->h_edge_pos >> 1,
s->v_edge_pos >> 1);
346 dest_y +=
s->linesize;
347 dest_cb +=
s->uvlinesize;
348 dest_cr +=
s->uvlinesize;
352 ptr_y +=
s->linesize;
353 ptr_cb +=
s->uvlinesize;
354 ptr_cr +=
s->uvlinesize;
357 pix_op[0][dxy](dest_y, ptr_y,
linesize,
h);
360 pix_op[
s->chroma_x_shift][uvdxy]
362 pix_op[
s->chroma_x_shift][uvdxy]
365 if (!is_mpeg12 && (CONFIG_H261_ENCODER || CONFIG_H261_DECODER) &&
375 int motion_x,
int motion_y,
int h,
int is_16x8,
int mb_y)
381 motion_x, motion_y,
h, 1, is_16x8,
mb_y);
386 motion_x, motion_y,
h, 0, is_16x8,
mb_y);
394 int motion_x,
int motion_y,
int h,
int mb_y)
400 motion_x, motion_y,
h, 1, 0,
mb_y);
405 motion_x, motion_y,
h, 0, 0,
mb_y);
417 #define OBMC_FILTER(x, t, l, m, r, b)\
418 dst[x]= (t*top[x] + l*left[x] + m*mid[x] + r*right[x] + b*bottom[x] + 4)>>3
419 #define OBMC_FILTER4(x, t, l, m, r, b)\
420 OBMC_FILTER(x , t, l, m, r, b);\
421 OBMC_FILTER(x+1 , t, l, m, r, b);\
422 OBMC_FILTER(x +stride, t, l, m, r, b);\
423 OBMC_FILTER(x+1+stride, t, l, m, r, b);
464 int src_x,
int src_y,
474 for (
i = 0;
i < 5;
i++) {
478 ptr[
i] =
s->sc.obmc_scratchpad + 8 * (
i & 1) +
479 s->linesize * 8 * (
i >> 1);
492 int field_based,
int bottom_field,
496 int motion_x,
int motion_y,
int h)
498 uint8_t *ptr_y, *ptr_cb, *ptr_cr;
499 int dxy, uvdxy, mx, my, src_x, src_y, uvsrc_x, uvsrc_y,
v_edge_pos;
502 dxy = ((motion_y & 3) << 2) | (motion_x & 3);
504 src_x =
s->mb_x * 16 + (motion_x >> 2);
505 src_y =
s->mb_y * (16 >> field_based) + (motion_y >> 2);
515 static const int rtab[8] = { 0, 0, 1, 1, 0, 0, 0, 1 };
516 mx = (motion_x >> 1) + rtab[motion_x & 7];
517 my = (motion_y >> 1) + rtab[motion_y & 7];
519 mx = (motion_x >> 1) | (motion_x & 1);
520 my = (motion_y >> 1) | (motion_y & 1);
525 mx = (mx >> 1) | (mx & 1);
526 my = (my >> 1) | (my & 1);
528 uvdxy = (mx & 1) | ((my & 1) << 1);
532 uvsrc_x =
s->mb_x * 8 + mx;
533 uvsrc_y =
s->mb_y * (8 >> field_based) + my;
535 ptr_y = ref_picture[0] + src_y *
linesize + src_x;
536 ptr_cb = ref_picture[1] + uvsrc_y *
uvlinesize + uvsrc_x;
537 ptr_cr = ref_picture[2] + uvsrc_y *
uvlinesize + uvsrc_x;
539 if ((
unsigned)src_x >=
FFMAX(
s->h_edge_pos - (motion_x & 3) - 15 , 0) ||
541 s->vdsp.emulated_edge_mc(
s->sc.edge_emu_buffer, ptr_y,
542 s->linesize,
s->linesize,
543 17, 17 + field_based,
544 src_x, src_y * (1 << field_based),
545 s->h_edge_pos,
s->v_edge_pos);
546 ptr_y =
s->sc.edge_emu_buffer;
548 uint8_t *ubuf =
s->sc.edge_emu_buffer + 18 *
s->linesize;
549 uint8_t *vbuf = ubuf + 10 *
s->uvlinesize;
551 vbuf -=
s->uvlinesize;
552 s->vdsp.emulated_edge_mc(ubuf, ptr_cb,
553 s->uvlinesize,
s->uvlinesize,
555 uvsrc_x, uvsrc_y * (1 << field_based),
556 s->h_edge_pos >> 1,
s->v_edge_pos >> 1);
557 s->vdsp.emulated_edge_mc(vbuf, ptr_cr,
558 s->uvlinesize,
s->uvlinesize,
560 uvsrc_x, uvsrc_y * (1 << field_based),
561 s->h_edge_pos >> 1,
s->v_edge_pos >> 1);
568 qpix_op[0][dxy](dest_y, ptr_y,
linesize);
571 dest_y +=
s->linesize;
572 dest_cb +=
s->uvlinesize;
573 dest_cr +=
s->uvlinesize;
577 ptr_y +=
s->linesize;
578 ptr_cb +=
s->uvlinesize;
579 ptr_cr +=
s->uvlinesize;
583 qpix_op[1][dxy](dest_y, ptr_y,
linesize);
584 qpix_op[1][dxy](dest_y + 8, ptr_y + 8,
linesize);
587 pix_op[1][uvdxy](dest_cr, ptr_cr,
uvlinesize,
h >> 1);
588 pix_op[1][uvdxy](dest_cb, ptr_cb,
uvlinesize,
h >> 1);
602 int src_x, src_y, dxy, emu = 0;
610 dxy = ((my & 1) << 1) | (mx & 1);
614 src_x =
s->mb_x * 8 + mx;
615 src_y =
s->mb_y * 8 + my;
616 src_x = av_clip(src_x, -8, (
s->width >> 1));
617 if (src_x == (
s->width >> 1))
619 src_y = av_clip(src_y, -8, (
s->height >> 1));
620 if (src_y == (
s->height >> 1))
623 offset = src_y *
s->uvlinesize + src_x;
624 ptr = ref_picture[1] +
offset;
625 if ((
unsigned)src_x >=
FFMAX((
s->h_edge_pos >> 1) - (dxy & 1) - 7, 0) ||
626 (
unsigned)src_y >=
FFMAX((
s->v_edge_pos >> 1) - (dxy >> 1) - 7, 0)) {
627 s->vdsp.emulated_edge_mc(
s->sc.edge_emu_buffer, ptr,
628 s->uvlinesize,
s->uvlinesize,
630 s->h_edge_pos >> 1,
s->v_edge_pos >> 1);
631 ptr =
s->sc.edge_emu_buffer;
634 pix_op[dxy](dest_cb, ptr,
s->uvlinesize, 8);
636 ptr = ref_picture[2] +
offset;
638 s->vdsp.emulated_edge_mc(
s->sc.edge_emu_buffer, ptr,
639 s->uvlinesize,
s->uvlinesize,
641 s->h_edge_pos >> 1,
s->v_edge_pos >> 1);
642 ptr =
s->sc.edge_emu_buffer;
644 pix_op[dxy](dest_cr, ptr,
s->uvlinesize, 8);
651 const int shift =
s->quarter_sample ? 2 : 1;
652 const int mx = (
s->mv[dir][0][0] >>
shift) + 16 *
s->mb_x + 8;
653 const int my = (
s->mv[dir][0][1] >>
shift) + 16 *
s->mb_y;
654 int off = mx + (my + (
s->mb_x & 3) * 4) *
s->linesize + 64;
656 s->vdsp.prefetch(pix[0] + off,
s->linesize, 4);
657 off = (mx >> 1) + ((my >> 1) + (
s->mb_x & 7)) *
s->uvlinesize + 64;
658 s->vdsp.prefetch(pix[1] + off, pix[2] - pix[1], 2);
669 Picture *cur_frame = &
s->current_picture;
672 const int xy =
mb_x +
mb_y *
s->mb_stride;
673 const int mot_stride =
s->b8_stride;
674 const int mot_xy =
mb_x * 2 +
mb_y * 2 * mot_stride;
683 cur_frame->
motion_val[0][mot_xy + mot_stride]);
685 cur_frame->
motion_val[0][mot_xy + mot_stride + 1]);
688 cur_frame->
motion_val[0][mot_xy + mot_stride]);
690 cur_frame->
motion_val[0][mot_xy + mot_stride + 1]);
693 AV_COPY32(mv_cache[0][1], mv_cache[1][1]);
694 AV_COPY32(mv_cache[0][2], mv_cache[1][2]);
697 cur_frame->
motion_val[0][mot_xy - mot_stride]);
699 cur_frame->
motion_val[0][mot_xy - mot_stride + 1]);
703 AV_COPY32(mv_cache[1][0], mv_cache[1][1]);
704 AV_COPY32(mv_cache[2][0], mv_cache[2][1]);
708 cur_frame->
motion_val[0][mot_xy - 1 + mot_stride]);
712 AV_COPY32(mv_cache[1][3], mv_cache[1][2]);
713 AV_COPY32(mv_cache[2][3], mv_cache[2][2]);
717 cur_frame->
motion_val[0][mot_xy + 2 + mot_stride]);
722 for (
i = 0;
i < 4;
i++) {
723 const int x = (
i & 1) + 1;
724 const int y = (
i >> 1) + 1;
726 { mv_cache[y][x][0], mv_cache[y][x][1] },
727 { mv_cache[y - 1][x][0], mv_cache[y - 1][x][1] },
728 { mv_cache[y][x - 1][0], mv_cache[y][x - 1][1] },
729 { mv_cache[y][x + 1][0], mv_cache[y][x + 1][1] },
730 { mv_cache[y + 1][x][0], mv_cache[y + 1][x][1] }
735 mb_x * 16 + (
i & 1) * 8,
mb_y * 16 + (
i >> 1) * 8,
744 ref_picture, pix_op[1],
757 int dxy, mx, my, src_x, src_y;
765 if (
s->quarter_sample) {
766 for (
i = 0;
i < 4;
i++) {
767 int motion_x =
s->mv[dir][
i][0];
768 int motion_y =
s->mv[dir][
i][1];
770 dxy = ((motion_y & 3) << 2) | (motion_x & 3);
771 src_x =
mb_x * 16 + (motion_x >> 2) + (
i & 1) * 8;
772 src_y =
mb_y * 16 + (motion_y >> 2) + (
i >> 1) * 8;
775 src_x = av_clip(src_x, -16,
s->width);
776 if (src_x ==
s->width)
778 src_y = av_clip(src_y, -16,
s->height);
779 if (src_y ==
s->height)
782 ptr = ref_picture[0] + (src_y *
s->linesize) + (src_x);
783 if ((
unsigned)src_x >=
FFMAX(
s->h_edge_pos - (motion_x & 3) - 7, 0) ||
784 (
unsigned)src_y >=
FFMAX(
s->v_edge_pos - (motion_y & 3) - 7, 0)) {
785 s->vdsp.emulated_edge_mc(
s->sc.edge_emu_buffer, ptr,
786 s->linesize,
s->linesize,
791 ptr =
s->sc.edge_emu_buffer;
793 dest = dest_y + ((
i & 1) * 8) + (
i >> 1) * 8 *
s->linesize;
794 qpix_op[1][dxy](
dest, ptr,
s->linesize);
796 mx +=
s->mv[dir][
i][0] / 2;
797 my +=
s->mv[dir][
i][1] / 2;
800 for (
i = 0;
i < 4;
i++) {
802 dest_y + ((
i & 1) * 8) + (
i >> 1) * 8 *
s->linesize,
804 mb_x * 16 + (
i & 1) * 8,
805 mb_y * 16 + (
i >> 1) * 8,
810 mx +=
s->mv[dir][
i][0];
811 my +=
s->mv[dir][
i][1];
817 ref_picture, pix_op[1], mx, my);
848 apply_obmc(
s, dest_y, dest_cb, dest_cr, ref_picture, pix_op);
852 switch (
s->mv_type) {
855 if (
s->real_sprite_warping_points == 1) {
862 }
else if (!is_mpeg12 &&
s->quarter_sample) {
865 ref_picture, pix_op, qpix_op,
866 s->mv[dir][0][0],
s->mv[dir][0][1], 16);
867 }
else if (!is_mpeg12 && (CONFIG_WMV2_DECODER || CONFIG_WMV2_ENCODER) &&
871 s->mv[dir][0][0],
s->mv[dir][0][1], 16);
875 s->mv[dir][0][0],
s->mv[dir][0][1], 16, 0,
mb_y);
881 dir, ref_picture, qpix_op, pix_op);
885 if (!is_mpeg12 &&
s->quarter_sample) {
886 for (
i = 0;
i < 2;
i++)
888 1,
i,
s->field_select[dir][
i],
889 ref_picture, pix_op, qpix_op,
890 s->mv[dir][
i][0],
s->mv[dir][
i][1], 8);
894 0,
s->field_select[dir][0],
896 s->mv[dir][0][0],
s->mv[dir][0][1], 8,
mb_y);
899 1,
s->field_select[dir][1],
901 s->mv[dir][1][0],
s->mv[dir][1][1], 8,
mb_y);
904 if (
s->picture_structure !=
s->field_select[dir][0] + 1 &&
s->pict_type !=
AV_PICTURE_TYPE_B && !
s->first_field
905 || !ref_picture[0]) {
906 ref_picture =
s->current_picture_ptr->f->data;
910 s->field_select[dir][0],
912 s->mv[dir][0][0],
s->mv[dir][0][1], 16, 0,
mb_y >> 1);
916 for (
i = 0;
i < 2;
i++) {
919 if ((
s->picture_structure ==
s->field_select[dir][
i] + 1
921 ref2picture = ref_picture;
923 ref2picture =
s->current_picture_ptr->f->data;
927 s->field_select[dir][
i],
929 s->mv[dir][
i][0],
s->mv[dir][
i][1],
930 8, 1, (
mb_y & ~1) +
i);
932 dest_y += 16 *
s->linesize;
933 dest_cb += (16 >>
s->chroma_y_shift) *
s->uvlinesize;
934 dest_cr += (16 >>
s->chroma_y_shift) *
s->uvlinesize;
939 for (
i = 0;
i < 2;
i++) {
941 for (j = 0; j < 2; j++)
943 j, j ^
i, ref_picture, pix_op,
944 s->mv[dir][2 *
i + j][0],
945 s->mv[dir][2 *
i + j][1], 8,
mb_y);
946 pix_op =
s->hdsp.avg_pixels_tab;
949 if (!ref_picture[0]) {
950 ref_picture =
s->current_picture_ptr->f->data;
952 for (
i = 0;
i < 2;
i++) {
954 s->picture_structure !=
i + 1,
956 s->mv[dir][2 *
i][0],
s->mv[dir][2 *
i][1],
960 pix_op =
s->hdsp.avg_pixels_tab;
964 if (!
s->first_field) {
965 ref_picture =
s->current_picture_ptr->f->data;
984 ref_picture, pix_op, qpix_op, 1);
988 ref_picture, pix_op, qpix_op, 0);