Searched refs:headerbitstream (Results 1 – 1 of 1) sorted by relevance
1444 $headerbitstream = '11111111111'; // A - Frame sync (all bits set) variable1447 $headerbitstream .= $MPEGversionLookup[$_POST['version']]; // B - MPEG Audio version ID1450 $headerbitstream .= $MPEGlayerLookup[$_POST['layer']]; // C - Layer description1452 $headerbitstream .= (($_POST['protection'] == 'Y') ? '0' : '1'); // D - Protection bit1478 $headerbitstream .= (($_POST['padding'] == 'Y') ? '1' : '0'); // G - Padding bit1480 $headerbitstream .= (($_POST['private'] == 'Y') ? '1' : '0'); // H - Private bit1483 $headerbitstream .= $MPEGaudioChannelModeLookup[$_POST['channelmode']]; // I - Channel Mode1489 $headerbitstream .= '00';1496 $headerbitstream .= (($_POST['copyright'] == 'Y') ? '1' : '0'); // K - Copyright1498 $headerbitstream .= (($_POST['original'] == 'Y') ? '1' : '0'); // L - Original[all …]