comparison libmpcodecs/ve_lavc.c @ 17487:fa17424b4c7b

change muxer_write_chunk() so that pts/dts _could_ be passed from encoder to muxer
author michael
date Thu, 26 Jan 2006 19:32:07 +0000
parents 3993a5fad89a
children f0e7712385dc
comparison
equal deleted inserted replaced
17486:716de63bff7f 17487:fa17424b4c7b
857 pic); 857 pic);
858 858
859 if(out_size == 0) 859 if(out_size == 0)
860 return 0; 860 return 0;
861 861
862 muxer_write_chunk(mux_v,out_size,lavc_venc_context->coded_frame->key_frame?0x10:0); 862 muxer_write_chunk(mux_v,out_size,lavc_venc_context->coded_frame->key_frame?0x10:0, MP_NOPTS_VALUE, MP_NOPTS_VALUE);
863 863
864 #if LIBAVCODEC_BUILD >= 4643 864 #if LIBAVCODEC_BUILD >= 4643
865 /* store psnr / pict size / type / qscale */ 865 /* store psnr / pict size / type / qscale */
866 if(lavc_param_psnr){ 866 if(lavc_param_psnr){
867 static FILE *fvstats=NULL; 867 static FILE *fvstats=NULL;