Home
last modified time | relevance | path

Searched refs:ccCount (Results 1 – 4 of 4) sorted by relevance

/packages/apps/TV/tuner/src/com/android/tv/tuner/data/
DCea708Data.java117 public final int ccCount; field in Cea708Data.CcPacket
120 public CcPacket(byte[] bytes, int ccCount, long pts) { in CcPacket() argument
122 this.ccCount = ccCount; in CcPacket()
DCea708Parser.java256 int ccCount = data.limit() / 3; in parseClosedCaption() local
257 byte[] ccBytes = new byte[3 * ccCount]; in parseClosedCaption()
258 for (int i = 0; i < 3 * ccCount; i++) { in parseClosedCaption()
261 CcPacket ccPacket = new CcPacket(ccBytes, ccCount, framePtsUs); in parseClosedCaption()
286 for (int i = 0; i < ccPacket.ccCount; ++i) { in parseCcPacket()
/packages/apps/TV/tuner/src/com/android/tv/tuner/exoplayer/
DMpegTsSampleExtractor.java270 int ccCount = buffer.get(pos) & 0x1f; in parseClosedCaption() local
272 if (!processCcDataFlag || pos + 3 * ccCount >= buffer.position() || ccCount == 0) { in parseClosedCaption()
276 for (int i = 0; i < 3 * ccCount; i++) { in parseClosedCaption()
/packages/apps/TV/tuner/src/com/android/tv/tuner/exoplayer2/
DMpegTsSampleExtractor.java282 int ccCount = buffer.get(pos) & 0x1f; in parseClosedCaption() local
284 if (!processCcDataFlag || pos + 3 * ccCount >= buffer.position() || ccCount == 0) { in parseClosedCaption()
288 for (int i = 0; i < 3 * ccCount; i++) { in parseClosedCaption()