HomeSort by relevance Sort by last modified time
    Searched defs:codec_type (Results 1 - 25 of 46) sorted by null

1 2

  /external/webrtc/webrtc/modules/audio_coding/neteq/
decoder_database.h 48 : codec_type(ct),
56 NetEqDecoder codec_type = NetEqDecoder::kDecoderArbitrary; member in struct:webrtc::DecoderDatabase::DecoderInfo
83 // Registers |rtp_payload_type| as a decoder of type |codec_type|. The |name|
88 NetEqDecoder codec_type,
92 // as a decoder of type |codec_type| with |rtp_payload_type|.
94 NetEqDecoder codec_type,
107 // Returns one RTP payload type associated with |codec_type|, or
109 // |codec_type| may be registered with several RTP payload types, and the
111 virtual uint8_t GetRtpPayloadType(NetEqDecoder codec_type) const;
118 // Returns true if |rtp_payload_type| is registered as a |codec_type|
    [all...]
neteq_impl_unittest.cc 242 NetEqDecoder codec_type = NetEqDecoder::kDecoderPCMu; local
245 RegisterPayload(rtp_payload_type, codec_type, kCodecName));
246 neteq_->RegisterPayloadType(codec_type, kCodecName, rtp_payload_type);
304 info.codec_type = NetEqDecoder::kDecoderPCMu;
    [all...]
  /external/webrtc/webrtc/modules/video_coding/test/
rtp_player.h 29 VideoCodecType codec_type)
32 codec_type_(codec_type) {}
36 VideoCodecType codec_type() const { return codec_type_; } function in class:webrtc::rtpplayer::PayloadCodecTuple
  /hardware/qcom/media/msm8974/mm-video-legacy/vidc/vdec/inc/
frameparser.h 36 enum codec_type enum
68 int init_start_codes (codec_type codec_type_parse);
  /hardware/qcom/media/msm8974/mm-video-v4l2/vidc/vdec/inc/
frameparser.h 36 enum codec_type { enum
69 int init_start_codes (codec_type codec_type_parse);
  /hardware/qcom/media/msm8996/mm-video-v4l2/vidc/vdec/inc/
frameparser.h 36 enum codec_type { enum
70 int init_start_codes (codec_type codec_type_parse);
  /hardware/qcom/media/msm8998/mm-video-v4l2/vidc/vdec/inc/
frameparser.h 36 enum codec_type { enum
70 int init_start_codes (codec_type codec_type_parse);
  /cts/hostsidetests/security/securityPatch/Bug-35764875/
poc.c 58 u32 codec_type; member in struct:msm_audio_bitstream_info32
  /hardware/qcom/media/msm8974/mm-video-legacy/vidc/venc/src/
omx_video_encoder.cpp 104 OMX_VIDEO_CODINGTYPE codec_type; local
115 codec_type = OMX_VIDEO_CodingMPEG4;
121 codec_type = OMX_VIDEO_CodingH263;
127 codec_type = OMX_VIDEO_CodingAVC;
133 codec_type = OMX_VIDEO_CodingAVC;
156 if(handle->venc_open(codec_type) != true)
228 if(codec_type == OMX_VIDEO_CodingMPEG4)
233 else if(codec_type == OMX_VIDEO_CodingH263)
238 else if(codec_type == OMX_VIDEO_CodingAVC)
282 if(codec_type == OMX_VIDEO_CodingMPEG4
    [all...]
  /system/bt/bta/ag/
bta_ag_act.cc 829 tBTA_AG_PEER_CODEC codec_type = p_data->api_setcodec.codec; local
833 if ((codec_type != BTA_AG_CODEC_NONE) && (codec_type != BTA_AG_CODEC_CVSD) &&
834 (codec_type != BTA_AG_CODEC_MSBC)) {
835 val.num = codec_type;
838 codec_type);
843 if ((p_scb->peer_codecs & codec_type) || (codec_type == BTA_AG_CODEC_NONE) ||
844 (codec_type == BTA_AG_CODEC_CVSD)) {
845 p_scb->sco_codec = codec_type;
    [all...]
bta_ag_cmd.cc 1228 tBTA_AG_PEER_CODEC codec_type, codec_sent; local
    [all...]
  /system/bt/stack/a2dp/
a2dp_vendor_aptx.cc 123 tA2DP_CODEC_TYPE codec_type; local
132 codec_type = *p_codec_info++;
135 codec_type != A2DP_MEDIA_CT_NON_A2DP) {
a2dp_vendor_ldac.cc 131 tA2DP_CODEC_TYPE codec_type; local
140 codec_type = *p_codec_info++;
143 codec_type != A2DP_MEDIA_CT_NON_A2DP) {
    [all...]
a2dp_aac.cc 143 tA2DP_CODEC_TYPE codec_type; local
152 codec_type = *p_codec_info++;
154 if (media_type != AVDT_MEDIA_TYPE_AUDIO || codec_type != A2DP_MEDIA_CT_AAC) {
    [all...]
a2dp_vendor_aptx_hd.cc 134 tA2DP_CODEC_TYPE codec_type; local
143 codec_type = *p_codec_info++;
146 codec_type != A2DP_MEDIA_CT_NON_A2DP) {
    [all...]
  /system/bt/stack/test/
stack_a2dp_test.cc 337 tA2DP_CODEC_TYPE codec_type = A2DP_GetCodecType(codec_info_sbc); local
338 EXPECT_EQ(codec_type, A2DP_MEDIA_CT_SBC);
340 codec_type = A2DP_GetCodecType(codec_info_aac);
341 EXPECT_EQ(codec_type, A2DP_MEDIA_CT_AAC);
343 codec_type = A2DP_GetCodecType(codec_info_non_a2dp);
344 EXPECT_EQ(codec_type, A2DP_MEDIA_CT_NON_A2DP);
463 for (uint8_t codec_type = A2DP_MEDIA_CT_AAC + 1;
464 codec_type < A2DP_MEDIA_CT_NON_A2DP; codec_type++) {
465 codec_info_test[2] = codec_type; // Unknown codec typ
    [all...]
  /system/extras/sound/
playwav.c 29 uint32_t codec_type; member in struct:msm_audio_config
  /external/webrtc/webrtc/video/
vie_encoder.cc 346 VideoCodecType codec_type; local
355 codec_type = encoder_config_.codecType;
380 if (codec_type == webrtc::kVideoCodecVP8) {
  /hardware/libhardware/include/hardware/
bt_av.h 115 btav_a2dp_codec_index_t codec_type; member in struct:__anon42936
  /hardware/qcom/media/msm8974/mm-video-v4l2/vidc/venc/src/
omx_video_encoder.cpp 126 OMX_VIDEO_CODINGTYPE codec_type; local
137 codec_type = OMX_VIDEO_CodingMPEG4;
141 codec_type = OMX_VIDEO_CodingH263;
145 codec_type = OMX_VIDEO_CodingAVC;
149 codec_type = OMX_VIDEO_CodingAVC;
156 codec_type = OMX_VIDEO_CodingVP8;
162 codec_type = OMX_VIDEO_CodingHEVC;
166 codec_type = OMX_VIDEO_CodingHEVC;
189 if (handle->venc_open(codec_type) != true) {
240 if (codec_type == OMX_VIDEO_CodingAVC
    [all...]
  /hardware/qcom/media/sdm845/mm-video-v4l2/vidc/venc/src/
omx_video_encoder.cpp 114 OMX_VIDEO_CODINGTYPE codec_type; local
124 codec_type = OMX_VIDEO_CodingAVC;
128 codec_type = OMX_VIDEO_CodingAVC;
134 codec_type = OMX_VIDEO_CodingVP8;
139 codec_type = OMX_VIDEO_CodingHEVC;
143 codec_type = OMX_VIDEO_CodingHEVC;
165 if (handle->venc_open(codec_type) != true) {
254 if (codec_type == OMX_VIDEO_CodingAVC) {
257 } else if (codec_type == OMX_VIDEO_CodingVP8) {
260 } else if (codec_type == OMX_VIDEO_CodingHEVC)
    [all...]
  /hardware/qcom/media/msm8996/mm-video-v4l2/vidc/venc/src/
omx_swvenc_hevc.cpp 104 OMX_VIDEO_CODINGTYPE codec_type; local
115 codec_type = (OMX_VIDEO_CODINGTYPE)QOMX_VIDEO_CodingHevc;
201 if (codec_type == OMX_VIDEO_CodingAVC)
267 if (codec_type == (OMX_VIDEO_CODINGTYPE)QOMX_VIDEO_CodingHevc) {
291 if (codec_type == (OMX_VIDEO_CODINGTYPE)QOMX_VIDEO_CodingHevc) {
    [all...]
omx_swvenc_mpeg4.cpp 117 OMX_VIDEO_CODINGTYPE codec_type; local
129 codec_type = OMX_VIDEO_CodingMPEG4;
137 codec_type = OMX_VIDEO_CodingH263;
232 if (codec_type == OMX_VIDEO_CodingMPEG4)
236 } else if (codec_type == OMX_VIDEO_CodingH263)
324 if (codec_type == OMX_VIDEO_CodingMPEG4)
328 else if (codec_type == OMX_VIDEO_CodingH263)
358 if (codec_type == OMX_VIDEO_CodingMPEG4)
361 } else if (codec_type == OMX_VIDEO_CodingH263)
    [all...]
omx_video_encoder.cpp 199 OMX_VIDEO_CODINGTYPE codec_type; local
210 codec_type = OMX_VIDEO_CodingMPEG4;
214 codec_type = OMX_VIDEO_CodingH263;
218 codec_type = OMX_VIDEO_CodingAVC;
222 codec_type = OMX_VIDEO_CodingAVC;
229 codec_type = OMX_VIDEO_CodingVP8;
235 codec_type = OMX_VIDEO_CodingHEVC;
239 codec_type = OMX_VIDEO_CodingHEVC;
261 if (handle->venc_open(codec_type) != true) {
312 if (codec_type == OMX_VIDEO_CodingAVC
    [all...]
  /hardware/qcom/media/msm8998/mm-video-v4l2/vidc/venc/src/
omx_video_encoder.cpp 194 OMX_VIDEO_CODINGTYPE codec_type; local
205 codec_type = OMX_VIDEO_CodingMPEG4;
209 codec_type = OMX_VIDEO_CodingH263;
213 codec_type = OMX_VIDEO_CodingAVC;
217 codec_type = OMX_VIDEO_CodingAVC;
224 codec_type = OMX_VIDEO_CodingVP8;
230 codec_type = OMX_VIDEO_CodingHEVC;
234 codec_type = OMX_VIDEO_CodingHEVC;
256 if (handle->venc_open(codec_type) != true) {
315 if (codec_type == OMX_VIDEO_CodingAVC)
    [all...]

Completed in 802 milliseconds

1 2