Searched refs:sps (Results 1 - 9 of 9) sorted by relevance

/frameworks/av/media/libstagefright/codecs/on2/h264dec/source/
H A Dh264bsd_pic_order_cnt.c56 sps. See standard for description of the POC types and how POC is
64 sps pointer to sequence parameter set
79 i32 h264bsdDecodePicOrderCnt(pocStorage_t *poc, seqParamSet_t *sps, argument
95 ASSERT(sps);
98 ASSERT(sps->picOrderCntType <= 2);
111 if ( sps->picOrderCntType > 0 &&
113 pSliceHeader->frameNum != ((poc->prevFrameNum + 1) % sps->maxFrameNum))
117 i = (poc->prevFrameNum + 1) % sps->maxFrameNum;
122 frameNumOffset = poc->prevFrameNumOffset + sps->maxFrameNum;
129 i = (i + 1) % sps
[all...]
H A Dh264bsd_storage.c65 static u32 CheckPps(picParamSet_t *pps, seqParamSet_t *sps);
142 if (pStorage->sps[id] == NULL)
144 ALLOCATE(pStorage->sps[id], 1, seqParamSet_t);
145 if (pStorage->sps[id] == NULL)
148 /* sequence parameter set with id equal to id of active sps */
154 * re-activation. Memories allocated for old sps freed
155 * otherwise free memeries allocated for just decoded sps and
159 FREE(pStorage->sps[id]->offsetForRefFrame);
160 FREE(pStorage->sps[id]->vuiParameters);
177 FREE(pStorage->sps[i
636 seqParamSet_t *sps; local
794 CheckPps(picParamSet_t *pps, seqParamSet_t *sps) argument
[all...]
H A Dh264bsd_pic_order_cnt.h64 i32 h264bsdDecodePicOrderCnt(pocStorage_t *poc, seqParamSet_t *sps,
H A Dh264bsd_storage.h82 seqParamSet_t *sps[MAX_NUM_SEQ_PARAM_SETS]; member in struct:__anon669
H A Dh264bsd_decoder.c350 oldSPS = pStorage->sps[pStorage->oldSpsId];
546 if (pStorage->sps[i])
548 FREE(pStorage->sps[i]->offsetForRefFrame);
549 FREE(pStorage->sps[i]->vuiParameters);
550 FREE(pStorage->sps[i]);
/frameworks/av/services/audioflinger/
H A DSchedulingPolicyService.cpp37 sp<ISchedulingPolicyService> sps = sSchedulingPolicyService; local
39 if (sps == 0) {
45 sps = interface_cast<ISchedulingPolicyService>(binder);
47 sSchedulingPolicyService = sps;
50 ret = sps->requestPriority(pid, tid, prio, asynchronous);
/frameworks/base/core/java/android/view/inputmethod/
H A DBaseInputConnection.java78 Object[] sps = text.getSpans(0, text.length(), Object.class);
79 if (sps != null) {
80 for (int i=sps.length-1; i>=0; i--) {
81 Object o = sps[i];
95 final Object[] sps = text.getSpans(start, end, Object.class);
96 if (sps != null) {
97 for (int i=sps.length-1; i>=0; i--) {
98 final Object o = sps[i];
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/hotspot2/omadm/
H A DMOManager.java162 List<HomeSP> sps = buildSPs(moTree);
163 if (sps != null) {
164 for (HomeSP sp : sps) {
171 return sps;
322 private static String fqdnList(Collection<HomeSP> sps) { argument
325 for (HomeSP sp : sps) {
/frameworks/av/media/libstagefright/wifi-display/source/
H A DTSPacketizer.cpp266 const sp<ABuffer> &sps = mCSD.itemAt(0); local
267 CHECK(!memcmp("\x00\x00\x00\x01", sps->data(), 4));
268 CHECK_GE(sps->size(), 7u);
270 memcpy(&data[2], sps->data() + 4, 3);

Completed in 175 milliseconds