HomeSort by relevance Sort by last modified time
    Searched refs:tsData (Results 1 - 2 of 2) sorted by null

  /packages/apps/TV/usbtuner/src/com/android/usbtuner/ts/
TsParser.java 355 private boolean feedTSPacket(byte[] tsData, int pos) {
356 if (tsData.length < pos + TS_PACKET_SIZE) {
360 if (tsData[pos] != TS_PACKET_START_CODE) {
364 if ((tsData[pos + 1] & TS_PACKET_TEI_MASK) != 0) {
370 int pid = ((tsData[pos + 1] & 0x1f) << 8) | (tsData[pos + 2] & 0xff);
371 boolean hasAdaptation = (tsData[pos + 3] & 0x20) != 0;
372 boolean hasPayload = (tsData[pos + 3] & 0x10) != 0;
373 boolean payloadStartIndicator = (tsData[pos + 1] & 0x40) != 0;
374 int continuityCounter = tsData[pos + 3] & 0x0f
    [all...]
  /external/libnfc-nci/halimpl/pn54x/dnld/
phNxpNciHal_Dnld.c     [all...]

Completed in 398 milliseconds