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

  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/
AC3SpecificBox.java 13 int acmod; field in class:AC3SpecificBox
33 acmod = brb.readBits(3);
45 bwb.writeBits(acmod, 3);
76 return acmod;
79 public void setAcmod(int acmod) {
80 this.acmod = acmod;
113 ", acmod=" + acmod +
EC3SpecificBox.java 50 e.acmod = brb.readBits(3);
72 bwb.writeBits(e.acmod, 3);
117 public int acmod; field in class:EC3SpecificBox.Entry
131 ", acmod=" + acmod +
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/tracks/
EC3TrackImpl.java 100 e.acmod = bsi.acmod;
220 entry.acmod = brb.readBits(3);
227 if (0 == entry.acmod) {
239 if (entry.acmod > 2) {
242 if (1 == (entry.acmod & 1) && entry.acmod > 2) {
246 if (0 < (entry.acmod & 4)) {
259 if (0 == entry.acmod) {
320 if (entry.acmod < 2)
    [all...]
AC3TrackImpl.java 28 int acmod; field in class:AC3TrackImpl
67 ac3.setAcmod(acmod);
180 acmod = brb.readBits(3);
188 if ((acmod != 1) && ((acmod & 1) == 1)) {
192 if (0 != (acmod & 4)) {
196 if (acmod == 2) {
200 switch (acmod) {
  /frameworks/av/media/libstagefright/mpeg2ts/
ESQueue.cpp 166 unsigned acmod = bits.getBits(3); local
171 if ((acmod & 1) > 0 && acmod != 1) {
177 if ((acmod & 4) > 0) {
183 if (acmod == 2) {
202 unsigned channelCount = channelCountTable[acmod] + lfeon;
265 unsigned acmod = bits.getBits(3); local
275 unsigned channelCount = channelCountTable[acmod] + lfeon;
    [all...]
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/adaptivestreaming/
FlatManifestWriterImpl.java 243 acmod Audio coding mode Nfchans Channel array ordering
265 switch (entry.acmod) {
  /frameworks/av/media/extractors/mp4/
MPEG4Extractor.cpp 3105 unsigned acmod = br.getBits(3); local
3239 unsigned acmod = br.getBits(3); local
    [all...]

Completed in 189 milliseconds