aboutsummaryrefslogtreecommitdiff
path: root/media/base/codec.h
diff options
context:
space:
mode:
Diffstat (limited to 'media/base/codec.h')
-rw-r--r--media/base/codec.h17
1 files changed, 0 insertions, 17 deletions
diff --git a/media/base/codec.h b/media/base/codec.h
index c3be2334ce..c7c99bf732 100644
--- a/media/base/codec.h
+++ b/media/base/codec.h
@@ -202,23 +202,6 @@ struct RTC_EXPORT VideoCodec : public Codec {
void SetDefaultParameters();
};
-struct RtpDataCodec : public Codec {
- RtpDataCodec(int id, const std::string& name);
- RtpDataCodec();
- RtpDataCodec(const RtpDataCodec& c);
- RtpDataCodec(RtpDataCodec&& c);
- ~RtpDataCodec() override = default;
-
- RtpDataCodec& operator=(const RtpDataCodec& c);
- RtpDataCodec& operator=(RtpDataCodec&& c);
-
- std::string ToString() const;
-};
-
-// For backwards compatibility
-// TODO(bugs.webrtc.org/10597): Remove when no longer needed.
-typedef RtpDataCodec DataCodec;
-
// Get the codec setting associated with |payload_type|. If there
// is no codec associated with that payload type it returns nullptr.
template <class Codec>