Searched refs:dst_h (Results 1 - 17 of 17) sorted by relevance

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavfilter/
H A Dlswsutils.c23 int dst_w, int dst_h, enum AVPixelFormat dst_pix_fmt,
30 dst_w, dst_h, dst_pix_fmt,
37 av_get_pix_fmt_name(dst_pix_fmt), dst_w, dst_h);
42 if ((ret = av_image_alloc(dst_data, dst_linesize, dst_w, dst_h, dst_pix_fmt, 16)) < 0)
22 ff_scale_image(uint8_t *dst_data[4], int dst_linesize[4], int dst_w, int dst_h, enum AVPixelFormat dst_pix_fmt, uint8_t * const src_data[4], int src_linesize[4], int src_w, int src_h, enum AVPixelFormat src_pix_fmt, void *log_ctx) argument
H A Dlswsutils.h33 int dst_w, int dst_h, enum AVPixelFormat dst_pix_fmt,
H A Ddrawutils.h110 int dst_w, int dst_h,
121 * @param dst_h height of the destination image
132 uint8_t *dst[], int dst_linesize[], int dst_w, int dst_h,
H A Dvf_owdenoise.c111 static inline void decompose(float *dst_l, float *dst_h, const float *src, argument
126 dst_h[x * linesize] = sum_h;
148 static inline void decompose2D(float *dst_l, float *dst_h, const float *src, argument
156 dst_h + ylinesize*y + xlinesize*x,
H A Dvf_overlay.c373 const int dst_h = dst->height; local
376 y >= dst_h || y+src_h < 0)
398 for (imax = FFMIN(-y + dst_h, src_h); i < imax; i++) {
456 for (imax = FFMIN(-y + dst_h, src_h); i < imax; i++) {
490 int dst_hp = FF_CEIL_RSHIFT(dst_h, vsub);
H A Dvf_histogram.c251 const int dst_h = FF_CEIL_RSHIFT(outlink->h, (is_chroma ? h->desc->log2_chroma_h : 0)); local
253 for (i = 0; i < dst_h ; i++)
H A Ddrawutils.c350 int dst_w, int dst_h,
359 clip_interval(dst_h, &y0, &h, NULL);
447 uint8_t *dst[], int dst_linesize[], int dst_w, int dst_h,
456 clip_interval(dst_h, &y0, &mask_h, &ym0);
348 ff_blend_rectangle(FFDrawContext *draw, FFDrawColor *color, uint8_t *dst[], int dst_linesize[], int dst_w, int dst_h, int x0, int y0, int w, int h) argument
446 ff_blend_mask(FFDrawContext *draw, FFDrawColor *color, uint8_t *dst[], int dst_linesize[], int dst_w, int dst_h, uint8_t *mask, int mask_linesize, int mask_w, int mask_h, int l2depth, unsigned endianness, int x0, int y0) argument
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/doc/examples/
H A Dscaling_video.c56 int src_w = 320, src_h = 240, dst_w, dst_h; local
76 if (av_parse_video_size(&dst_w, &dst_h, dst_size) < 0) {
91 dst_w, dst_h, dst_pix_fmt,
98 av_get_pix_fmt_name(dst_pix_fmt), dst_w, dst_h);
112 dst_w, dst_h, dst_pix_fmt, 1)) < 0) {
132 av_get_pix_fmt_name(dst_pix_fmt), dst_w, dst_h, dst_filename);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/media/video/ivtv/
H A Divtv-yuv.c379 ("Adjust to height %d src_h %d dst_h %d src_y %d dst_y %d\n",
380 f->tru_h, f->src_h, f->dst_h, f->src_y, f->dst_y);
410 reg_2918 = (f->dst_h << 16) | (f->src_h + src_minor_y);
412 reg_2918 = (f->dst_h << 16) | ((f->src_h + src_minor_y) << 1);
415 reg_291c = (f->dst_h << 16) | ((f->src_h + src_minor_uv) >> 1);
417 reg_291c = (f->dst_h << 16) | (f->src_h + src_minor_uv);
419 reg_2964_base = (src_minor_y * ((f->dst_h << 16) / f->src_h)) >> 14;
420 reg_2968_base = (src_minor_uv * ((f->dst_h << 16) / f->src_h)) >> 14;
422 if (f->dst_h / 2 >= f->src_h && !f->interlaced_y) {
423 master_height = (f->src_h * 0x00400000) / f->dst_h;
[all...]
H A Divtv-driver.h405 u32 dst_h; member in struct:yuv_frame_info
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/staging/msm/
H A Dmdp4_overlay_mddi.c118 pipe->dst_h = fbi->var.yres;
137 pipe->dst_h = fbi->var.yres;
153 pipe->dst_h = iBuf->dma_h;
H A Dmdp4_overlay.c139 if (pipe->dst_h && pipe->src_h != pipe->dst_h) {
140 if (pipe->dst_h >= pipe->src_h * 8) /* too much */
145 if (pipe->dst_h <= (pipe->src_h / 4))
152 pipe->src_h, pipe->dst_h);
183 dst_size = ((pipe->dst_h << 16) | pipe->dst_w);
223 dst_size = ((pipe->dst_h << 16) | pipe->dst_w);
989 pipe->dst_h = req->dst_rect.h & 0x07ff;
H A Dmdp_ppp.c1416 int dst_h, src_w, i; local
1419 dst_h = iBuf.roi.dst_height;
1446 dst_h -= 16;
1450 if ((dst_h < 0) || (src_w < 0))
1456 if ((dst_h > 0) && (src_w > 0)) {
1459 iBuf.roi.dst_height = dst_h;
H A Dmdp4.h231 uint32 dst_h; /* roi */ member in struct:mdp4_overlay_pipe
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/video/msm/
H A Dmdp_ppp.c342 uint32_t dst_w, dst_h; local
353 dst_h = req->dst_rect.w;
356 dst_h = req->dst_rect.h;
360 get_edge_info(req->src_rect.h, req->src_rect.y, dst_h,
440 uint32_t dst_w, dst_h; local
444 dst_h = req->dst_rect.w;
447 dst_h = req->dst_rect.h;
449 if ((req->src_rect.w == dst_w) && (req->src_rect.h == dst_h) &&
460 scale_params(req->src_rect.h, dst_h, 1, &phase_init_y,
465 scale_factor_y = (dst_h * 1
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/gpu/drm/i915/
H A Dintel_overlay.c494 short dst_h; member in struct:put_image_params
626 if (params->dst_h > 1)
628 /(params->dst_h);
782 regs->DWINSZ = (params->dst_h << 16) | params->dst_w;
927 tmp = ((rec->src_scan_h << 16) / rec->dst_h) >> 16;
1135 params->dst_h = ((((u32)put_image_rec->dst_height) << 12) /
1139 params->dst_h = put_image_rec->dst_height;
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/gpu/drm/radeon/
H A Dradeon_display.c1124 u32 src_h = 1, dst_h = 1; local
1152 dst_h = radeon_crtc->native_mode.hdisplay;
1167 dst_h = crtc->mode.hdisplay - (radeon_crtc->h_border * 2);
1189 b.full = dfixed_const(dst_h);

Completed in 177 milliseconds