| OLD | NEW |
| (Empty) | |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #ifndef CONTENT_RENDERER_MEDIA_VIDEO_TRACK_RECORDER_H_ |
| 6 #define CONTENT_RENDERER_MEDIA_VIDEO_TRACK_RECORDER_H_ |
| 7 |
| 8 #include "base/macros.h" |
| 9 #include "base/memory/ref_counted.h" |
| 10 #include "base/strings/string_piece.h" |
| 11 #include "base/threading/thread_checker.h" |
| 12 #include "content/public/renderer/media_stream_video_sink.h" |
| 13 #include "third_party/WebKit/public/platform/WebMediaStreamTrack.h" |
| 14 #include "ui/gfx/geometry/size.h" |
| 15 |
| 16 namespace content { |
| 17 |
| 18 // VideoTrackRecorder is a MediaStreamVideoSink that encodes the video frames |
| 19 // received from a Stream Video Track. The class is constructed and used on a |
| 20 // single thread, namely the main Render thread. |
| 21 class CONTENT_EXPORT VideoTrackRecorder |
| 22 : NON_EXPORTED_BASE(public MediaStreamVideoSink) { |
| 23 public: |
| 24 using OnFirstFrameCB = base::Callback<uint64_t(const gfx::Size& frame_size, |
| 25 double frame_rate)>; |
| 26 |
| 27 using OnEncodedVideoCB = base::Callback<void(uint64_t track_number, |
| 28 const base::StringPiece& data, |
| 29 base::TimeDelta timestamp, |
| 30 bool keyframe)>; |
| 31 |
| 32 VideoTrackRecorder(const blink::WebMediaStreamTrack& track, |
| 33 const OnFirstFrameCB& on_first_frame_cb, |
| 34 const OnEncodedVideoCB& on_encoded_video_cb); |
| 35 ~VideoTrackRecorder() override; |
| 36 |
| 37 private: |
| 38 friend class VideoTrackRecorderTest; |
| 39 |
| 40 void EncodeOnIoForTesting(const scoped_refptr<media::VideoFrame>& frame, |
| 41 const base::TimeTicks& estimated_capture_time); |
| 42 bool IsEncoderConfigurationDoneForTesting() const; |
| 43 |
| 44 base::ThreadChecker main_render_thread_checker_; |
| 45 |
| 46 // We need to hold on to the Blink track to remove ourselves on dtor. |
| 47 const blink::WebMediaStreamTrack track_; |
| 48 |
| 49 // Forward declaration and member of an inner class to encode using VPx. |
| 50 class VpxEncoder; |
| 51 const scoped_refptr<VpxEncoder> encoder_; |
| 52 |
| 53 DISALLOW_COPY_AND_ASSIGN(VideoTrackRecorder); |
| 54 }; |
| 55 |
| 56 } // namespace content |
| 57 #endif // CONTENT_RENDERER_MEDIA_VIDEO_TRACK_RECORDER_H_ |
| OLD | NEW |