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

  /frameworks/base/media/libstagefright/codecs/on2/h264dec/source/
h264bsd_pic_order_cnt.c 56 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,
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->maxFrameNum
    [all...]
h264bsd_storage.c 65 static u32 CheckPps(picParamSet_t *pps, seqParamSet_t *sps);
108 Store sequence parameter set into the storage. If active SPS is
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)
636 seqParamSet_t *sps; local
    [all...]
h264bsd_pic_order_cnt.h 64 i32 h264bsdDecodePicOrderCnt(pocStorage_t *poc, seqParamSet_t *sps,
h264bsd_storage.h 82 seqParamSet_t *sps[MAX_NUM_SEQ_PARAM_SETS]; member in struct:__anon15394
h264bsd_decoder.c 204 /* Discard unspecified, reserved, SPS extension and auxiliary picture slices */
207 DEBUG(("DISCARDED NAL (UNSPECIFIED, REGISTERED, SPS ext or AUX slice)\n"));
350 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]);
722 Check if any valid parameter set combinations (SPS/PPS) exists.
728 1 at least one valid SPS/PPS combination found
822 Get cropping parameters of the active SPS
    [all...]
  /external/valgrind/main/coregrind/
pub_core_stacktrace.h 49 // ips[0 .. min(n_ips,return_value)]. If sps and fps are non-NULL,
55 /*OUT*/Addr* sps, /*OUT*/Addr* fps,
m_stacktrace.c 70 /*OUT*/Addr* sps, /*OUT*/Addr* fps,
114 if (sps) sps[0] = uregs.xsp;
123 if (sps) sps[0] = uregs.xsp;
173 if (sps) sps[i] = uregs.xsp;
187 if (sps) sps[i] = uregs.xsp;
201 if (sps) sps[i] = uregs.xsp
    [all...]
  /external/blktrace/btt/
seek.c 39 struct sps_bkt sps; member in struct:seeki
103 struct sps_bkt *sps = &sip->sps; local
104 double delta = sps->t_last - sps->t_start;
106 if ((sps->nseeks == 1) || (delta < DBL_EPSILON)) {
107 s_p_s = (double)(sps->nseeks);
108 tstamp = sps->t_start;
111 s_p_s = (double)(sps->nseeks) / delta;
112 tstamp = sps->t_start + (delta / 2)
124 struct sps_bkt *sps = &sip->sps; local
    [all...]
  /external/valgrind/main/include/
pub_tool_stacktrace.h 56 // If sps and fps are non-NULL, the corresponding frame-pointer and
61 /*OUT*/StackTrace sps,
  /hardware/ti/omap3/omx/ti_omx_config_parser/src/
ti_m4v_config_parser.cpp 804 uint8* sps = NULL; local
811 sps = temp; // Make a copy of the original pointer to be freed later
813 oscl_memcpy(sps, buffer, length);
829 if (sps[0] == 0 && sps[1] == 0)
832 while (sps[i++] == 0 && i < length)
836 if (sps[i-1] == 1)
838 sps += i;
842 while (!(sps[sps_length] == 0 && sps[sps_length+1] == 0 && sps[sps_length+2] == 1) &
    [all...]
  /frameworks/base/core/java/android/view/inputmethod/
BaseInputConnection.java 78 Object[] sps = text.getSpans(0, text.length(), Object.class); local
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); local
96 if (sps != null) {
97 for (int i=sps.length-1; i>=0; i--) {
98 final Object o = sps[i];
  /frameworks/media/libvideoeditor/vss/mcs/src/
M4MCS_API.c 855 /*SPS Packet */
856 M4OSA_TRACE1_0("Error : SPS");
1028 ComSequenceParameterSet_t_MCS *sps )
1039 sps->profile_idc = (M4OSA_UInt8)H264MCS_getBits(p_bs, 8);
1040 sps->constraint_set0_flag = (M4OSA_Bool)H264MCS_getBits(p_bs, 1);
1041 sps->constraint_set1_flag = (M4OSA_Bool)H264MCS_getBits(p_bs, 1);
1042 sps->constraint_set2_flag = (M4OSA_Bool)H264MCS_getBits(p_bs, 1);
1043 sps->constraint_set3_flag = (M4OSA_Bool)H264MCS_getBits(p_bs, 1);
1045 sps->level_idc = (M4OSA_UInt8)H264MCS_getBits(p_bs, 8);
1046 sps->seq_parameter_set_id
    [all...]
  /hardware/ti/omap3/omx/video/src/openmax_il/video_encode/src/
OMX_VideoEnc_Utils.c     [all...]
OMX_VideoEncoder.c 387 pComponentPrivate->sps = NULL;
    [all...]
  /hardware/ti/omap3/omx/video/src/openmax_il/video_encode/inc/
OMX_VideoEnc_Utils.h 617 unsigned char *sps; member in struct:VIDENC_COMPONENT_PRIVATE
  /external/blktrace/btt/doc/
btt.tex 764 \newpage\subsection{\label{sec:sps-spec}Seeks Per Second}
789 Figure~\ref{fig:sps} shows a simple pair of graphs generated from
794 \epsfig{file=sps.eps,width=4.5in}
795 \caption{\label{fig:sps}Seeks-per-second Chart}
    [all...]
  /external/valgrind/main/coregrind/m_debuginfo/
debuginfo.c 3070 Addr ips[N_FRAMES], sps[N_FRAMES], fps[N_FRAMES]; local
    [all...]

Completed in 806 milliseconds