Searched defs:objectType (Results 1 - 3 of 3) sorted by relevance

/frameworks/base/core/java/android/net/
H A DLinkQualityInfo.java97 public void writeToParcel(Parcel dest, int flags, int objectType) { argument
98 dest.writeInt(objectType);
116 int objectType = in.readInt();
117 if (objectType == OBJECT_TYPE_LINK_QUALITY_INFO) {
121 } else if (objectType == OBJECT_TYPE_WIFI_LINK_QUALITY_INFO) {
123 } else if (objectType == OBJECT_TYPE_MOBILE_LINK_QUALITY_INFO) {
/frameworks/av/media/libstagefright/rtsp/
H A DAPacketSource.cpp263 unsigned long objectType; local
264 if (GetAttribute(params, "objectType", &val)) {
267 objectType = strtoul(s, &end, 10);
270 objectType = 0x40; // Audio ISO/IEC 14496-3
306 *dst++ = objectType;
/frameworks/av/media/libstagefright/
H A DMPEG4Extractor.cpp3006 uint32_t objectType = br.getBits(5); local
3008 if (objectType == 31) { // AAC-ELD => additional 6 bits
3009 objectType = 32 + br.getBits(6);
3016 mLastTrack->meta->setInt32(kKeyAACAOT, objectType);
3037 if (objectType == AOT_SBR || objectType == AOT_PS) {//SBR specific config per 14496-3 table 1.13
3081 if (objectType == AOT_SBR || objectType == AOT_PS) {
3083 objectType = br.getBits(5);
3085 if (objectType
[all...]

Completed in 56 milliseconds