Lines Matching refs:ap

115             AudioPresentationV1 ap;  in addPresentations()  local
116 ap.mPresentationId = tap.preselection.preselectionId; in addPresentations()
117 ap.mProgramId = tap.ac4ShortProgramId; in addPresentations()
119 ap.mLabels.insert(std::pair(md.language, md.text)); in addPresentations()
121 ap.mLanguage = tap.preselection.language; in addPresentations()
122 ap.mMasteringIndication = MASTERING_NOT_INDICATED; in addPresentations()
125 ap.mMasteringIndication = masteringSearch->second; in addPresentations()
127 ap.mAudioDescriptionAvailable = tap.preselection.hasAudioDescription; in addPresentations()
128 ap.mSpokenSubtitlesAvailable = tap.preselection.hasSpokenSubtitles; in addPresentations()
129 ap.mDialogueEnhancementAvailable = tap.preselection.hasDialogueEnhancement; in addPresentations()
130 apc.push_back(ap); in addPresentations()
137 for (const auto& ap : presentations) { in addPresentations() local
138 ScopedLocalRef<jobject> jLabelObject = convertLabelsToMap(env, fields, ap.mLabels); in addPresentations()
140 ScopedLocalRef<jstring> jLanguage(env, env->NewStringUTF(ap.mLanguage.c_str())); in addPresentations()
145 static_cast<jint>(ap.mPresentationId), in addPresentations()
146 static_cast<jint>(ap.mProgramId), in addPresentations()
148 static_cast<jint>(ap.mMasteringIndication), in addPresentations()
149 static_cast<jboolean>((ap.mAudioDescriptionAvailable == 1) ? 1 : 0), in addPresentations()
150 static_cast<jboolean>((ap.mSpokenSubtitlesAvailable == 1) ? 1 : 0), in addPresentations()
151 static_cast<jboolean>((ap.mDialogueEnhancementAvailable == 1) ? 1 : 0), in addPresentations()