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

  /packages/apps/TV/src/com/android/tv/tuner/ts/
TsParser.java 388 private boolean feedTSPacket(byte[] tsData, int pos) {
389 if (tsData.length < pos + TS_PACKET_SIZE) {
393 if (tsData[pos] != TS_PACKET_START_CODE) {
397 if ((tsData[pos + 1] & TS_PACKET_TEI_MASK) != 0) {
403 int pid = ((tsData[pos + 1] & 0x1f) << 8) | (tsData[pos + 2] & 0xff);
404 boolean hasAdaptation = (tsData[pos + 3] & 0x20) != 0;
405 boolean hasPayload = (tsData[pos + 3] & 0x10) != 0;
406 boolean payloadStartIndicator = (tsData[pos + 1] & 0x40) != 0;
407 int continuityCounter = tsData[pos + 3] & 0x0f
    [all...]
  /system/nfc/halimpl/pn54x/dnld/
phNxpNciHal_Dnld.c     [all...]

Completed in 41 milliseconds