Revert "Changed argument occurences of const I420VideoFrame* to const I420VideoFrame& and non-const I420VideoFrame& to I420VideoFrame*."
This reverts commit r8731. Reason for revert: Breakes Chromium FYI bots. TBR=hbos, tommi Review URL: https://webrtc-codereview.appspot.com/40359004 Cr-Commit-Position: refs/heads/master@{#8733} git-svn-id: http://webrtc.googlecode.com/svn/trunk@8733 4adac7df-926f-26a2-2b94-8c16560cd09d
This commit is contained in:
@ -188,8 +188,9 @@ int32_t VideoRenderExternalImpl::SetBitmap(const void* bitMap,
|
||||
}
|
||||
|
||||
// VideoRenderCallback
|
||||
int32_t VideoRenderExternalImpl::RenderFrame(const uint32_t streamId,
|
||||
I420VideoFrame* videoFrame)
|
||||
int32_t VideoRenderExternalImpl::RenderFrame(
|
||||
const uint32_t streamId,
|
||||
I420VideoFrame& videoFrame)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
@ -115,7 +115,7 @@ public:
|
||||
|
||||
// VideoRenderCallback
|
||||
virtual int32_t RenderFrame(const uint32_t streamId,
|
||||
I420VideoFrame* videoFrame);
|
||||
I420VideoFrame& videoFrame);
|
||||
|
||||
private:
|
||||
CriticalSectionWrapper& _critSect;
|
||||
|
||||
Reference in New Issue
Block a user