Index: media/cast/sender/software_video_encoder.h |
diff --git a/media/cast/video_sender/software_video_encoder.h b/media/cast/sender/software_video_encoder.h |
similarity index 78% |
rename from media/cast/video_sender/software_video_encoder.h |
rename to media/cast/sender/software_video_encoder.h |
index f1bf6f6331638024d1c6dde601546221b73456ed..16c8cd347330107adb5c4d1d650497c6f99b9729 100644 |
--- a/media/cast/video_sender/software_video_encoder.h |
+++ b/media/cast/sender/software_video_encoder.h |
@@ -2,8 +2,8 @@ |
// Use of this source code is governed by a BSD-style license that can be |
// found in the LICENSE file. |
-#ifndef MEDIA_CAST_VIDEO_SENDER_SOFTWARE_VIDEO_ENCODER_H_ |
-#define MEDIA_CAST_VIDEO_SENDER_SOFTWARE_VIDEO_ENCODER_H_ |
+#ifndef MEDIA_CAST_SENDER_SOFTWARE_VIDEO_ENCODER_H_ |
+#define MEDIA_CAST_SENDER_SOFTWARE_VIDEO_ENCODER_H_ |
#include "base/basictypes.h" |
#include "base/memory/ref_counted.h" |
@@ -14,9 +14,7 @@ class VideoFrame; |
namespace media { |
namespace cast { |
-namespace transport { |
struct EncodedFrame; |
-} // namespace transport |
class SoftwareVideoEncoder { |
public: |
@@ -28,7 +26,7 @@ class SoftwareVideoEncoder { |
// Encode a raw image (as a part of a video stream). |
virtual bool Encode(const scoped_refptr<media::VideoFrame>& video_frame, |
- transport::EncodedFrame* encoded_image) = 0; |
+ EncodedFrame* encoded_image) = 0; |
// Update the encoder with a new target bit rate. |
virtual void UpdateRates(uint32 new_bitrate) = 0; |
@@ -43,4 +41,4 @@ class SoftwareVideoEncoder { |
} // namespace cast |
} // namespace media |
-#endif // MEDIA_CAST_VIDEO_SENDER_SOFTWARE_VIDEO_ENCODER_H_ |
+#endif // MEDIA_CAST_SENDER_SOFTWARE_VIDEO_ENCODER_H_ |