blob: 6b515270b67aac5ba0f8db8ce10578f679bbb2ca [file] [log] [blame]
// Copyright 2014 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef MEDIA_CAST_SENDER_FAKE_SOFTWARE_VIDEO_ENCODER_H_
#define MEDIA_CAST_SENDER_FAKE_SOFTWARE_VIDEO_ENCODER_H_
#include <stdint.h>
#include "media/cast/cast_config.h"
#include "media/cast/sender/software_video_encoder.h"
#include "ui/gfx/geometry/size.h"
namespace media {
namespace cast {
class FakeSoftwareVideoEncoder final : public SoftwareVideoEncoder {
public:
FakeSoftwareVideoEncoder(const FrameSenderConfig& video_config);
~FakeSoftwareVideoEncoder() final;
// SoftwareVideoEncoder implementations.
void Initialize() final;
void Encode(scoped_refptr<media::VideoFrame> video_frame,
base::TimeTicks reference_time,
SenderEncodedFrame* encoded_frame) final;
void UpdateRates(uint32_t new_bitrate) final;
void GenerateKeyFrame() final;
private:
const FrameSenderConfig video_config_;
gfx::Size last_frame_size_;
bool next_frame_is_key_;
FrameId frame_id_;
int frame_size_;
};
} // namespace cast
} // namespace media
#endif // MEDIA_CAST_SENDER_FAKE_SOFTWARE_VIDEO_ENCODER_H_