HomeSort by relevance Sort by last modified time
    Searched refs:ChannelConfig (Results 1 - 15 of 15) sorted by null

  /external/chromium_org/remoting/protocol/
session_config.h 22 struct ChannelConfig {
41 static ChannelConfig None();
44 ChannelConfig();
47 ChannelConfig(TransportType transport, int version, Codec codec);
50 // std::vector<ChannelConfig>.
51 bool operator==(const ChannelConfig& b) const;
64 void set_control_config(const ChannelConfig& control_config) {
67 const ChannelConfig& control_config() const { return control_config_; }
68 void set_event_config(const ChannelConfig& event_config) {
71 const ChannelConfig& event_config() const { return event_config_;
    [all...]
session_config.cc 18 ChannelConfig ChannelConfig::None() {
19 return ChannelConfig();
22 ChannelConfig::ChannelConfig()
28 ChannelConfig::ChannelConfig(TransportType transport, int version, Codec codec)
34 bool ChannelConfig::operator==(const ChannelConfig& b) const {
36 if (transport == ChannelConfig::TRANSPORT_NONE
    [all...]
video_reader.cc 17 const ChannelConfig& video_config = config.video_config();
18 if (video_config.transport == ChannelConfig::TRANSPORT_STREAM) {
19 if (video_config.codec == ChannelConfig::CODEC_VP8) {
22 } else if (video_config.codec == ChannelConfig::CODEC_ZIP) {
25 } else if (video_config.codec == ChannelConfig::CODEC_VERBATIM) {
video_writer.cc 17 const ChannelConfig& video_config = config.video_config();
18 if (video_config.transport == ChannelConfig::TRANSPORT_STREAM) {
content_description.cc 40 const NameMapElement<ChannelConfig::TransportType> kTransports[] = {
41 { ChannelConfig::TRANSPORT_STREAM, "stream" },
42 { ChannelConfig::TRANSPORT_MUX_STREAM, "mux-stream" },
43 { ChannelConfig::TRANSPORT_DATAGRAM, "datagram" },
44 { ChannelConfig::TRANSPORT_NONE, "none" },
47 const NameMapElement<ChannelConfig::Codec> kCodecs[] = {
48 { ChannelConfig::CODEC_VERBATIM, "verbatim" },
49 { ChannelConfig::CODEC_VP8, "vp8" },
50 { ChannelConfig::CODEC_ZIP, "zip" },
51 { ChannelConfig::CODEC_OPUS, "opus" }
    [all...]
channel_dispatcher_base.cc 27 const ChannelConfig& config,
31 case ChannelConfig::TRANSPORT_MUX_STREAM:
35 case ChannelConfig::TRANSPORT_STREAM:
channel_dispatcher_base.h 21 struct ChannelConfig;
40 const ChannelConfig& config,
content_description_unittest.cc 55 ChannelConfig(ChannelConfig::TRANSPORT_STREAM,
57 ChannelConfig::CODEC_UNDEFINED));
77 EXPECT_TRUE(parsed->config()->audio_configs()[0] == ChannelConfig());
97 EXPECT_TRUE(parsed->config()->audio_configs()[0] == ChannelConfig());
content_description.h 58 std::vector<ChannelConfig>* const configs);
  /external/chromium_org/remoting/codec/
audio_decoder.cc 17 const protocol::ChannelConfig& audio_config = config.audio_config();
19 if (audio_config.codec == protocol::ChannelConfig::CODEC_VERBATIM) {
21 } else if (audio_config.codec == protocol::ChannelConfig::CODEC_OPUS) {
23 } else if (audio_config.codec == protocol::ChannelConfig::CODEC_SPEEX) {
  /external/chromium_org/remoting/host/
client_session.cc 418 const protocol::ChannelConfig& video_config = config.video_config();
420 if (video_config.codec == protocol::ChannelConfig::CODEC_VERBATIM) {
422 } else if (video_config.codec == protocol::ChannelConfig::CODEC_VP8) {
433 const protocol::ChannelConfig& audio_config = config.audio_config();
435 if (audio_config.codec == protocol::ChannelConfig::CODEC_VERBATIM) {
437 } else if (audio_config.codec == protocol::ChannelConfig::CODEC_SPEEX) {
439 } else if (audio_config.codec == protocol::ChannelConfig::CODEC_OPUS) {
  /external/chromium_org/remoting/client/
rectangle_update_decoder.cc 22 using remoting::protocol::ChannelConfig;
47 ChannelConfig::Codec codec = config.video_config().codec;
48 if (codec == ChannelConfig::CODEC_VERBATIM) {
50 } else if (codec == ChannelConfig::CODEC_VP8) {
  /external/chromium_org/media/audio/win/
core_audio_util_win.cc 27 typedef uint32 ChannelConfig;
37 static ChannelLayout ChannelConfigToChannelLayout(ChannelConfig config) {
73 static ChannelConfig ChannelLayoutToChannelConfig(ChannelLayout layout) {
465 ChannelConfig new_config = ChannelLayoutToChannelConfig(channel_layout);
535 ChannelConfig channel_config = mix_format.dwChannelMask;
audio_low_latency_output_win.cc 28 typedef uint32 ChannelConfig;
38 static ChannelConfig GetChannelConfig() {
66 static ChannelLayout ChannelConfigToChannelLayout(ChannelConfig config) {
audio_unified_win.cc 54 typedef uint32 ChannelConfig;
64 static ChannelConfig GetChannelConfig(EDataFlow data_flow) {
    [all...]

Completed in 350 milliseconds