Searched refs:chroma_x_shift (Results 1 - 24 of 24) sorted by relevance

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavfilter/libmpcodecs/
H A Dmp_image.c152 mpi->bpp = ff_mp_get_chroma_shift(out_fmt, &mpi->chroma_x_shift, &mpi->chroma_y_shift, NULL);
153 mpi->chroma_width = mpi->width >> mpi->chroma_x_shift;
218 mpi->chroma_x_shift = 1;
230 mpi->chroma_x_shift=0;
H A Dmp_image.h67 // uses only stride[0], and stride[1]=stride[2]=stride[0]>>mpi->chroma_x_shift
144 int chroma_x_shift; // horizontal member in struct:mp_image
H A Dvf_pp7.c392 filter(vf->priv, dmpi->planes[1], mpi->planes[1], dmpi->stride[1], mpi->stride[1], mpi->w>>mpi->chroma_x_shift, mpi->h>>mpi->chroma_y_shift, mpi->qscale, mpi->qstride, 0);
393 filter(vf->priv, dmpi->planes[2], mpi->planes[2], dmpi->stride[2], mpi->stride[2], mpi->w>>mpi->chroma_x_shift, mpi->h>>mpi->chroma_y_shift, mpi->qscale, mpi->qstride, 0);
396 memcpy_pic(dmpi->planes[1], mpi->planes[1], mpi->w>>mpi->chroma_x_shift, mpi->h>>mpi->chroma_y_shift, dmpi->stride[1], mpi->stride[1]);
397 memcpy_pic(dmpi->planes[2], mpi->planes[2], mpi->w>>mpi->chroma_x_shift, mpi->h>>mpi->chroma_y_shift, dmpi->stride[2], mpi->stride[2]);
H A Dvf_uspp.c295 memcpy_pic(dmpi->planes[1], mpi->planes[1], mpi->w>>mpi->chroma_x_shift, mpi->h>>mpi->chroma_y_shift, dmpi->stride[1], mpi->stride[1]);
296 memcpy_pic(dmpi->planes[2], mpi->planes[2], mpi->w>>mpi->chroma_x_shift, mpi->h>>mpi->chroma_y_shift, dmpi->stride[2], mpi->stride[2]);
H A Dvf_fspp.c557 mpi->w>>mpi->chroma_x_shift, mpi->h>>mpi->chroma_y_shift, qp_tab, mpi->qstride, 0);
559 mpi->w>>mpi->chroma_x_shift, mpi->h>>mpi->chroma_y_shift, qp_tab, mpi->qstride, 0);
562 memcpy_pic(dmpi->planes[1], mpi->planes[1], mpi->w>>mpi->chroma_x_shift, mpi->h>>mpi->chroma_y_shift, dmpi->stride[1], mpi->stride[1]);
563 memcpy_pic(dmpi->planes[2], mpi->planes[2], mpi->w>>mpi->chroma_x_shift, mpi->h>>mpi->chroma_y_shift, dmpi->stride[2], mpi->stride[2]);
H A Dvf_eq2.c253 eq2->buf_w[1] = eq2->buf_w[2] = src->w >> src->chroma_x_shift;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavfilter/
H A Dvf_mp.c244 memcpy_pic(vf->dmpi->planes[1]+(y>>vf->dmpi->chroma_y_shift)*vf->dmpi->stride[1]+(x>>vf->dmpi->chroma_x_shift),
245 src[1], w>>vf->dmpi->chroma_x_shift, h>>vf->dmpi->chroma_y_shift, vf->dmpi->stride[1], stride[1]);
246 memcpy_pic(vf->dmpi->planes[2]+(y>>vf->dmpi->chroma_y_shift)*vf->dmpi->stride[2]+(x>>vf->dmpi->chroma_x_shift),
247 src[2], w>>vf->dmpi->chroma_x_shift, h>>vf->dmpi->chroma_y_shift, vf->dmpi->stride[2], stride[2]);
264 memset(mpi->planes[1]+(x0>>mpi->chroma_x_shift)+mpi->stride[1]*(y>>mpi->chroma_y_shift),128,(w>>mpi->chroma_x_shift));
265 memset(mpi->planes[2]+(x0>>mpi->chroma_x_shift)+mpi->stride[2]*(y>>mpi->chroma_y_shift),128,(w>>mpi->chroma_x_shift));
388 mpi->width=w2; mpi->chroma_width=(w2 + (1<<mpi->chroma_x_shift) - 1)>>mpi->chroma_x_shift;
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavcodec/
H A Ddirac.c123 int chroma_x_shift, chroma_y_shift; local
240 avcodec_get_chroma_sub_sample(avctx->pix_fmt, &chroma_x_shift, &chroma_y_shift);
241 if ((source->width % (1<<chroma_x_shift)) || (source->height % (1<<chroma_y_shift))) {
H A Ddiracdec.c147 int chroma_x_shift; member in struct:DiracContext
327 int max_xblen = MAX_BLOCKSIZE >> (i ? s->chroma_x_shift : 0);
329 w = s->source.width >> (i ? s->chroma_x_shift : 0);
819 p->width = s->source.width >> (i ? s->chroma_x_shift : 0);
849 p->xblen = s->plane[0].xblen >> s->chroma_x_shift;
851 p->xbsep = s->plane[0].xbsep >> s->chroma_x_shift;
1379 motion_x >>= s->chroma_x_shift;
1672 int chroma_x_shift, chroma_y_shift; local
1673 avcodec_get_chroma_sub_sample(avctx->pix_fmt, &chroma_x_shift, &chroma_y_shift);
1827 avcodec_get_chroma_sub_sample(avctx->pix_fmt, &s->chroma_x_shift,
[all...]
H A Dmpegvideo.c359 s->dest[1] = s->current_picture.f->data[1] + (s->mb_y * (16 >> s->chroma_y_shift) * s->uvlinesize) + s->mb_x * (16 >> s->chroma_x_shift);
360 s->dest[2] = s->current_picture.f->data[2] + (s->mb_y * (16 >> s->chroma_y_shift) * s->uvlinesize) + s->mb_x * (16 >> s->chroma_x_shift);
508 (EDGE_WIDTH >> (i ? s->chroma_x_shift : 0));
1309 &s->chroma_x_shift,
2479 const int op_index = FFMIN(lowres-1+s->chroma_x_shift, 3);
2524 if(s->chroma_x_shift){
3083 if(!s->chroma_x_shift){//Chroma444
3135 if(!s->chroma_x_shift){//Chroma444
3148 s->hdsp.put_pixels_tab[s->chroma_x_shift][0](s->dest[1], dest_cb, uvlinesize,16 >> s->chroma_y_shift);
3149 s->hdsp.put_pixels_tab[s->chroma_x_shift][
[all...]
H A Dvp3.c137 int chroma_x_shift, chroma_y_shift; member in struct:Vp3DecodeContext
673 } else if (s->chroma_x_shift) {
839 } else if (s->chroma_x_shift) {
1500 int plane_width = s->width >> (plane && s->chroma_x_shift);
1754 avcodec_get_chroma_sub_sample(avctx->pix_fmt, &s->chroma_x_shift, &s->chroma_y_shift);
1761 c_width = s->width >> s->chroma_x_shift;
1777 s->fragment_width[1] = s->fragment_width[0] >> s->chroma_x_shift;
H A Dmpegvideo_motion.c290 if (s->chroma_x_shift) {
360 pix_op[s->chroma_x_shift][uvdxy]
362 pix_op[s->chroma_x_shift][uvdxy]
H A Dh264.h362 int chroma_x_shift, chroma_y_shift; member in struct:H264Context
H A Dmpegvideo.h612 int chroma_x_shift;//depend on pix_format, that depend on chroma_format member in struct:MpegEncContext
H A Dmpegvideo_enc.c2066 int cw = (s->width + s->chroma_x_shift) >> s->chroma_x_shift;
2126 if (!s->chroma_y_shift && s->chroma_x_shift) { /* 422 */
2129 } else if (!s->chroma_y_shift && !s->chroma_x_shift) { /* 444 */
H A Dh264_slice.c1155 &h->chroma_x_shift, &h->chroma_y_shift);
1217 c->chroma_x_shift = h->chroma_x_shift;
H A Dsvq3.c902 h->chroma_x_shift = h->chroma_y_shift = 1;
H A Dmpeg12dec.c1845 s->dest[1] +=(16 >> lowres) >> s->chroma_x_shift;
1846 s->dest[2] +=(16 >> lowres) >> s->chroma_x_shift;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libavcodec/
H A Dvp3.c132 int chroma_x_shift, chroma_y_shift; member in struct:Vp3DecodeContext
655 } else if (s->chroma_x_shift) {
818 } else if (s->chroma_x_shift) {
1471 int plane_width = s->width >> (plane && s->chroma_x_shift);
1689 avcodec_get_chroma_sub_sample(avctx->pix_fmt, &s->chroma_x_shift, &s->chroma_y_shift);
1696 c_width = s->width >> s->chroma_x_shift;
1712 s->fragment_width[1] = s->fragment_width[0] >> s->chroma_x_shift;
H A Dmpegvideo_common.h291 if(s->chroma_x_shift){
355 pix_op[s->chroma_x_shift][uvdxy]
357 pix_op[s->chroma_x_shift][uvdxy]
H A Dmpegvideo.c708 avcodec_get_chroma_sub_sample(s->avctx->pix_fmt, &s->chroma_x_shift,
2452 if(!s->chroma_x_shift){//Chroma444
2504 if(!s->chroma_x_shift){//Chroma444
2517 s->dsp.put_pixels_tab[s->chroma_x_shift][0](s->dest[1], dest_cb, uvlinesize,16 >> s->chroma_y_shift);
2518 s->dsp.put_pixels_tab[s->chroma_x_shift][0](s->dest[2], dest_cr, uvlinesize,16 >> s->chroma_y_shift);
2617 s->dest[1] = s->current_picture.f.data[1] + ((s->mb_x - 1) << (mb_size - s->chroma_x_shift));
2618 s->dest[2] = s->current_picture.f.data[2] + ((s->mb_x - 1) << (mb_size - s->chroma_x_shift));
H A Dmpegvideo.h633 int chroma_x_shift;//depend on pix_format, that depend on chroma_format member in struct:MpegEncContext
H A Derror_resilience.c46 s->dest[1] = s->current_picture.f.data[1] + (s->mb_y * (16 >> s->chroma_y_shift) * s->uvlinesize) + s->mb_x * (16 >> s->chroma_x_shift);
47 s->dest[2] = s->current_picture.f.data[2] + (s->mb_y * (16 >> s->chroma_y_shift) * s->uvlinesize) + s->mb_x * (16 >> s->chroma_x_shift);
H A Dmpeg12.c1753 s->dest[1] +=(16 >> lowres) >> s->chroma_x_shift;
1754 s->dest[2] +=(16 >> lowres) >> s->chroma_x_shift;

Completed in 266 milliseconds