/third_party/ffmpeg/libavcodec/ |
D | h264dsp_template.c | 104 …UNCC(h264_loop_filter_luma)(uint8_t *p_pix, ptrdiff_t xstride, ptrdiff_t ystride, int inner_iters,… in FUNCC() 109 ystride >>= sizeof(pixel)-1; in FUNCC() 115 pix += inner_iters*ystride; in FUNCC() 148 pix += ystride; in FUNCC() 165 …264_loop_filter_luma_intra)(uint8_t *p_pix, ptrdiff_t xstride, ptrdiff_t ystride, int inner_iters,… in FUNCC() 170 ystride >>= sizeof(pixel)-1; in FUNCC() 215 pix += ystride; in FUNCC() 231 …CC(h264_loop_filter_chroma)(uint8_t *p_pix, ptrdiff_t xstride, ptrdiff_t ystride, int inner_iters,… in FUNCC() 238 ystride >>= sizeof(pixel)-1; in FUNCC() 242 pix += inner_iters*ystride; in FUNCC() [all …]
|
D | dxtory.c | 607 int ystride = frame->linesize[0]; in dx2_decode_slice_410() local 611 uint8_t *Y = frame->data[0] + ystride * line; in dx2_decode_slice_410() 628 Y[x + i + j * ystride] = decode_sym(gb, lru[0]); in dx2_decode_slice_410() 635 Y[x + i + j * ystride] = decode_sym(gb, lru[0]); in dx2_decode_slice_410() 640 Y += ystride * 4; in dx2_decode_slice_410() 649 Y[x + i + j * ystride] = decode_sym(gb, lru[0]); in dx2_decode_slice_410() 656 Y[x + i + j * ystride] = decode_sym(gb, lru[0]); in dx2_decode_slice_410() 687 int ystride = frame->linesize[0]; in dx2_decode_slice_420() local 691 uint8_t *Y = frame->data[0] + ystride * line; in dx2_decode_slice_420() 706 Y[x + 0 + 0 * ystride] = decode_sym(gb, lru[0]); in dx2_decode_slice_420() [all …]
|
D | aic.c | 324 const int ystride = ctx->frame->linesize[0]; in aic_decode_slice() local 334 Y = ctx->frame->data[0] + mb_x * 16 + y_pos * ystride; in aic_decode_slice() 360 dst = Y + (blk >> 1) * 8 * ystride + (blk & 1) * 8; in aic_decode_slice() 361 ctx->idsp.put_signed_pixels_clamped(ctx->block, dst, ystride); in aic_decode_slice() 363 dst = Y + (blk & 1) * 8 + (blk >> 1) * ystride; in aic_decode_slice() 365 ystride * 2); in aic_decode_slice()
|
D | hevcdsp_template.c | 1507 #define TP3 pix[-4 * xstride + 3 * ystride] 1508 #define TP2 pix[-3 * xstride + 3 * ystride] 1509 #define TP1 pix[-2 * xstride + 3 * ystride] 1510 #define TP0 pix[-1 * xstride + 3 * ystride] 1511 #define TQ0 pix[0 * xstride + 3 * ystride] 1512 #define TQ1 pix[1 * xstride + 3 * ystride] 1513 #define TQ2 pix[2 * xstride + 3 * ystride] 1514 #define TQ3 pix[3 * xstride + 3 * ystride] 1524 ptrdiff_t ystride = _ystride / sizeof(pixel); in FUNC() local 1540 pix += 4 * ystride; in FUNC() [all …]
|
/third_party/gstreamer/gstplugins_good/gst/rtp/ |
D | gstrtpvrawpay.c | 276 guint ystride, uvstride; in gst_rtp_vraw_pay_handle_buffer() local 308 ystride = GST_VIDEO_FRAME_COMP_STRIDE (&frame, 0); in gst_rtp_vraw_pay_handle_buffer() 495 memcpy (outdata, p0 + (lin * ystride) + (offs * pgroup), length); in gst_rtp_vraw_pay_handle_buffer() 503 datap = p0 + (lin * ystride) + (offs * 4); in gst_rtp_vraw_pay_handle_buffer() 519 yd1p = yp + (lin * ystride) + (offs); in gst_rtp_vraw_pay_handle_buffer() 520 yd2p = yd1p + ystride; in gst_rtp_vraw_pay_handle_buffer() 541 ydp = yp + (lin * ystride) + offs; in gst_rtp_vraw_pay_handle_buffer()
|
D | gstrtpvrawdepay.c | 333 guint cont, ystride, uvstride, pgroup, payload_len; in gst_rtp_vraw_depay_process_packet() local 394 ystride = GST_VIDEO_FRAME_COMP_STRIDE (frame, 0); in gst_rtp_vraw_depay_process_packet() 483 datap = p0 + (line * ystride) + (offs * pgroup); in gst_rtp_vraw_depay_process_packet() 492 datap = p0 + (line * ystride) + (offs * 4); in gst_rtp_vraw_depay_process_packet() 512 yd1p = yp + (line * ystride) + (offs); in gst_rtp_vraw_depay_process_packet() 513 yd2p = yd1p + ystride; in gst_rtp_vraw_depay_process_packet() 538 ydp = yp + (line * ystride) + (offs); in gst_rtp_vraw_depay_process_packet()
|
/third_party/gstreamer/gstplugins_base/tests/check/libs/ |
D | video.c | 51 int ystride; member 167 p->ystride = GST_ROUND_UP_4 (p->width); in paint_setup_I420() 168 p->up = p->yp + p->ystride * GST_ROUND_UP_2 (p->height); in paint_setup_I420() 171 p->vstride = GST_ROUND_UP_8 (p->ystride) / 2; in paint_setup_I420() 179 p->ystride = GST_ROUND_UP_4 (p->width); in paint_setup_YV12() 180 p->vp = p->yp + p->ystride * GST_ROUND_UP_2 (p->height); in paint_setup_YV12() 181 p->vstride = GST_ROUND_UP_8 (p->ystride) / 2; in paint_setup_YV12() 183 p->ustride = GST_ROUND_UP_8 (p->ystride) / 2; in paint_setup_YV12() 194 p->ystride = p->width * 4; in paint_setup_AYUV() 195 p->endptr = dest + p->ystride * p->height; in paint_setup_AYUV() [all …]
|
/third_party/gstreamer/gstplugins_bad/gst/dvdspu/ |
D | gstspu-vobsub-render.c | 403 gint ystride; in gstspu_vobsub_draw_highlight() local 405 ystride = GST_VIDEO_FRAME_COMP_STRIDE (frame, 0); in gstspu_vobsub_draw_highlight() 407 cur = GST_VIDEO_FRAME_COMP_DATA (frame, 0) + ystride * rect->top; in gstspu_vobsub_draw_highlight() 410 cur = GST_VIDEO_FRAME_COMP_DATA (frame, 0) + ystride * rect->bottom; in gstspu_vobsub_draw_highlight() 413 cur = GST_VIDEO_FRAME_COMP_DATA (frame, 0) + ystride * rect->top; in gstspu_vobsub_draw_highlight() 417 cur += ystride; in gstspu_vobsub_draw_highlight()
|
/third_party/gstreamer/gstplugins_good/gst/videofilter/ |
D | gstvideobalance.c | 179 gint ystride, ustride, vstride; in gst_video_balance_planar_yuv() local 190 ystride = GST_VIDEO_FRAME_PLANE_STRIDE (frame, 0); in gst_video_balance_planar_yuv() 195 yptr = ydata + y * ystride; in gst_video_balance_planar_yuv() 234 gint ystride, uvstride; in gst_video_balance_semiplanar_yuv() local 246 ystride = GST_VIDEO_FRAME_PLANE_STRIDE (frame, 0); in gst_video_balance_semiplanar_yuv() 251 yptr = ydata + y * ystride; in gst_video_balance_semiplanar_yuv()
|
/third_party/mesa3d/include/android_stub/system/ |
D | graphics.h | 86 size_t ystride; member
|
/third_party/openh264/module/ |
D | gmp-openh264.cpp | 875 int ystride = decoded->UsrData.sSystemBuffer.iStride[0]; in Decode_m() local 901 ystride * height, static_cast<uint8_t*> (data[0]), in Decode_m() 905 ystride, uvstride, uvstride); in Decode_m()
|
/third_party/ffmpeg/libavcodec/mips/ |
D | h264dsp_msa.c | 2302 ptrdiff_t ystride, in ff_h264_h_loop_filter_chroma422_msa() argument 2306 avc_h_loop_filter_chroma422_msa(src, ystride, alpha, beta, tc0); in ff_h264_h_loop_filter_chroma422_msa() 2310 ptrdiff_t ystride, in ff_h264_h_loop_filter_chroma422_mbaff_msa() argument 2315 avc_h_loop_filter_chroma422_mbaff_msa(src, ystride, alpha, beta, tc0); in ff_h264_h_loop_filter_chroma422_mbaff_msa() 2319 ptrdiff_t ystride, in ff_h264_h_loop_filter_luma_mbaff_msa() argument 2324 avc_h_loop_filter_luma_mbaff_msa(src, ystride, alpha, beta, tc0); in ff_h264_h_loop_filter_luma_mbaff_msa() 2328 ptrdiff_t ystride, in ff_h264_h_loop_filter_luma_mbaff_intra_msa() argument 2332 avc_h_loop_filter_luma_mbaff_intra_msa(src, ystride, alpha, beta); in ff_h264_h_loop_filter_luma_mbaff_intra_msa()
|
/third_party/mesa3d/src/egl/drivers/dri2/ |
D | platform_android.c | 266 out_buf_info->pitches[0] = ycbcr.ystride; in get_yuv_buffer_info()
|