Searched refs:y_off (Results 1 - 19 of 19) sorted by relevance

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavdevice/
H A Dx11grab.c70 int y_off; /**< Vertical top-left corner coordinate */ member in struct:x11grab
130 s->y_off - REGION_WIN_BORDER,
167 int y_off = 0; local
182 sscanf(offset, "%d,%d", &x_off, &y_off);
193 s1->filename, dpyname, x_off, y_off, x11grab->width, x11grab->height);
218 XQueryPointer(dpy, RootWindow(dpy, screen), &w, &w, &x_off, &y_off, &ret, &ret, &ret);
220 y_off -= x11grab->height / 2;
222 y_off = FFMIN(FFMAX(y_off, 0), screen_h - x11grab->height);
223 av_log(s1, AV_LOG_INFO, "followmouse is enabled, resetting grabbing region to x: %d y: %d\n", x_off, y_off);
352 int y_off = s->y_off; local
475 int y_off = s->y_off; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libavdevice/
H A Dx11grab.c70 int y_off; /**< Vertical top-left corner coordinate */ member in struct:x11_grab
127 s->y_off - REGION_WIN_BORDER,
165 int y_off = 0; local
175 sscanf(offset, "%d,%d", &x_off, &y_off);
189 s1->filename, param, x_off, y_off, x11grab->width, x11grab->height);
213 XQueryPointer(dpy, RootWindow(dpy, screen), &w, &w, &x_off, &y_off, &ret, &ret, &ret);
215 y_off -= x11grab->height / 2;
217 y_off = FFMIN(FFMAX(y_off, 0), screen_h - x11grab->height);
218 av_log(s1, AV_LOG_INFO, "followmouse is enabled, resetting grabbing region to x: %d y: %d\n", x_off, y_off);
337 int y_off = s->y_off; local
452 int y_off = s->y_off; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavcodec/
H A Dfic.c35 int y_off; member in struct:FICThreadContext
169 int y_off = tctx->y_off; local
176 uint8_t* dst = ctx->frame->data[p] + (y_off >> !!p) * stride;
363 int y_off = ctx->slice_h * slice; local
385 ctx->slice_data[slice].y_off = y_off;
H A Dvp8.c1697 * @param y_off vertical position of block from origin (0, 0)
1708 int x_off, int y_off, int block_w, int block_h,
1721 y_off += mv->y >> 2;
1724 ff_thread_await_progress(ref, (3 + y_off + block_h + subpel_idx[2][my]) >> 4, 0);
1725 src += y_off * linesize + x_off;
1727 y_off < my_idx || y_off >= height - block_h - subpel_idx[2][my]) {
1733 x_off - mx_idx, y_off - my_idx,
1740 ff_thread_await_progress(ref, (3 + y_off + block_h) >> 4, 0);
1741 mc_func[0][0](dst, linesize, src + y_off * linesiz
1706 vp8_mc_luma(VP8Context *s, VP8ThreadData *td, uint8_t *dst, ThreadFrame *ref, const VP56mv *mv, int x_off, int y_off, int block_w, int block_h, int width, int height, ptrdiff_t linesize, vp8_mc_func mc_func[3][3]) argument
1764 vp8_mc_chroma(VP8Context *s, VP8ThreadData *td, uint8_t *dst1, uint8_t *dst2, ThreadFrame *ref, const VP56mv *mv, int x_off, int y_off, int block_w, int block_h, int width, int height, ptrdiff_t linesize, vp8_mc_func mc_func[3][3]) argument
1814 vp8_mc_part(VP8Context *s, VP8ThreadData *td, uint8_t *dst[3], ThreadFrame *ref_frame, int x_off, int y_off, int bx_off, int by_off, int block_w, int block_h, int width, int height, VP56mv *mv) argument
1857 int x_off = mb_x << 4, y_off = mb_y << 4; local
1878 int x_off = mb_x << 4, y_off = mb_y << 4; local
[all...]
H A Dvmdvideo.c60 int x_off, y_off; member in struct:VmdVideoContext
209 s->y_off = frame_y;
212 frame_y -= s->y_off;
H A Dhevc.c1283 * @param y_off vertical position of block from origin (0, 0)
1291 AVFrame *ref, const Mv *mv, int x_off, int y_off,
1306 y_off += mv->y >> 2;
1307 src += y_off * srcstride + (x_off << s->sps->pixel_shift);
1309 if (x_off < QPEL_EXTRA_BEFORE || y_off < QPEL_EXTRA_AFTER ||
1311 y_off >= pic_height - block_h - QPEL_EXTRA_AFTER) {
1320 x_off - QPEL_EXTRA_BEFORE, y_off - QPEL_EXTRA_BEFORE,
1344 * @param y_off vertical position of block from origin (0, 0)
1352 AVFrame *ref0, const Mv *mv0, int x_off, int y_off,
1368 int y_off0 = y_off
1290 luma_mc_uni(HEVCContext *s, uint8_t *dst, ptrdiff_t dststride, AVFrame *ref, const Mv *mv, int x_off, int y_off, int block_w, int block_h, int luma_weight, int luma_offset) argument
1351 luma_mc_bi(HEVCContext *s, uint8_t *dst, ptrdiff_t dststride, AVFrame *ref0, const Mv *mv0, int x_off, int y_off, int block_w, int block_h, AVFrame *ref1, const Mv *mv1, struct MvField *current_mv) argument
1443 chroma_mc_uni(HEVCContext *s, uint8_t *dst0, ptrdiff_t dststride, uint8_t *src0, ptrdiff_t srcstride, int reflist, int x_off, int y_off, int block_w, int block_h, struct MvField *current_mv, int chroma_weight, int chroma_offset) argument
1508 chroma_mc_bi(HEVCContext *s, uint8_t *dst0, ptrdiff_t dststride, AVFrame *ref0, AVFrame *ref1, int x_off, int y_off, int block_w, int block_h, struct MvField *current_mv, int cidx) argument
[all...]
H A Ddvbsubdec.c1335 int x, y, y_off, x_off; local
1382 y_off = display->y_pos - y_pos;
1404 pbuf[((y + y_off) * width) + x_off + x] =
H A Dvp56.c440 int y_off = b==2 || b==3 ? 8 : 0; local
443 16*col+x_off, 16*row+y_off);
H A Dvp9.c2443 static void intra_recon(AVCodecContext *ctx, ptrdiff_t y_off, ptrdiff_t uv_off) argument
2454 uint8_t *dst = s->dst[0], *dst_r = s->frames[CUR_FRAME].tf.f->data[0] + y_off;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libavcodec/
H A Dvp8.c1105 * @param y_off vertical position of block from origin (0, 0)
1115 int x_off, int y_off, int block_w, int block_h,
1127 y_off += mv->y >> 2;
1130 ff_thread_await_progress(ref, (3 + y_off + block_h + subpel_idx[2][my]) >> 4, 0);
1131 src += y_off * linesize + x_off;
1133 y_off < my_idx || y_off >= height - block_h - subpel_idx[2][my]) {
1136 x_off - mx_idx, y_off - my_idx, width, height);
1141 ff_thread_await_progress(ref, (3 + y_off + block_h) >> 4, 0);
1142 mc_func[0][0](dst, linesize, src + y_off * linesiz
1114 vp8_mc_luma(VP8Context *s, uint8_t *dst, AVFrame *ref, const VP56mv *mv, int x_off, int y_off, int block_w, int block_h, int width, int height, int linesize, vp8_mc_func mc_func[3][3]) argument
1164 vp8_mc_chroma(VP8Context *s, uint8_t *dst1, uint8_t *dst2, AVFrame *ref, const VP56mv *mv, int x_off, int y_off, int block_w, int block_h, int width, int height, int linesize, vp8_mc_func mc_func[3][3]) argument
1207 vp8_mc_part(VP8Context *s, uint8_t *dst[3], AVFrame *ref_frame, int x_off, int y_off, int bx_off, int by_off, int block_w, int block_h, int width, int height, VP56mv *mv) argument
1243 int x_off = mb_x << 4, y_off = mb_y << 4; local
1264 int x_off = mb_x << 4, y_off = mb_y << 4; local
[all...]
H A Dvmdav.c70 int x_off, y_off; member in struct:VmdVideoContext
228 s->y_off = frame_y;
231 frame_y -= s->y_off;
H A Ddvbsubdec.c1174 int x, y, y_off, x_off; local
1221 y_off = display->y_pos - y_pos;
1243 pbuf[((y + y_off) * width) + x_off + x] =
H A Dvp56.c441 int y_off = b==2 || b==3 ? 8 : 0; local
444 16*col+x_off, 16*row+y_off);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/staging/dream/camera/
H A Dmsm_vfe7x.c301 CDBG("config_axi1: O1, phy = 0x%lx, y_off = %d, cbcr_off =%d\n",
302 regptr->paddr, regptr->y_off, regptr->cbcr_off);
306 *bptr = regptr->paddr + regptr->y_off;
316 *bptr = regptr->paddr + regptr->y_off;
327 CDBG("config_axi2: O2, phy = 0x%lx, y_off = %d, cbcr_off =%d\n",
328 regptr->paddr, regptr->y_off, regptr->cbcr_off);
332 *bptr = regptr->paddr + regptr->y_off;
342 *bptr = regptr->paddr + regptr->y_off;
505 (void *)(p + b->y_off);
H A Dmsm_v4l2.c249 pmem_buf.y_off = 0;
283 frame.y_off = 0;
304 meminfo.y_off = 0;
335 meminfo.y_off = 0;
371 frame.y_off = 0;
H A Dmsm_vfe8x.c61 *p1 = regptr->paddr + regptr->y_off;
82 CDBG("config_axi: O2, phy = 0x%lx, y_off = %d, cbcr_off = %d\n",
83 regptr->paddr, regptr->y_off, regptr->cbcr_off);
88 *p1 = regptr->paddr + regptr->y_off;
611 (uint32_t)(p + b->y_off);
H A Dmsm_camera.c142 region->y_off = info->y_off;
186 if (pyaddr == (region->paddr + region->y_off) &&
193 *yoff = region->y_off;
233 (region->y_off == yoff) &&
353 pphy->cbcr_phy, &(frame->y_off),
361 frame->y_off);
690 buf.fmain.y_off = region.y_off;
1018 pb->y_off, p
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/staging/dream/include/media/
H A Dmsm_camera.h206 uint32_t y_off; member in struct:msm_pmem_info
234 uint32_t y_off; member in struct:msm_frame
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/staging/dream/include/mach/
H A Dcamera.h173 uint32_t y_off; member in struct:msm_pmem_region

Completed in 122 milliseconds