Home
last modified time | relevance | path

Searched refs:p_current_picture (Results 1 – 2 of 2) sorted by relevance

/dports/multimedia/vlc/vlc-3.0.16/modules/access/linsys/
H A Dlinsys_hdsdi.c553 block_t *p_current_picture = block_Alloc( p_sys->i_vblock_size ); in HandleVideo() local
554 if( unlikely( !p_current_picture ) ) in HandleVideo()
556 uint8_t *p_y = p_current_picture->p_buffer; in HandleVideo()
602 memcpy( &p_current_picture->p_buffer[p_sys->i_vblock_size in HandleVideo()
606 p_current_picture->i_dts = p_current_picture->i_pts = p_sys->i_next_vdate; in HandleVideo()
607 es_out_Send( p_demux->out, p_sys->p_es_video, p_current_picture ); in HandleVideo()
H A Dlinsys_sdi.c168 block_t *p_current_picture; member
406 p_sys->p_current_picture = block_Alloc( p_sys->i_block_size ); in NewFrame()
407 if( unlikely( !p_sys->p_current_picture ) ) in NewFrame()
409 p_sys->p_y = p_sys->p_current_picture->p_buffer; in NewFrame()
549 block_Release( p_sys->p_current_picture ); in StopDecode()
550 p_sys->p_current_picture = NULL; in StopDecode()
665 memcpy( &p_sys->p_current_picture->p_buffer[p_sys->i_block_size in DecodeVideo()
669 p_sys->p_current_picture->i_dts = p_sys->p_current_picture->i_pts in DecodeVideo()
671 es_out_Send( p_demux->out, p_sys->p_es_video, p_sys->p_current_picture ); in DecodeVideo()