var fDesc=new Array(); fDesc[0] = "HEVC/H.265 Video ES Viewer provides a structural representation of HEVC/H.265 (High Efficiency Video Coding) video elementary stream compliant with the JCT-VC specification. The application allows the user to investigate the video sequence parameter set, picture parameter set and video parameter set with their extensions and inner structures. The program supports HEVC/H.265 video elementary streams, which have NAL unit separation with start code prefixes as per Annex B in the HEVC specification."; function tShowHide(id, show) { var s = document.getElementById("desc"); if ((s.innerHTML.length<=212 || show==1) && show!=2) { s.innerHTML = fDesc[id]; if (document.getElementById('m1')) document.getElementById('m1').style.display='none'; if (document.getElementById('m2')) document.getElementById('m2').style.display='none'; if (document.getElementById('more_txt')) document.getElementById('more_txt').style.display='inline'; } else { s.innerHTML = ''; } }