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

  /external/webrtc/talk/app/webrtc/
jsepsessiondescription.cc 28 #include "talk/app/webrtc/jsepsessiondescription.h"
41 JsepSessionDescription::kOffer,
42 JsepSessionDescription::kPrAnswer,
43 JsepSessionDescription::kAnswer
61 const int JsepSessionDescription::kDefaultVideoCodecId = 100;
63 const int JsepSessionDescription::kDefaultVideoCodecFramerate = 60;
64 const char JsepSessionDescription::kDefaultVideoCodecName[] = "VP8";
71 const int JsepSessionDescription::kMaxVideoCodecWidth = 1280;
72 const int JsepSessionDescription::kMaxVideoCodecHeight = 1280;
74 const int JsepSessionDescription::kMaxVideoCodecWidth = 1920
    [all...]
webrtcsdp.h 46 class JsepSessionDescription;
49 // Serializes the passed in JsepSessionDescription.
51 // JsepSessionDescription has candidates.
52 // jdesc - The JsepSessionDescription object to be serialized.
54 std::string SdpSerialize(const JsepSessionDescription& jdesc);
60 // Deserializes the passed in SDP string to a JsepSessionDescription.
62 // jdesc - The JsepSessionDescription deserialized from the SDP string.
66 JsepSessionDescription* jdesc,
jsepsessiondescription.h 46 class JsepSessionDescription : public SessionDescriptionInterface {
48 explicit JsepSessionDescription(const std::string& type);
49 virtual ~JsepSessionDescription();
101 RTC_DISALLOW_COPY_AND_ASSIGN(JsepSessionDescription);
webrtcsdp_unittest.cc 32 #include "talk/app/webrtc/jsepsessiondescription.h"
74 using webrtc::JsepSessionDescription;
457 JsepSessionDescription* jdesc) {
486 JsepSessionDescription desc(kDummyString);
591 JsepSessionDescription::kDefaultVideoCodecName,
592 JsepSessionDescription::kMaxVideoCodecWidth,
593 JsepSessionDescription::kMaxVideoCodecHeight,
594 JsepSessionDescription::kDefaultVideoCodecFramerate,
595 JsepSessionDescription::kDefaultVideoCodecPreference));
701 // Set up JsepSessionDescription
    [all...]
jsepsessiondescription_unittest.cc 31 #include "talk/app/webrtc/jsepsessiondescription.h"
45 using webrtc::JsepSessionDescription;
108 jsep_desc_.reset(new JsepSessionDescription("dummy"));
121 JsepSessionDescription* desc(new JsepSessionDescription("dummy"));
127 rtc::scoped_ptr<JsepSessionDescription> jsep_desc_;
218 // Test that we can serialize a JsepSessionDescription and deserialize it again.
webrtcsession_unittest.cc 35 #include "talk/app/webrtc/jsepsessiondescription.h"
90 using webrtc::JsepSessionDescription;
738 JsepSessionDescription* offer(
753 scoped_ptr<JsepSessionDescription> offer(
    [all...]
webrtcsessiondescriptionfactory.cc 34 #include "talk/app/webrtc/jsepsessiondescription.h"
304 JsepSessionDescription::kOffer) {
385 JsepSessionDescription* offer(new JsepSessionDescription(
386 JsepSessionDescription::kOffer));
447 JsepSessionDescription* answer(new JsepSessionDescription(
448 JsepSessionDescription::kAnswer));
peerconnectioninterface_unittest.cc 32 #include "talk/app/webrtc/jsepsessiondescription.h"
832 webrtc::JsepSessionDescription* answer = new webrtc::JsepSessionDescription(
840 webrtc::JsepSessionDescription* pr_answer =
841 new webrtc::JsepSessionDescription(
846 webrtc::JsepSessionDescription* answer =
847 new webrtc::JsepSessionDescription(
    [all...]
webrtcsdp.cc 38 #include "talk/app/webrtc/jsepsessiondescription.h"
795 std::string SdpSerialize(const JsepSessionDescription& jdesc) {
    [all...]

Completed in 1087 milliseconds