Searched refs:dst_w (Results 1 - 14 of 14) 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,
120 * @param dst_w width of the destination image
132 uint8_t *dst[], int dst_linesize[], int dst_w, int dst_h,
H A Dvf_overlay.c372 const int dst_w = dst->width; local
375 if (x >= dst_w || x+src_w < 0 ||
403 for (jmax = FFMIN(-x + dst_w, src_w); j < jmax; j++) {
461 for (jmax = FFMIN(-x + dst_w, src_w); j < jmax; j++) {
489 int dst_wp = FF_CEIL_RSHIFT(dst_w, hsub);
H A Dvf_histogram.c252 const int dst_w = FF_CEIL_RSHIFT(outlink->w, (is_chroma ? h->desc->log2_chroma_w : 0)); local
256 h->bg_color[k], dst_w);
H A Ddrawutils.c350 int dst_w, int dst_h,
358 clip_interval(dst_w, &x0, &w, NULL);
447 uint8_t *dst[], int dst_linesize[], int dst_w, int dst_h,
455 clip_interval(dst_w, &x0, &mask_w, &xm0);
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.c213 ("Adjust to width %d src_w %d dst_w %d src_x %d dst_x %d\n",
214 f->tru_w, f->src_w, f->dst_w, f->src_x, f->dst_x);
220 reg_2834 = f->dst_w;
236 if ((f->tru_x - f->pan_x > -1) && (f->tru_x - f->pan_x <= 40) && (f->dst_w >= 680))
238 else if ((f->tru_x - f->pan_x < 0) && (f->tru_x - f->pan_x >= -20) && (f->dst_w >= 660))
241 if (f->dst_w >= f->src_w)
247 if (f->dst_w < f->src_w)
253 reg_2870_offset = (f->src_x * ((f->dst_w << 21) / f->src_w)) >> 19;
255 if (f->dst_w >= f->src_w) {
257 master_width = (f->src_w * 0x00200000) / (f->dst_w);
[all...]
H A Divtv-driver.h404 u32 dst_w; 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.c119 pipe->dst_w = fbi->var.xres;
138 pipe->dst_w = fbi->var.xres;
154 pipe->dst_w = iBuf->dma_w;
H A Dmdp4_overlay.c155 if (pipe->dst_w && pipe->src_w != pipe->dst_w) {
156 if (pipe->dst_w >= pipe->src_w * 8) /* too much */
161 if (pipe->dst_w <= (pipe->src_w / 4))
168 pipe->src_w, pipe->dst_w);
183 dst_size = ((pipe->dst_h << 16) | pipe->dst_w);
223 dst_size = ((pipe->dst_h << 16) | pipe->dst_w);
990 pipe->dst_w = req->dst_rect.w & 0x07ff;
H A Dmdp4.h230 uint32 dst_w; /* 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
352 dst_w = req->dst_rect.h;
355 dst_w = req->dst_rect.w;
363 get_edge_info(req->src_rect.w, req->src_rect.x, dst_w,
440 uint32_t dst_w, dst_h; local
443 dst_w = req->dst_rect.h;
446 dst_w = req->dst_rect.w;
449 if ((req->src_rect.w == dst_w) && (req->src_rect.h == dst_h) &&
458 if (scale_params(req->src_rect.w, dst_w, 1, &phase_init_x,
464 scale_factor_x = (dst_w * 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.c493 short dst_w; member in struct:put_image_params
620 if (params->dst_w > 1)
622 /(params->dst_w);
782 regs->DWINSZ = (params->dst_h << 16) | params->dst_w;
930 tmp = ((rec->src_scan_w << 16) / rec->dst_w) >> 16;
1142 params->dst_w = put_image_rec->dst_width;

Completed in 93 milliseconds