Lines Matching refs:copy_params

404   GstGLMemoryPBOCopyParams *copy_params;  in _gl_mem_copy_thread()  local
414 copy_params = (GstGLMemoryPBOCopyParams *) data; in _gl_mem_copy_thread()
415 src = copy_params->src; in _gl_mem_copy_thread()
416 tex_id = copy_params->tex_id; in _gl_mem_copy_thread()
417 out_tex_target = gst_gl_texture_target_to_gl (copy_params->tex_target); in _gl_mem_copy_thread()
418 out_width = copy_params->out_width; in _gl_mem_copy_thread()
419 out_height = copy_params->out_height; in _gl_mem_copy_thread()
420 out_stride = copy_params->out_stride; in _gl_mem_copy_thread()
424 gst_gl_format_type_from_sized_gl_format (copy_params->out_format, in _gl_mem_copy_thread()
438 if (copy_params->respecify) { in _gl_mem_copy_thread()
450 copy_params->out_format, out_gl_format, out_gl_type, in _gl_mem_copy_thread()
451 copy_params->out_width, copy_params->out_height); in _gl_mem_copy_thread()
473 if (copy_params->respecify) { in _gl_mem_copy_thread()
509 tex_id, copy_params->tex_target, copy_params->out_format, out_width, in _gl_mem_copy_thread()
518 copy_params->tex_id = tex_id; in _gl_mem_copy_thread()
519 copy_params->result = TRUE; in _gl_mem_copy_thread()
528 copy_params->tex_id = 0; in _gl_mem_copy_thread()
529 copy_params->result = FALSE; in _gl_mem_copy_thread()
535 copy_params->result = FALSE; in _gl_mem_copy_thread()
727 GstGLMemoryPBOCopyParams copy_params; in gst_gl_memory_pbo_copy_into_texture() local
729 copy_params.src = gl_mem; in gst_gl_memory_pbo_copy_into_texture()
730 copy_params.tex_target = target; in gst_gl_memory_pbo_copy_into_texture()
731 copy_params.tex_id = tex_id; in gst_gl_memory_pbo_copy_into_texture()
732 copy_params.out_format = tex_format; in gst_gl_memory_pbo_copy_into_texture()
733 copy_params.out_width = width; in gst_gl_memory_pbo_copy_into_texture()
734 copy_params.out_height = height; in gst_gl_memory_pbo_copy_into_texture()
735 copy_params.out_stride = stride; in gst_gl_memory_pbo_copy_into_texture()
736 copy_params.respecify = respecify; in gst_gl_memory_pbo_copy_into_texture()
739 &copy_params); in gst_gl_memory_pbo_copy_into_texture()
741 return copy_params.result; in gst_gl_memory_pbo_copy_into_texture()