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

1 2

  /system/bt/stack/a2dp/
a2dp_vendor.cc 33 uint16_t codec_id = A2DP_VendorCodecGetCodecId(p_codec_info); local
37 codec_id == A2DP_APTX_CODEC_ID_BLUETOOTH) {
43 codec_id == A2DP_APTX_HD_CODEC_ID_BLUETOOTH) {
48 if (vendor_id == A2DP_LDAC_VENDOR_ID && codec_id == A2DP_LDAC_CODEC_ID) {
52 // Add checks based on <vendor_id, codec_id>
59 // uint16_t codec_id = A2DP_VendorCodecGetCodecId(p_codec_info);
61 // Add checks based on <vendor_id, codec_id>
70 // uint16_t codec_id = A2DP_VendorCodecGetCodecId(p_codec_info);
72 // Add checks based on <vendor_id, codec_id>
80 uint16_t codec_id = A2DP_VendorCodecGetCodecId(p_codec_info) local
149 uint16_t codec_id = (p[0] & 0x00ff) | ((p[1] << 8) & 0xff00); local
157 uint16_t codec_id = A2DP_VendorCodecGetCodecId(p_codec_info); local
186 uint16_t codec_id = A2DP_VendorCodecGetCodecId(p_codec_info); local
292 uint16_t codec_id = A2DP_VendorCodecGetCodecId(p_codec_info); local
318 uint16_t codec_id = A2DP_VendorCodecGetCodecId(p_codec_info); local
344 uint16_t codec_id = A2DP_VendorCodecGetCodecId(p_codec_info); local
395 uint16_t codec_id = A2DP_VendorCodecGetCodecId(p_codec_info); local
423 uint16_t codec_id = A2DP_VendorCodecGetCodecId(p_codec_info); local
453 uint16_t codec_id = A2DP_VendorCodecGetCodecId(p_codec_info); local
479 uint16_t codec_id = A2DP_VendorCodecGetCodecId(p_codec_info); local
506 uint16_t codec_id = A2DP_VendorCodecGetCodecId(p_codec_info); local
    [all...]
  /external/webrtc/webrtc/modules/audio_coding/acm2/
acm_codec_database.cc 225 int codec_id = CodecId(codec_inst); local
228 if (codec_id == -1) {
238 if (STR_CASE_CMP(database_[codec_id].plname, "CN") == 0) {
239 return codec_id;
243 if (STR_CASE_CMP(database_[codec_id].plname, "red") == 0) {
244 return codec_id;
248 if (codec_settings_[codec_id].num_packet_sizes > 0) {
252 for (i = 0; i < codec_settings_[codec_id].num_packet_sizes; i++) {
254 codec_settings_[codec_id].packet_sizes_samples[i];
273 return IsISACRateValid(codec_inst.rate) ? codec_id : kInvalidRate
    [all...]
audio_coding_module.cc 46 auto codec_id = acm2::RentACodec::CodecIdFromIndex(list_id); local
47 if (!codec_id)
49 auto ci = acm2::RentACodec::CodecInstById(*codec_id);
rent_a_codec.h 149 static inline rtc::Optional<int> CodecIndexFromId(CodecId codec_id) {
150 const int i = static_cast<int>(codec_id);
166 static rtc::Optional<CodecInst> CodecInstById(CodecId codec_id);
179 static rtc::Optional<bool> IsSupportedNumChannels(CodecId codec_id,
183 CodecId codec_id,
rent_a_codec.cc 53 rtc::Optional<CodecInst> RentACodec::CodecInstById(CodecId codec_id) {
54 rtc::Optional<int> mi = CodecIndexFromId(codec_id);
67 rtc::Optional<CodecId> codec_id = local
69 if (!codec_id)
71 rtc::Optional<CodecInst> ci = CodecInstById(*codec_id);
85 rtc::Optional<bool> RentACodec::IsSupportedNumChannels(CodecId codec_id,
87 auto i = CodecIndexFromId(codec_id);
100 CodecId codec_id,
102 rtc::Optional<int> i = CodecIndexFromId(codec_id);
acm_receiver_unittest_oldapi.cc 39 explicit CodecIdInst(RentACodec::CodecId codec_id) {
40 const auto codec_ix = RentACodec::CodecIndexFromId(codec_id);
43 const auto codec_inst = RentACodec::CodecInstById(codec_id);
88 void InsertOnePacketOfSilence(int codec_id) {
90 *RentACodec::CodecInstById(*RentACodec::CodecIdFromIndex(codec_id));
281 for (const auto codec_id : kCodecId) {
282 const CodecIdInst codec(codec_id);
codec_manager.cc 77 int codec_id = IsValidSendCodec(send_codec); local
80 if (codec_id < 0) {
audio_coding_module_impl.cc 597 auto codec_id = local
599 if (!codec_id) {
603 auto codec_index = RentACodec::CodecIndexFromId(*codec_id);
604 RTC_CHECK(codec_index) << "Invalid codec ID: " << static_cast<int>(*codec_id);
acm_receiver.cc 111 bool IsCng(int codec_id) {
112 auto i = RentACodec::CodecIdFromIndex(codec_id);
  /external/libvpx/libvpx/
webmenc.cc 48 const char *codec_id; local
50 case VP8_FOURCC: codec_id = "V_VP8"; break;
52 default: codec_id = "V_VP9"; break;
54 video_track->set_codec_id(codec_id);
  /external/webrtc/webrtc/modules/audio_coding/test/
PacketLossTest.cc 131 int codec_id = acm->Codec("opus", 48000, channels_);
142 sender_->codeId = codec_id;
157 receiver_->codeId = codec_id;
opus_test.cc 94 int codec_id = acm_receiver_->Codec("opus", 48000, 2);
95 EXPECT_EQ(0, acm_receiver_->Codec(codec_id, &opus_codec_param));
  /external/libvncserver/client_examples/
vnc2mpg.c 48 AVStream *add_video_stream(AVFormatContext *oc, int codec_id, int w, int h)
64 c->codec_id = codec_id;
82 if (c->codec_id == CODEC_ID_MPEG2VIDEO) {
86 if (c->codec_id == CODEC_ID_MPEG1VIDEO){
131 codec = avcodec_find_encoder(c->codec_id);
  /hardware/qcom/msm8960/kernel-headers/linux/mfd/
msm-adie-codec.h 79 int codec_id; member in struct:adie_codec_operations
  /hardware/qcom/msm8994/kernel-headers/linux/mfd/
msm-adie-codec.h 79 int codec_id; member in struct:adie_codec_operations
  /hardware/qcom/msm8996/kernel-headers/linux/mfd/
msm-adie-codec.h 79 int codec_id; member in struct:adie_codec_operations
  /hardware/qcom/msm8x09/kernel-headers/linux/mfd/
msm-adie-codec.h 79 int codec_id; member in struct:adie_codec_operations
  /hardware/qcom/msm8x26/kernel-headers/linux/mfd/
msm-adie-codec.h 79 int codec_id; member in struct:adie_codec_operations
  /hardware/qcom/msm8x84/kernel-headers/linux/mfd/
msm-adie-codec.h 79 int codec_id; member in struct:adie_codec_operations
  /hardware/qcom/msm8960/original-kernel-headers/linux/mfd/
msm-adie-codec.h 100 int codec_id; member in struct:adie_codec_operations
  /hardware/qcom/msm8994/original-kernel-headers/linux/mfd/
msm-adie-codec.h 100 int codec_id; member in struct:adie_codec_operations
  /hardware/qcom/msm8996/original-kernel-headers/linux/mfd/
msm-adie-codec.h 100 int codec_id; member in struct:adie_codec_operations
  /hardware/qcom/msm8x09/original-kernel-headers/linux/mfd/
msm-adie-codec.h 100 int codec_id; member in struct:adie_codec_operations
  /hardware/qcom/msm8x26/original-kernel-headers/linux/mfd/
msm-adie-codec.h 100 int codec_id; member in struct:adie_codec_operations
  /hardware/qcom/msm8x84/original-kernel-headers/linux/mfd/
msm-adie-codec.h 100 int codec_id; member in struct:adie_codec_operations

Completed in 1107 milliseconds

1 2