Home
last modified time | relevance | path

Searched refs:p_converted (Results 1 – 6 of 6) sorted by path

/dports/multimedia/vlc/vlc-3.0.16/modules/codec/avcodec/
H A Daudio.c413 block_t *p_converted = ConvertAVFrame( p_dec, frame ); /* Consumes frame */ in DecodeBlock() local
414 if( p_converted ) in DecodeBlock()
419 memset( p_converted->p_buffer, 0, p_converted->i_buffer ); in DecodeBlock()
422 p_converted->i_buffer = p_converted->i_nb_samples in DecodeBlock()
424 p_converted->i_pts = date_Get( &p_sys->end_date ); in DecodeBlock()
425 p_converted->i_length = date_Increment( &p_sys->end_date, in DecodeBlock()
426p_converted->i_nb_samples ) - p_converted->i_pts; in DecodeBlock()
428 decoder_QueueAudio( p_dec, p_converted ); in DecodeBlock()
/dports/multimedia/vlc/vlc-3.0.16/modules/demux/mp4/
H A Dmp4.c1143 block_t *p_converted = NULL; in MP4_RTPHint_Convert() local
1158 p_converted = p_block; in MP4_RTPHint_Convert()
1167 p_converted = MP4_RTPHintToFrame( p_demux, p_block, i_packets ); in MP4_RTPHint_Convert()
1170 return p_converted; in MP4_RTPHint_Convert()
/dports/multimedia/vlc/vlc-3.0.16/modules/spu/
H A Dmosaic.c528 picture_t *p_converted; in Filter() local
621 p_converted = image_Convert( p_sys->p_image, p_es->p_picture, in Filter()
623 if( !p_converted ) in Filter()
634 p_converted = p_es->p_picture; in Filter()
635 fmt_in.i_width = fmt_out.i_width = p_converted->format.i_width; in Filter()
636 fmt_in.i_height = fmt_out.i_height = p_converted->format.i_height; in Filter()
637 fmt_in.i_chroma = fmt_out.i_chroma = p_converted->format.i_chroma; in Filter()
645 picture_Copy( p_region->p_picture, p_converted ); in Filter()
647 picture_Release( p_converted ); in Filter()
/dports/multimedia/vlc/vlc-3.0.16/modules/video_filter/
H A Dball.c547 picture_t *p_converted; in FilterBall() local
561 p_converted = image_Convert( p_filter->p_sys->p_image, p_inpic, in FilterBall()
564 if( !p_converted ) in FilterBall()
570 p_converted = p_inpic; in FilterBall()
574 const int i_numCols = p_converted->p[0].i_visible_pitch; in FilterBall()
575 const int i_numLines = p_converted->p[0].i_visible_lines; in FilterBall()
604 GaussianConvolution( p_converted, p_smooth ); in FilterBall()
796 picture_Release( p_converted ); in FilterBall()
H A Dmagnify.c207 picture_t *p_converted; in Filter() local
246 p_converted = image_Convert( p_sys->p_image, p_pic, &fmt_in, &fmt_out ); in Filter()
249 picture_CopyPixels( p_outpic, p_converted ); in Filter()
251 picture_Release( p_converted ); in Filter()
268 p_converted = image_Convert( p_sys->p_image, p_pic, in Filter()
272 picture_CopyVisiblePixels( p_outpic, p_converted ); in Filter()
274 picture_Release( p_converted ); in Filter()
H A Dpsychedelic.c144 picture_t *p_converted; in Filter() local
189 p_converted = image_Convert( p_filter->p_sys->p_image, p_pic, in Filter()
192 if( p_converted ) in Filter()
195 for( int y = 0; y<p_converted->p[plane].i_visible_lines; y++ ) { \ in Filter()
196 for( int x = 0; x<p_converted->p[plane].i_visible_pitch; x++ ) { \ in Filter()
201 ny = p_converted->p[plane].i_visible_lines-y; \ in Filter()
205 nx = p_converted->p[plane].i_visible_pitch-x; \ in Filter()
206 …+p_filter->p_sys->y*b)*p_outpic->p[plane].i_pitch ] = p_converted->p[plane].p_pixels[y*p_converted in Filter()
213 picture_Release( p_converted ); in Filter()