HomeSort by relevance Sort by last modified time
    Searched refs:pps (Results 1 - 25 of 68) sorted by null

1 2 3

  /frameworks/av/media/libstagefright/codecs/on2/h264dec/source/
h264bsd_slice_group_map.h 54 picParamSet_t *pps,
h264bsd_storage.c 65 static u32 CheckPps(picParamSet_t *pps, seqParamSet_t *sps);
192 Store picture parameter set into the storage. If active PPS is
226 if (pStorage->pps[id] == NULL)
228 ALLOCATE(pStorage->pps[id], 1, picParamSet_t);
229 if (pStorage->pps[id] == NULL)
232 /* picture parameter set with id equal to id of active pps */
243 FREE(pStorage->pps[id]->runLength);
244 FREE(pStorage->pps[id]->topLeft);
245 FREE(pStorage->pps[id]->bottomRight);
246 FREE(pStorage->pps[id]->sliceGroupId)
637 picParamSet_t *pps; local
    [all...]
h264bsd_slice_group_map.c 490 pps active picture parameter set
505 picParamSet_t *pps,
518 ASSERT(pps);
521 ASSERT(pps->sliceGroupMapType < 7);
526 if (pps->numSliceGroups == 1)
532 if (pps->sliceGroupMapType > 2 && pps->sliceGroupMapType < 6)
534 ASSERT(pps->sliceGroupChangeRate &&
535 pps->sliceGroupChangeRate <= picSize);
538 MIN(sliceGroupChangeCycle * pps->sliceGroupChangeRate, picSize)
    [all...]
h264bsd_decoder.c 556 if (pStorage->pps[i])
558 FREE(pStorage->pps[i]->runLength);
559 FREE(pStorage->pps[i]->topLeft);
560 FREE(pStorage->pps[i]->bottomRight);
561 FREE(pStorage->pps[i]->sliceGroupId);
562 FREE(pStorage->pps[i]);
722 Check if any valid parameter set combinations (SPS/PPS) exists.
728 1 at least one valid SPS/PPS combination found
h264bsd_storage.h 83 picParamSet_t *pps[MAX_NUM_PIC_PARAM_SETS]; member in struct:__anon19559
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/h264/model/
PictureParameterSet.java 88 PictureParameterSet pps = new PictureParameterSet(); local
90 pps.pic_parameter_set_id = reader.readUE("PPS: pic_parameter_set_id");
91 pps.seq_parameter_set_id = reader.readUE("PPS: seq_parameter_set_id");
92 pps.entropy_coding_mode_flag = reader
93 .readBool("PPS: entropy_coding_mode_flag");
94 pps.pic_order_present_flag = reader
95 .readBool("PPS: pic_order_present_flag");
96 pps.num_slice_groups_minus1 = reade
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/parser/ims/
PPreferredServiceParser.java 52 public PPreferredServiceParser(String pps)
54 super(pps);
104 PPreferredService pps = new PPreferredService(); local
120 pps.setSubserviceIdentifiers(serviceID);
132 pps.setApplicationIdentifiers(appID);
146 return pps;
PAssertedServiceParser.java 66 PAssertedService pps = new PAssertedService(); local
82 pps.setSubserviceIdentifiers(urn.split(ParameterNamesIms.SERVICE_ID_LABEL)[1]);
94 pps.setApplicationIdentifiers(urn.split(ParameterNamesIms.APPLICATION_ID_LABEL)[1]);
108 return pps;
  /frameworks/av/media/libstagefright/codecs/avc/common/src/
fmo.cpp 97 void FmoGenerateType2MapUnitMap(AVCPicParamSet *pps, int *mapUnitToSliceGroupMap, int PicWidthInMbs,
111 yTopLeft = pps->top_left[ iGroup ] / PicWidthInMbs;
112 xTopLeft = pps->top_left[ iGroup ] % PicWidthInMbs;
113 yBottomRight = pps->bottom_right[ iGroup ] / PicWidthInMbs;
114 xBottomRight = pps->bottom_right[ iGroup ] % PicWidthInMbs;
128 void FmoGenerateType3MapUnitMap(AVCCommonObj *video, AVCPicParamSet* pps, int *mapUnitToSliceGroupMap,
143 x = (PicWidthInMbs - pps->slice_group_change_direction_flag) / 2;
144 y = (video->PicHeightInMapUnits - pps->slice_group_change_direction_flag) / 2;
151 xDir = pps->slice_group_change_direction_flag - 1;
152 yDir = pps->slice_group_change_direction_flag
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/
gen_stats.h 30 * @pps: current packet rate
35 __u32 pps; member in struct:gnet_stats_rate_est
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/
gen_stats.h 30 * @pps: current packet rate
35 __u32 pps; member in struct:gnet_stats_rate_est
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/linux/
gen_stats.h 30 * @pps: current packet rate
35 __u32 pps; member in struct:gnet_stats_rate_est
  /external/iproute2/include/linux/
gen_stats.h 33 * @pps: current packet rate
37 __u32 pps; member in struct:gnet_stats_rate_est
pkt_sched.h 39 __u32 pps; /* Current flow packet rate */ member in struct:tc_stats
  /external/clang/test/SemaCXX/
warn-unused-result.cpp 67 Status **pps = DoYetAnotherThing();
68 if (!(*pps)->ok()) return;
  /external/jmonkeyengine/engine/src/test/jme3test/network/
TestThroughput.java 74 double pps = counter / scale; local
75 System.out.println("messages per second:" + pps + " total messages:" + total);
  /external/clang/test/Analysis/
malloc-annotations.c 83 void af1_g(struct stuff **pps) {
84 *pps = my_malloc(sizeof(struct stuff)); // no-warning
85 (*pps)->somefield = my_malloc(42); // no-warning
  /external/wpa_supplicant_8/src/ap/
wmm.c 166 int medium_time, pps, duration; local
192 /* pps = Ceiling((Mean Data Rate / 8) / Nominal MSDU Size) */
193 pps = ((le_to_host32(tspec->mean_data_rate) / 8) + val - 1) / val;
195 pps);
215 medium_time = surplus * pps * duration / 0x2000;
  /external/iproute2/tc/
tc_util.c 519 prefix, sprint_rate(re.bps, b1), re.pps);
557 if (st.bps || st.pps || st.qlen || st.backlog) {
559 if (st.bps || st.pps) {
563 if (st.pps)
564 fprintf(fp, "%upps ", st.pps);
  /frameworks/base/core/java/android/content/
ContentProvider.java 344 final PathPermission[] pps = getPathPermissions(); local
345 if (pps != null) {
347 for (PathPermission pp : pps) {
413 final PathPermission[] pps = getPathPermissions(); local
414 if (pps != null) {
416 for (PathPermission pp : pps) {
    [all...]
  /frameworks/av/media/libstagefright/codecs/avc/common/include/
avclib_common.h 251 \param "pps" "Pointer to AVCPicParamSets structure."
258 void FmoGenerateType2MapUnitMap(AVCPicParamSet *pps, int *mapUnitToSliceGroupMap, int PicWidthInMbs,
264 \param "pps" "Pointer to AVCPicParamSets structure."
269 void FmoGenerateType3MapUnitMap(AVCCommonObj *video, AVCPicParamSet* pps, int *mapUnitToSliceGroupMap,
  /hardware/ti/omap3/omx/ti_omx_config_parser/src/
ti_m4v_config_parser.cpp 806 uint8* pps = NULL; local
855 pps = sps + sps_length + 3;
867 pps = sps + sps_length;
868 pps_length = (uint16)(pps[1] << 8) | pps[0];
869 pps += 2;
895 // now do PPS
898 Parser_EBSPtoRBSP(pps, &size);
899 psBits.data = pps;
    [all...]
  /frameworks/av/libvideoeditor/vss/mcs/src/
M4MCS_API.c 849 M4OSA_TRACE1_0("Error : PPS");
    [all...]
  /bionic/libc/kernel/common/linux/
pkt_sched.h 40 __u32 pps; member in struct:tc_stats
  /development/ndk/platforms/android-3/include/linux/
pkt_sched.h 31 __u32 pps; member in struct:tc_stats

Completed in 2229 milliseconds

1 2 3