| Index: media/cast/receiver/video_decoder.h
|
| diff --git a/media/cast/receiver/video_decoder.h b/media/cast/receiver/video_decoder.h
|
| index 28292f25c87f1e1e54ef82d57d7372d401052da1..f3d8ca202ea635708aceba2e9ac00255b8a60707 100644
|
| --- a/media/cast/receiver/video_decoder.h
|
| +++ b/media/cast/receiver/video_decoder.h
|
| @@ -10,7 +10,7 @@
|
| #include "base/memory/scoped_ptr.h"
|
| #include "media/base/video_frame.h"
|
| #include "media/cast/cast_config.h"
|
| -#include "media/cast/transport/cast_transport_config.h"
|
| +#include "media/cast/net/cast_transport_config.h"
|
|
|
| namespace media {
|
| namespace cast {
|
| @@ -28,7 +28,7 @@ class VideoDecoder {
|
| bool is_continuous)> DecodeFrameCallback;
|
|
|
| VideoDecoder(const scoped_refptr<CastEnvironment>& cast_environment,
|
| - transport::Codec codec);
|
| + Codec codec);
|
| virtual ~VideoDecoder();
|
|
|
| // Returns STATUS_VIDEO_INITIALIZED if the decoder was successfully
|
| @@ -43,7 +43,7 @@ class VideoDecoder {
|
| // monotonically-increasing by 1 for each successive call to this method.
|
| // When it is not, the decoder will assume one or more frames have been
|
| // dropped (e.g., due to packet loss), and will perform recovery actions.
|
| - void DecodeFrame(scoped_ptr<transport::EncodedFrame> encoded_frame,
|
| + void DecodeFrame(scoped_ptr<EncodedFrame> encoded_frame,
|
| const DecodeFrameCallback& callback);
|
|
|
| private:
|
|
|