Lines Matching refs:sd
825 YV12_BUFFER_CONFIG sd;
848 res = image2yuvconfig(img, &sd);
851 &sd, dst_time_stamp, dst_end_time_stamp))
987 YV12_BUFFER_CONFIG sd;
989 image2yuvconfig(&frame->img, &sd);
990 vp8_set_reference(ctx->cpi, frame->frame_type, &sd);
1008 YV12_BUFFER_CONFIG sd;
1010 image2yuvconfig(&frame->img, &sd);
1011 vp8_get_reference(ctx->cpi, frame->frame_type, &sd);
1045 YV12_BUFFER_CONFIG sd;
1055 if (0 == vp8_get_preview_raw_frame(ctx->cpi, &sd, &flags))
1060 sd.y_width + 2*VP8BORDERINPIXELS,
1061 sd.y_height + 2*VP8BORDERINPIXELS,
1063 sd.buffer_alloc);
1066 sd.y_width, sd.y_height);
1070 ctx->preview_img.planes[VPX_PLANE_Y] = sd.y_buffer;
1071 ctx->preview_img.planes[VPX_PLANE_U] = sd.u_buffer;
1072 ctx->preview_img.planes[VPX_PLANE_V] = sd.v_buffer;
1078 ctx->preview_img.d_w = sd.y_width;
1079 ctx->preview_img.d_h = sd.y_height;
1080 ctx->preview_img.stride[VPX_PLANE_Y] = sd.y_stride;
1081 ctx->preview_img.stride[VPX_PLANE_U] = sd.uv_stride;
1082 ctx->preview_img.stride[VPX_PLANE_V] = sd.uv_stride;
1083 ctx->preview_img.w = sd.y_width;
1084 ctx->preview_img.h = sd.y_height;