Lines Matching refs:h263PictureParams
92 VAEncPictureParameterBufferH263 h263PictureParams = VAEncPictureParameterBufferH263(); in renderPictureParams() local
98 h263PictureParams.reference_picture = task->ref_surface; in renderPictureParams()
99 h263PictureParams.reconstructed_picture = task->rec_surface; in renderPictureParams()
101 h263PictureParams.reference_picture = mAutoRefSurfaces[0]; in renderPictureParams()
102 h263PictureParams.reconstructed_picture = mAutoRefSurfaces[1]; in renderPictureParams()
105 h263PictureParams.coded_buf = task->coded_buffer; in renderPictureParams()
106 h263PictureParams.picture_width = mComParams.resolution.width; in renderPictureParams()
107 h263PictureParams.picture_height = mComParams.resolution.height; in renderPictureParams()
108 …h263PictureParams.picture_type = (task->type == FTYPE_I) ? VAEncPictureTypeIntra : VAEncPictureTyp… in renderPictureParams()
111 LOG_V( "reference_picture = 0x%08x\n", h263PictureParams.reference_picture); in renderPictureParams()
112 LOG_V( "reconstructed_picture = 0x%08x\n", h263PictureParams.reconstructed_picture); in renderPictureParams()
113 LOG_V( "coded_buf = 0x%08x\n", h263PictureParams.coded_buf); in renderPictureParams()
115 LOG_V( "picture_width = %d\n", h263PictureParams.picture_width); in renderPictureParams()
116 LOG_V( "picture_height = %d\n",h263PictureParams.picture_height); in renderPictureParams()
117 LOG_V( "picture_type = %d\n\n",h263PictureParams.picture_type); in renderPictureParams()
122 sizeof(h263PictureParams), in renderPictureParams()
123 1,&h263PictureParams, in renderPictureParams()