Je parle plusieurs langues …
jan 27, 2006 I Informatique.dont une extraterrestre. La preuve:
frame *h264_decode_frame(int verbose) {
while(get_next_nal_unit(&nalu))
if(nalu.nal_unit_type==1 || nalu.nal_unit_type==5) {
perf_enter(”slice decoding”);
++frame_no;
decode_slice_header(&sh,&sps,&pps,&nalu);
if(verbose)
printf(”Frame%4d: %s”,frame_no,_str_slice_type(sh.slice_type));
if(sh.slice_type!=I_SLICE && sh.slice_type!=P_SLICE)
fprintf(stderr,”H.264 Warning: Unsupported slice type (%s), skipping! “,
_str_slice_type(sh.slice_type));
else {
frame *temp;
decode_slice_data(&sh,&sps,&pps,&nalu,this,ref,mpi);
temp=this; this=ref; ref=temp;
return temp;
}
} else if(nalu.nal_unit_type!=7 && nalu.nal_unit_type!=8)
fprintf(stderr,”H.264 Warning: unexpected or unsupported NAL unit type! “);
return NULL;
}
Jessica Says:
Je confirme toute la laideur grammaticale et l’indicibilité de la chose…
jan 27, 2006, 4:49