Searched defs:qp (Results 1 - 25 of 25) sorted by relevance

/external/webrtc/webrtc/modules/video_coding/utility/
H A Dqp_parser.cc18 bool QpParser::GetQp(const VCMEncodedFrame& frame, int* qp) { argument
22 return vp8::GetQp(frame.Buffer(), frame.Length(), qp);
H A Dquality_scaler.cc53 void QualityScaler::ReportQP(int qp) { argument
55 average_qp_.AddSample(qp);
H A Dvp8_header_parser.cc162 bool GetQp(const uint8_t* buf, size_t length, int* qp) { argument
198 *qp = base_q0;
/external/webrtc/webrtc/test/fuzzers/
H A Dvp8_qp_parser_fuzzer.cc14 int qp; local
15 vp8::GetQp(data, size, &qp);
/external/webrtc/webrtc/modules/rtp_rtcp/source/
H A Dh264_bitstream_parser_unittest.cc37 int qp; local
38 EXPECT_FALSE(h264_parser.GetLastSliceQp(&qp));
44 int qp; local
45 EXPECT_FALSE(h264_parser.GetLastSliceQp(&qp));
51 int qp; local
52 ASSERT_TRUE(h264_parser.GetLastSliceQp(&qp));
53 EXPECT_EQ(35, qp);
58 ASSERT_TRUE(h264_parser.GetLastSliceQp(&qp));
59 EXPECT_EQ(37, qp);
/external/google-breakpad/src/third_party/libdisasm/
H A Dx86_imm.c11 qword_t *qp = (qword_t *) dest; local
28 *qp = *((qword_t *) buf);
43 qword_t *qp = (qword_t *) dest; local
60 *qp = *((qword_t *) buf);
/external/webrtc/webrtc/modules/video_coding/codecs/vp8/
H A Dscreenshare_layers.cc149 // Don't reconfigure qp limits during quality boost frames.
153 // After a dropped frame, a frame with max qp will be encoded and the
155 // encode the next frame with lower max qp. TL0 is the most important to
157 // Currently, reduce max qp by 20% for TL0 and 15% for TL1.
171 int qp) {
181 if (qp != -1)
182 layers_[active_layer_].last_qp = qp;
253 // the configuration with the adjusted (lower) qp and set the state back to
263 adjusted_max_qp = max_qp_; // Set the normal max qp.
169 FrameEncoded(unsigned int size, uint32_t timestamp, int qp) argument
H A Dvp8_impl.cc1006 int qp = -1; local
1007 vpx_codec_control(&encoders_[encoder_idx], VP8E_GET_LAST_QUANTIZER_64, &qp);
1010 encoded_images_[encoder_idx]._timeStamp, qp);
1034 int qp; local
1035 vpx_codec_control(&encoders_[0], VP8E_GET_LAST_QUANTIZER_64, &qp);
1036 quality_scaler_.ReportQP(qp);
/external/libhevc/decoder/
H A Dihevcd_cabac.c119 * @param[in] qp
134 WORD32 qp,
141 ASSERT((qp >= 0) && (qp < 52));
143 UNUSED(qp);
161 /* cabac context initialization based on init idc and slice qp */
132 ihevcd_cabac_init(cab_ctxt_t *ps_cabac, bitstrm_t *ps_bitstrm, WORD32 qp, WORD32 cabac_init_idc, const UWORD8 *pu1_init_ctxt) argument
H A Dihevcd_parse_slice.c1858 WORD32 qp; local
1885 qp = (qp_pred + ps_codec->s_parse.s_cu.i4_cu_qp_delta + 52) % 52;
1892 ps_codec->s_parse.ai1_8x8_cu_qp[cur_cu_offset + (i * 8) + j] = qp;
1896 ps_codec->s_parse.u4_qp = qp;
1897 ps_codec->s_parse.s_cu.i4_qp = qp;
/external/libunwind/src/ia64/
H A Dunwind_decoder.h76 * UNW_DEC_RESTORE_P(fmt,qp,t,abreg,arg)
80 * UNW_DEC_SPILL_PSPREL_P(fmt,qp,t,abreg,pspoff,arg)
82 * UNW_DEC_SPILL_REG_P(fmt,qp,t,abreg,x,ytreg,arg)
84 * UNW_DEC_SPILL_SPREL_P(fmt,qp,t,abreg,pspoff,arg)
144 unsigned char byte1, byte2, abreg, qp; local
151 qp = (byte1 & 0x3f);
155 UNW_DEC_SPILL_SPREL_P(X3, qp, t, abreg, off, arg);
157 UNW_DEC_SPILL_PSPREL_P(X3, qp, t, abreg, off, arg);
164 unsigned char byte1, byte2, byte3, qp, abreg, x, ytreg; local
170 qp
[all...]
H A DGparser.c546 desc_is_active (unsigned char qp, unw_word t, struct ia64_state_record *sr) argument
550 if (qp > 0)
552 if ((sr->pr_val & ((unw_word_t) 1 << qp)) == 0)
554 sr->pr_mask |= ((unw_word_t) 1 << qp);
560 desc_restore_p (unsigned char qp, unw_word t, unsigned char abreg, argument
565 if (!desc_is_active (qp, t, sr))
575 desc_spill_reg_p (unsigned char qp, unw_word t, unsigned char abreg, argument
582 if (!desc_is_active (qp, t, sr))
597 desc_spill_psprel_p (unsigned char qp, unw_word t, unsigned char abreg, argument
602 if (!desc_is_active (qp,
612 desc_spill_sprel_p(unsigned char qp, unw_word t, unsigned char abreg, unw_word spoff, struct ia64_state_record *sr) argument
799 int8_t qp; local
[all...]
/external/webrtc/webrtc/video/
H A Dreceive_statistics_proxy.cc59 int qp = qp_counters_.vp8.Avg(kMinRequiredSamples); local
60 if (qp != -1)
61 RTC_HISTOGRAM_COUNTS_SPARSE_200("WebRTC.Video.Decoded.Vp8.Qp", qp);
/external/eigen/Eigen/src/Core/
H A DFunctors.h160 Scalar qp = q/p; local
161 return p * sqrt(Scalar(1) + qp*qp);
H A DMathFunctions.h299 RealScalar qp = q/p; local
300 return p * sqrt(RealScalar(1) + qp*qp);
/external/libunwind/include/
H A Dlibunwind-dynamic.h86 int8_t qp; /* qualifying predicate register */ member in struct:unw_dyn_op
179 #define _U_dyn_op_save_reg(op, qp, when, reg, dst) \
180 (*(op) = _U_dyn_op (UNW_DYN_SAVE_REG, (qp), (when), (reg), (dst)))
182 #define _U_dyn_op_spill_fp_rel(op, qp, when, reg, offset) \
183 (*(op) = _U_dyn_op (UNW_DYN_SPILL_FP_REL, (qp), (when), (reg), \
186 #define _U_dyn_op_spill_sp_rel(op, qp, when, reg, offset) \
187 (*(op) = _U_dyn_op (UNW_DYN_SPILL_SP_REL, (qp), (when), (reg), \
190 #define _U_dyn_op_add(op, qp, when, reg, value) \
191 (*(op) = _U_dyn_op (UNW_DYN_ADD, (qp), (when), (reg), (value)))
193 #define _U_dyn_op_pop_frames(op, qp, whe
[all...]
/external/fio/engines/
H A Drdma.c98 struct ibv_qp *qp; member in struct:rdmaio_data
369 rd->qp = rd->child_cm_id->qp;
375 rd->qp = rd->cm_id->qp;
637 if (ibv_post_send(rd->qp, &r_io_u_d->sq_wr, &bad_wr) != 0) {
664 if (ibv_post_recv(rd->qp, &r_io_u_d->rq_wr, &bad_wr) !=
673 if (ibv_post_recv(rd->qp, &rd->rq_wr, &bad_wr) != 0) {
787 if (ibv_post_send(rd->qp, &rd->sq_wr, &bad_wr) != 0) {
835 if (ibv_post_send(rd->qp,
[all...]
/external/libavc/encoder/
H A Dih264e_utils.c957 * The forward quantization modules depends on qp/6, qp mod 6, forward scale
959 * modules depends on qp/6, qp mod 6, inverse scale matrix, weight list.
965 * @param[in] qp
974 void ih264e_init_quant_params(process_ctxt_t *ps_proc, int qp) argument
998 /* luma qp */
999 u4_qp[Y] = qp;
1001 /* chroma qp
1002 * TODO_LATER : just in case if the chroma planes use different qp'
[all...]
/external/webrtc/webrtc/modules/video_coding/
H A Dvideo_receiver.cc293 int qp = -1; local
294 if (qp_parser_.GetQp(*frame, &qp)) {
295 encoded_image.qp_ = qp;
/external/strace/
H A Dsyscall.c393 qualbits_t *qp; local
395 qp = qual_vec[p] = xreallocarray(qual_vec[p], n,
397 memset(&qp[num_quals], 0, (n - num_quals) * sizeof(qualbits_t));
/external/webrtc/talk/app/webrtc/java/jni/
H A Dandroidmediaencoder_jni.cc968 int qp; local
969 if (webrtc::vp8::GetQp(payload, payload_size, &qp))
970 quality_scaler_.ReportQP(qp);
975 int qp; local
976 if (h264_bitstream_parser_.GetLastSliceQp(&qp))
977 quality_scaler_.ReportQP(qp);
/external/mdnsresponder/mDNSCore/
H A DmDNS.c8544 DNSQuestion **qp = &m->Questions; local
8548 if (question->InterfaceID == mDNSInterface_LocalOnly || question->InterfaceID == mDNSInterface_P2P) qp = &m->LocalOnlyQuestions;
8549 while (*qp && *qp != question) qp=&(*qp)->next;
8550 if (*qp) *qp = (*qp)->next;
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.apache.lucene_1.9.1.v20100518-1140.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/guice/extensions/persist/lib/
H A Dhibernate3.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/hibernate/ org/hibernate/AssertionFailure.class AssertionFailure. ...
/external/libgdx/backends/gdx-backends-gwt/libs/
H A Dgwt-dev.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/gwt/ com/google/gwt/core/ ...

Completed in 642 milliseconds