Allow updating track description

This commit is contained in:
Paul-Louis Ageneau
2020-11-02 08:52:04 +01:00
parent 5e876a4686
commit 476528b464
4 changed files with 21 additions and 14 deletions

View File

@ -94,8 +94,7 @@ public:
struct Application : public Entry {
public:
Application(string mid = "data");
Application(const Application &other) = default;
Application(Application &&other) = default;
virtual ~Application() = default;
string description() const override;
Application reciprocate() const;
@ -121,8 +120,6 @@ public:
public:
Media(const string &sdp);
Media(const string &mline, string mid, Direction dir = Direction::SendOnly);
Media(const Media &other) = default;
Media(Media &&other) = default;
virtual ~Media() = default;
string description() const override;