Index: media/cast/video_receiver/codecs/vp8/vp8_decoder.h |
diff --git a/media/cast/video_receiver/codecs/vp8/vp8_decoder.h b/media/cast/video_receiver/codecs/vp8/vp8_decoder.h |
index 511ad37ec961ae9e80a19d33c63b3726dd906b96..1b28d3a47a078040be09a2e3695a34d08f76af0b 100644 |
--- a/media/cast/video_receiver/codecs/vp8/vp8_decoder.h |
+++ b/media/cast/video_receiver/codecs/vp8/vp8_decoder.h |
@@ -37,6 +37,10 @@ class Vp8Decoder : public base::NonThreadSafe { |
// Initialize the decoder. |
void InitDecode(int number_of_cores); |
+ // Helper method used to copy data from a libvpx image format to a VideoFrame. |
+ void CopyPlane(size_t plane, const uint8* source, int stride, int rows, |
+ VideoFrame* frame); |
+ |
scoped_ptr<vpx_dec_ctx_t> decoder_; |
scoped_refptr<CastEnvironment> cast_environment_; |
}; |