Searched refs:depth_minus1 (Results 1 - 25 of 40) sorted by relevance

12

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libavutil/
H A Dpixdesc.h43 uint16_t depth_minus1 :4; ///< number of bits in the component minus 1 member in struct:AVComponentDescriptor
H A Dpixdesc.c35 int depth = comp.depth_minus1 + 1;
79 int depth = comp.depth_minus1 + 1;
1142 bits += (pixdesc->comp[c].depth_minus1 + 1) << s;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavfilter/
H A Dvf_swapuv.c59 (desc->comp[1].depth_minus1 != desc->comp[2].depth_minus1))
H A Dvf_psnr.c273 s->max[0] = (1 << (desc->comp[0].depth_minus1 + 1)) - 1;
274 s->max[1] = (1 << (desc->comp[1].depth_minus1 + 1)) - 1;
275 s->max[2] = (1 << (desc->comp[2].depth_minus1 + 1)) - 1;
276 s->max[3] = (1 << (desc->comp[3].depth_minus1 + 1)) - 1;
279 s->max[0] = 235 * (1 << (desc->comp[0].depth_minus1 - 7));
280 s->max[1] = 240 * (1 << (desc->comp[1].depth_minus1 - 7));
281 s->max[2] = 240 * (1 << (desc->comp[2].depth_minus1 - 7));
282 s->max[3] = (1 << (desc->comp[3].depth_minus1 + 1)) - 1;
300 s->compute_mse = desc->comp[0].depth_minus1 > 7 ? compute_images_mse_16bit : compute_images_mse;
H A Dvf_mergeplanes.c125 if (desc->comp[0].depth_minus1 == s->outdesc->comp[0].depth_minus1 &&
229 inputp->depth[j] = indesc->comp[j].depth_minus1 + 1;
247 if (s->outdesc->comp[i].depth_minus1 + 1 != inputp->depth[plane]) {
250 i, s->outdesc->comp[i].depth_minus1 + 1,
H A Dvf_extractplanes.c112 depth = desc->comp[0].depth_minus1;
116 if (depth != desc->comp[0].depth_minus1 ||
153 e->depth = (desc->comp[0].depth_minus1 + 1) >> 3;
H A Dvf_yadif.c189 int df = (s->csp->comp[td->plane].depth_minus1 + 8) / 8;
479 if (s->csp->comp[0].depth_minus1 / 8 == 1) {
H A Dvf_idet.c201 if (idet->csp->comp[0].depth_minus1 / 8 == 1)
H A Dvf_hqdn3d.c260 s->depth = desc->comp[0].depth_minus1+1;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavcodec/x86/
H A Dlossless_videodsp_init.c45 if (EXTERNAL_MMXEXT(cpu_flags) && pix_desc->comp[0].depth_minus1<15) {
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavcodec/
H A Dlibopenjpegdec.c101 desc->comp[3].depth_minus1 + 1 >= image->comps[3].prec &&
106 desc->comp[2].depth_minus1 + 1 >= image->comps[2].prec &&
111 desc->comp[1].depth_minus1 + 1 >= image->comps[1].prec &&
116 desc->comp[0].depth_minus1 + 1 >= image->comps[0].prec &&
190 adjust[x] = FFMAX(FFMIN(av_pix_fmt_desc_get(picture->format)->comp[x].depth_minus1 + 1 - image->comps[x].prec, 8), 0);
226 adjust[x] = FFMAX(FFMIN(av_pix_fmt_desc_get(picture->format)->comp[x].depth_minus1 + 1 - image->comps[x].prec, 8), 0);
H A Dpnmenc.c86 int maxdepth = (1 << (av_pix_fmt_desc_get(avctx->pix_fmt)->comp[0].depth_minus1 + 1)) - 1;
H A Ddpxenc.c41 s->bits_per_component = desc->comp[0].depth_minus1 + 1;
H A Dlibx265.c225 x265pic.bitDepth = av_pix_fmt_desc_get(avctx->pix_fmt)->comp[0].depth_minus1 + 1;
H A Dlibopenjpegenc.c156 cmptparm[i].prec = desc->comp[i].depth_minus1 + 1;
157 cmptparm[i].bpp = desc->comp[i].depth_minus1 + 1;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavutil/
H A Dpixdesc.c42 int depth = comp.depth_minus1 + 1;
89 int depth = comp.depth_minus1 + 1;
1934 bits += (pixdesc->comp[c].depth_minus1 + 1) << s;
2053 av_assert0(!c->plane && !c->step_minus1 && !c->offset_plus1 && !c->shift && !c->depth_minus1);
2057 av_assert0(c->step_minus1 >= c->depth_minus1);
2059 av_assert0(8*(c->step_minus1+1) >= c->depth_minus1+1);
2065 tmp[0] = tmp[1] = (1<<(c->depth_minus1 + 1)) - 1;
2131 *min = FFMIN(desc->comp[i].depth_minus1+1, *min);
2132 *max = FFMAX(desc->comp[i].depth_minus1+1, *max);
2170 int depth_minus1 local
[all...]
H A Dpixdesc.h45 uint16_t depth_minus1 :4; ///< number of bits in the component minus 1 member in struct:AVComponentDescriptor
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavfilter/x86/
H A Dvf_yadif_init.c65 : yadif->csp->comp[0].depth_minus1 + 1;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libswscale/
H A Dswscale_internal.h546 (av_pix_fmt_descriptors[x].comp[0].depth_minus1 == 15)
549 (av_pix_fmt_descriptors[x].comp[0].depth_minus1 == 8 || \
550 av_pix_fmt_descriptors[x].comp[0].depth_minus1 == 9)
H A Dswscale_unscaled.c579 const int src_depth = av_pix_fmt_descriptors[c->srcFormat].comp[plane].depth_minus1 + 1;
580 const int dst_depth = av_pix_fmt_descriptors[c->dstFormat].comp[plane].depth_minus1 + 1;
660 const int dst_depth = av_pix_fmt_descriptors[c->dstFormat].comp[plane].depth_minus1 + 1;
740 else if (!av_pix_fmt_descriptors[c->srcFormat].comp[0].depth_minus1)
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libswscale/
H A Dswscale_internal.h624 return desc->comp[0].depth_minus1 == 15;
631 return desc->comp[0].depth_minus1 >= 8 && desc->comp[0].depth_minus1 <= 13;
H A Dswscale.c73 int bits = desc->comp[0].depth_minus1;
76 if((isAnyRGB(c->srcFormat) || c->srcFormat==AV_PIX_FMT_PAL8) && desc->comp[0].depth_minus1<15)
99 int sh = desc->comp[0].depth_minus1;
102 sh= isAnyRGB(c->srcFormat) || c->srcFormat==AV_PIX_FMT_PAL8 ? 13 : desc->comp[0].depth_minus1;
686 1, desc->comp[3].depth_minus1,
H A Dswscale_unscaled.c557 int bpc = dst_format->comp[0].depth_minus1 + 1;
728 int bits_per_sample = src_format->comp[0].depth_minus1 + 1;
1414 plane == 3, desc_dst->comp[plane].depth_minus1,
1424 const int src_depth = desc_src->comp[plane].depth_minus1 + 1;
1425 const int dst_depth = desc_dst->comp[plane].depth_minus1 + 1;
1540 else if (!desc_src->comp[0].depth_minus1)
1644 if (av_pix_fmt_desc_get(srcFormat)->comp[0].depth_minus1 == 7 &&
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libavfilter/
H A Dvf_yadif.c148 int df = (yadif->csp->comp[i].depth_minus1 + 8) / 8;
215 if (yadif->csp->comp[0].depth_minus1 / 8 == 1)
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavformat/
H A Dimg2enc.c118 if (desc->comp[0].depth_minus1 >= 8) {

Completed in 208 milliseconds

12