| Index: media/cast/video_receiver/codecs/vp8/vp8_decoder.cc
|
| diff --git a/media/cast/video_receiver/codecs/vp8/vp8_decoder.cc b/media/cast/video_receiver/codecs/vp8/vp8_decoder.cc
|
| index 26113cd3d6947f5185ec8e8af4c7bb540ec8965e..548a8051958ecff5d05acabe45f44e1f14e8232f 100644
|
| --- a/media/cast/video_receiver/codecs/vp8/vp8_decoder.cc
|
| +++ b/media/cast/video_receiver/codecs/vp8/vp8_decoder.cc
|
| @@ -37,7 +37,7 @@ bool Vp8Decoder::Decode(const EncodedVideoFrame& input_image,
|
| vpx_codec_iter_t iter = NULL;
|
| vpx_image_t* img;
|
| if (vpx_codec_decode(decoder_.get(),
|
| - input_image.data.data(),
|
| + reinterpret_cast<const uint8*>(input_image.data.data()),
|
| static_cast<unsigned int>(input_image.data.size()),
|
| 0,
|
| 1 /* real time*/)) {
|
|
|