Clean up video_coding namespace snipets.

Bug: webrtc:12579
Change-Id: I487fe017f30746e2fe83a122123b236295d96d28
Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/212962
Reviewed-by: Danil Chapovalov <danilchap@webrtc.org>
Reviewed-by: Rasmus Brandt <brandtr@webrtc.org>
Commit-Queue: Philip Eliasson <philipel@webrtc.org>
Cr-Commit-Position: refs/heads/master@{#33558}
This commit is contained in:
philipel
2021-03-25 09:59:20 +01:00
committed by Commit Bot
parent 5d6abbddf4
commit 02b1321b47
3 changed files with 0 additions and 15 deletions

View File

@ -59,11 +59,6 @@ class EncodedFrame : public webrtc::VCMEncodedFrame {
int64_t id_ = -1; int64_t id_ = -1;
}; };
// TODO(bugs.webrtc.org/12579): Remove when downstream has been updated.
namespace video_coding {
using ::webrtc::EncodedFrame;
} // namespace video_coding
} // namespace webrtc } // namespace webrtc
#endif // API_VIDEO_ENCODED_FRAME_H_ #endif // API_VIDEO_ENCODED_FRAME_H_

View File

@ -63,11 +63,6 @@ class RtpFrameObject : public EncodedFrame {
int times_nacked_; int times_nacked_;
}; };
// TODO(bugs.webrtc.org/12579): Remove when downstream has been updated.
namespace video_coding {
using ::webrtc::RtpFrameObject;
} // namespace video_coding
} // namespace webrtc } // namespace webrtc
#endif // MODULES_VIDEO_CODING_FRAME_OBJECT_H_ #endif // MODULES_VIDEO_CODING_FRAME_OBJECT_H_

View File

@ -28,11 +28,6 @@ class OnCompleteFrameCallback {
virtual void OnCompleteFrame(std::unique_ptr<EncodedFrame> frame) = 0; virtual void OnCompleteFrame(std::unique_ptr<EncodedFrame> frame) = 0;
}; };
// TODO(bugs.webrtc.org/12579): Remove when downstream has been update.
namespace video_coding {
using OnCompleteFrameCallback = webrtc::OnCompleteFrameCallback;
} // namespace video_coding
class RtpFrameReferenceFinder { class RtpFrameReferenceFinder {
public: public:
using ReturnVector = absl::InlinedVector<std::unique_ptr<RtpFrameObject>, 3>; using ReturnVector = absl::InlinedVector<std::unique_ptr<RtpFrameObject>, 3>;