Searched defs:codec_type (Results 1 - 17 of 17) sorted by relevance

/external/bluetooth/bluedroid/bta/include/
H A Dbta_dm_co.h44 tBTA_SCO_CODEC_TYPE codec_type; member in struct:__anon751
H A Dbta_av_co.h71 UINT8 codec_type; /* Codec type */ member in struct:__anon750
132 BTA_API extern UINT8 bta_av_co_audio_getconfig(tBTA_AV_HNDL hndl, tBTA_AV_CODEC codec_type,
148 BTA_API extern UINT8 bta_av_co_video_getconfig(tBTA_AV_HNDL hndl, tBTA_AV_CODEC codec_type,
163 BTA_API extern void bta_av_co_audio_setconfig(tBTA_AV_HNDL hndl, tBTA_AV_CODEC codec_type,
178 BTA_API extern void bta_av_co_video_setconfig(tBTA_AV_HNDL hndl, tBTA_AV_CODEC codec_type,
196 tBTA_AV_CODEC codec_type, UINT8 *p_codec_info,
211 tBTA_AV_CODEC codec_type, UINT8 *p_codec_info,
228 BTA_API extern void bta_av_co_audio_close(tBTA_AV_HNDL hndl, tBTA_AV_CODEC codec_type,
242 BTA_API extern void bta_av_co_video_close(tBTA_AV_HNDL hndl, tBTA_AV_CODEC codec_type,
256 BTA_API extern void bta_av_co_audio_start(tBTA_AV_HNDL hndl, tBTA_AV_CODEC codec_type,
[all...]
/external/chromium_org/third_party/libjingle/source/talk/media/webrtc/
H A Dwebrtcvideocapturer.h84 webrtc::VideoCodecType codec_type) {
82 OnIncomingCapturedEncodedFrame(const int32_t id, webrtc::VideoFrame& frame, webrtc::VideoCodecType codec_type) argument
/external/chromium_org/third_party/webrtc/modules/audio_coding/neteq/
H A Daudio_decoder.cc54 NetEqDecoder AudioDecoder::codec_type() const { return codec_type_; } function in class:webrtc::AudioDecoder
56 bool AudioDecoder::CodecSupported(NetEqDecoder codec_type) { argument
57 switch (codec_type) {
110 int AudioDecoder::CodecSampleRateHz(NetEqDecoder codec_type) { argument
111 switch (codec_type) {
178 AudioDecoder* AudioDecoder::CreateAudioDecoder(NetEqDecoder codec_type) { argument
179 if (!CodecSupported(codec_type)) {
182 switch (codec_type) {
213 return new AudioDecoderPcm16B(codec_type);
219 return new AudioDecoderPcm16BMultiCh(codec_type);
[all...]
H A Ddecoder_database.h43 : codec_type(kDecoderArbitrary),
49 : codec_type(ct),
57 NetEqDecoder codec_type; member in struct:webrtc::DecoderDatabase::DecoderInfo
83 // Registers |rtp_payload_type| as a decoder of type |codec_type|. Returns
86 NetEqDecoder codec_type);
89 // as a decoder of type |codec_type| with |rtp_payload_type|.
91 NetEqDecoder codec_type,
102 // Returns one RTP payload type associated with |codec_type|, or
104 // |codec_type| may be registered with several RTP payload types, and the
106 virtual uint8_t GetRtpPayloadType(NetEqDecoder codec_type) cons
[all...]
H A Ddecoder_database.cc40 NetEqDecoder codec_type) {
44 if (!AudioDecoder::CodecSupported(codec_type)) {
47 int fs_hz = AudioDecoder::CodecSampleRateHz(codec_type);
49 DecoderInfo info(codec_type, fs_hz, NULL, false);
59 NetEqDecoder codec_type,
65 if (!AudioDecoder::CodecSupported(codec_type)) {
76 DecoderInfo info(codec_type, fs_hz, decoder, true);
111 NetEqDecoder codec_type) const {
114 if ((*it).second.codec_type == codec_type) {
39 RegisterPayload(uint8_t rtp_payload_type, NetEqDecoder codec_type) argument
58 InsertExternal(uint8_t rtp_payload_type, NetEqDecoder codec_type, int fs_hz, AudioDecoder* decoder) argument
[all...]
H A Dneteq_impl_unittest.cc237 NetEqDecoder codec_type = kDecoderPCMu; local
239 RegisterPayload(rtp_payload_type, codec_type));
240 neteq_->RegisterPayloadType(codec_type, rtp_payload_type);
297 info.codec_type = kDecoderPCMu;
/external/chromium_org/components/cdm/browser/
H A Dcdm_message_filter_android.cc31 CodecType codec_type; member in struct:cdm::CodecInfo
56 bool is_secure = (info.codec_type == CODEC_VIDEO)
/external/chromium_org/third_party/webrtc/modules/video_coding/main/test/
H A Drtp_player.h28 VideoCodecType codec_type)
31 codec_type_(codec_type) {
36 VideoCodecType codec_type() const { return codec_type_; } function in class:webrtc::rtpplayer::PayloadCodecTuple
27 PayloadCodecTuple(uint8_t payload_type, const std::string& codec_name, VideoCodecType codec_type) argument
/external/bluetooth/bluedroid/bta/ag/
H A Dbta_ag_act.c896 tBTA_AG_PEER_CODEC codec_type = p_data->api_setcodec.codec; local
900 if((codec_type != BTA_AG_CODEC_NONE) &&
901 (codec_type != BTA_AG_CODEC_CVSD) &&
902 (codec_type != BTA_AG_CODEC_MSBC))
904 val.num = codec_type;
906 APPL_TRACE_ERROR("bta_ag_setcodec error: unsupported codec type %d", codec_type);
911 if((p_scb->peer_codecs & codec_type) || (codec_type == BTA_AG_CODEC_NONE) ||
912 (codec_type == BTA_AG_CODEC_CVSD))
914 p_scb->sco_codec = codec_type;
[all...]
H A Dbta_ag_cmd.c864 tBTA_AG_PEER_CODEC codec_type, codec_sent; local
1231 case UUID_CODEC_CVSD: codec_type = BTA_AG_CODEC_CVSD; break;
1232 case UUID_CODEC_MSBC: codec_type = BTA_AG_CODEC_MSBC; break;
1235 codec_type = 0xFFFF;
1244 if(codec_type == codec_sent)
/external/chromium_org/third_party/webrtc/modules/video_coding/main/source/
H A Dcodec_database.cc130 bool VCMCodecDataBase::Codec(VideoCodecType codec_type, argument
137 if (codec_type == settings->codecType) {
/external/bluetooth/bluedroid/bta/av/
H A Dbta_av_main.c531 tBTA_AV_CODEC codec_type; local
651 (*bta_av_a2d_cos.init)(&codec_type, cs.cfg.codec_info,
665 p_scb->seps[index].codec_type = codec_type;
675 APPL_TRACE_DEBUG("audio[%d] av_handle: %d codec_type: %d",
676 index, p_scb->seps[index].av_handle, p_scb->seps[index].codec_type);
H A Dbta_av_int.h164 typedef UINT8 (*tBTA_AV_CO_GETCFG) (tBTA_AV_HNDL hndl, tBTA_AV_CODEC codec_type,
167 typedef void (*tBTA_AV_CO_SETCFG) (tBTA_AV_HNDL hndl, tBTA_AV_CODEC codec_type,
172 tBTA_AV_CODEC codec_type, UINT8 *p_codec_info,
174 typedef void (*tBTA_AV_CO_CLOSE) (tBTA_AV_HNDL hndl, tBTA_AV_CODEC codec_type, UINT16 mtu);
175 typedef void (*tBTA_AV_CO_START) (tBTA_AV_HNDL hndl, tBTA_AV_CODEC codec_type,UINT8 *p_codec_info, BOOLEAN *p_no_rtp_hdr);
176 typedef void (*tBTA_AV_CO_STOP) (tBTA_AV_HNDL hndl, tBTA_AV_CODEC codec_type);
177 typedef void * (*tBTA_AV_CO_DATAPATH) (tBTA_AV_CODEC codec_type,
385 tBTA_AV_CODEC codec_type; /* codec type */ member in struct:__anon454
482 tBTA_AV_CODEC codec_type; /* codec type */ member in struct:__anon458
/external/bluetooth/bluedroid/btif/co/
H A Dbta_av_co.c118 UINT8 codec_type; /* peer SEP codec type */ member in struct:__anon985
172 static BOOLEAN bta_av_co_audio_media_supports_config(UINT8 codec_type, const UINT8 *p_codec_cfg);
173 static BOOLEAN bta_av_co_audio_sink_supports_config(UINT8 codec_type, const UINT8 *p_codec_cfg);
457 UINT8 bta_av_audio_sink_getconfig(tBTA_AV_HNDL hndl, tBTA_AV_CODEC codec_type, argument
472 APPL_TRACE_DEBUG("bta_av_audio_sink_getconfig handle:0x%x codec_type:%d seid:%d",
473 hndl, codec_type, seid);
492 switch (codec_type)
514 p_src->codec_type = codec_type;
593 BTA_API UINT8 bta_av_co_audio_getconfig(tBTA_AV_HNDL hndl, tBTA_AV_CODEC codec_type, argument
752 bta_av_co_audio_setconfig(tBTA_AV_HNDL hndl, tBTA_AV_CODEC codec_type, UINT8 *p_codec_info, UINT8 seid, BD_ADDR addr, UINT8 num_protect, UINT8 *p_protect_info, UINT8 t_local_sep, UINT8 avdt_handle) argument
909 bta_av_co_audio_open(tBTA_AV_HNDL hndl, tBTA_AV_CODEC codec_type, UINT8 *p_codec_info, UINT16 mtu) argument
943 bta_av_co_audio_close(tBTA_AV_HNDL hndl, tBTA_AV_CODEC codec_type, UINT16 mtu) argument
981 bta_av_co_audio_start(tBTA_AV_HNDL hndl, tBTA_AV_CODEC codec_type, UINT8 *p_codec_info, BOOLEAN *p_no_rtp_hdr) argument
1006 bta_av_co_audio_stop(tBTA_AV_HNDL hndl, tBTA_AV_CODEC codec_type) argument
1026 bta_av_co_audio_src_data_path(tBTA_AV_CODEC codec_type, UINT32 *p_len, UINT32 *p_timestamp) argument
1328 UINT8 codec_type; local
1369 UINT8 codec_type; local
1411 bta_av_co_audio_sink_supports_config(UINT8 codec_type, const UINT8 *p_codec_cfg) argument
1442 bta_av_co_audio_media_supports_config(UINT8 codec_type, const UINT8 *p_codec_cfg) argument
[all...]
/external/chromium_org/media/filters/
H A Dffmpeg_demuxer.cc76 switch (stream->codec->codec_type) {
635 AVMediaType codec_type = codec_context->codec_type; local
637 if (codec_type == AVMEDIA_TYPE_AUDIO) {
650 } else if (codec_type == AVMEDIA_TYPE_VIDEO) {
664 } else if (codec_type == AVMEDIA_TYPE_SUBTITLE) {
/external/bluetooth/bluedroid/stack/include/
H A Duipc_msg.h375 tAUDIO_CODEC_TYPE codec_type; member in struct:__anon1639
395 tAUDIO_CODEC_TYPE codec_type; member in struct:__anon1641

Completed in 783 milliseconds