Renamed FrameObject to EncodedFrame.
The plan is to: 1. Move FrameObject to api/video. 2. Rename FrameObject to EncodedFrame. 3. Move EncodedFrame out of the video_coding namespace. This is the 2nd CL. Bug: webrtc:8909 Change-Id: I5e76a0a3b306156b8bc1de67834b4adf14bebef9 Reviewed-on: https://webrtc-review.googlesource.com/56182 Commit-Queue: Philip Eliasson <philipel@webrtc.org> Commit-Queue: Tommi <tommi@webrtc.org> Reviewed-by: Niels Moller <nisse@webrtc.org> Reviewed-by: Tommi <tommi@webrtc.org> Cr-Commit-Position: refs/heads/master@{#22158}
This commit is contained in:
@ -26,7 +26,7 @@
|
||||
namespace webrtc {
|
||||
namespace video_coding {
|
||||
|
||||
class FrameObject;
|
||||
class EncodedFrame;
|
||||
class RtpFrameObject;
|
||||
|
||||
// A complete frame is a frame which has received all its packets and all its
|
||||
@ -34,7 +34,7 @@ class RtpFrameObject;
|
||||
class OnCompleteFrameCallback {
|
||||
public:
|
||||
virtual ~OnCompleteFrameCallback() {}
|
||||
virtual void OnCompleteFrame(std::unique_ptr<FrameObject> frame) = 0;
|
||||
virtual void OnCompleteFrame(std::unique_ptr<EncodedFrame> frame) = 0;
|
||||
};
|
||||
|
||||
class RtpFrameReferenceFinder {
|
||||
|
||||
Reference in New Issue
Block a user