| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "media/capture/webm_muxer.h" | 5 #include "media/capture/webm_muxer.h" |
| 6 | 6 |
| 7 #include "base/bind.h" | 7 #include "base/bind.h" |
| 8 #include "media/base/limits.h" | 8 #include "media/base/limits.h" |
| 9 #include "media/base/video_frame.h" | 9 #include "media/base/video_frame.h" |
| 10 | 10 |
| 11 namespace media { | 11 namespace media { |
| 12 | 12 |
| 13 static double GetFrameRate(const scoped_refptr<VideoFrame>& video_frame) { | 13 static double GetFrameRate(const scoped_refptr<VideoFrame>& video_frame) { |
| 14 const double kZeroFrameRate = 0.0; | 14 const double kZeroFrameRate = 0.0; |
| 15 const double kDefaultFrameRate = 30.0; | 15 const double kDefaultFrameRate = 30.0; |
| 16 | 16 |
| 17 double frame_rate = kDefaultFrameRate; | 17 double frame_rate = kDefaultFrameRate; |
| 18 if (!video_frame->metadata()->GetDouble( | 18 if (!video_frame->metadata()->GetDouble( |
| 19 VideoFrameMetadata::FRAME_RATE, &frame_rate) || | 19 VideoFrameMetadata::FRAME_RATE, &frame_rate) || |
| 20 frame_rate <= kZeroFrameRate || | 20 frame_rate <= kZeroFrameRate || |
| 21 frame_rate > media::limits::kMaxFramesPerSecond) { | 21 frame_rate > media::limits::kMaxFramesPerSecond) { |
| 22 frame_rate = kDefaultFrameRate; | 22 frame_rate = kDefaultFrameRate; |
| 23 } | 23 } |
| 24 return frame_rate; | 24 return frame_rate; |
| 25 } | 25 } |
| 26 | 26 |
| 27 WebmMuxer::WebmMuxer(const WriteDataCB& write_data_callback) | 27 //static |
| 28 : track_index_(0), | 28 void WebmMuxer::FinalizeSegment(scoped_ptr<mkvmuxer::Segment> segment) { |
| 29 // No need to segment_->Finalize() since is not Seekable(), i.e. a live |
| 30 // stream, but is a good practice. |
| 31 segment->Finalize(); |
| 32 } |
| 33 |
| 34 WebmMuxer::WebmMuxer( |
| 35 const scoped_refptr<base::SingleThreadTaskRunner> main_task_runner, |
| 36 const WriteDataCB& write_data_callback) |
| 37 : main_task_runner_(main_task_runner), |
| 38 track_index_(0), |
| 29 write_data_callback_(write_data_callback), | 39 write_data_callback_(write_data_callback), |
| 30 position_(0) { | 40 position_(0), |
| 41 segment_(new mkvmuxer::Segment()) { |
| 42 DCHECK(main_task_runner_); |
| 31 DCHECK(!write_data_callback_.is_null()); | 43 DCHECK(!write_data_callback_.is_null()); |
| 32 // Creation is done on a different thread than main activities. | 44 // Creation is done on a different thread than main activities. |
| 33 thread_checker_.DetachFromThread(); | 45 thread_checker_.DetachFromThread(); |
| 34 } | 46 } |
| 35 | 47 |
| 36 WebmMuxer::~WebmMuxer() { | |
| 37 // No need to segment_.Finalize() since is not Seekable(), i.e. a live stream, | |
| 38 // but is good practice. | |
| 39 segment_.Finalize(); | |
| 40 } | |
| 41 | |
| 42 void WebmMuxer::OnEncodedVideo(const scoped_refptr<VideoFrame>& video_frame, | 48 void WebmMuxer::OnEncodedVideo(const scoped_refptr<VideoFrame>& video_frame, |
| 43 const base::StringPiece& encoded_data, | 49 const base::StringPiece& encoded_data, |
| 44 base::TimeTicks timestamp, | 50 base::TimeTicks timestamp, |
| 45 bool is_key_frame) { | 51 bool is_key_frame) { |
| 46 DVLOG(1) << __FUNCTION__ << " - " << encoded_data.size() << "B"; | 52 DVLOG(1) << __FUNCTION__ << " - " << encoded_data.size() << "B"; |
| 47 DCHECK(thread_checker_.CalledOnValidThread()); | 53 DCHECK(thread_checker_.CalledOnValidThread()); |
| 48 if (!track_index_) { | 54 if (!track_index_) { |
| 49 // |track_index_|, cannot be zero (!), initialize WebmMuxer in that case. | 55 // |track_index_|, cannot be zero (!), initialize WebmMuxer in that case. |
| 50 // http://www.matroska.org/technical/specs/index.html#Tracks | 56 // http://www.matroska.org/technical/specs/index.html#Tracks |
| 51 AddVideoTrack(video_frame->visible_rect().size(), | 57 AddVideoTrack(video_frame->visible_rect().size(), |
| 52 GetFrameRate(video_frame)); | 58 GetFrameRate(video_frame)); |
| 53 first_frame_timestamp_ = timestamp; | 59 first_frame_timestamp_ = timestamp; |
| 54 } | 60 } |
| 55 segment_.AddFrame(reinterpret_cast<const uint8_t*>(encoded_data.data()), | 61 segment_->AddFrame(reinterpret_cast<const uint8_t*>(encoded_data.data()), |
| 56 encoded_data.size(), | 62 encoded_data.size(), |
| 57 track_index_, | 63 track_index_, |
| 58 (timestamp - first_frame_timestamp_).InMicroseconds() * | 64 (timestamp - first_frame_timestamp_).InMicroseconds() * |
| 59 base::Time::kNanosecondsPerMicrosecond, | 65 base::Time::kNanosecondsPerMicrosecond, |
| 60 is_key_frame); | 66 is_key_frame); |
| 67 } |
| 68 |
| 69 WebmMuxer::~WebmMuxer() { |
| 70 // Guarantee destruction of |segment_| in the appropriate thread. |
| 71 main_task_runner_->PostTask(FROM_HERE, |
| 72 base::Bind(&WebmMuxer::FinalizeSegment, base::Passed(&segment_))); |
| 61 } | 73 } |
| 62 | 74 |
| 63 void WebmMuxer::AddVideoTrack(const gfx::Size& frame_size, double frame_rate) { | 75 void WebmMuxer::AddVideoTrack(const gfx::Size& frame_size, double frame_rate) { |
| 64 DCHECK(thread_checker_.CalledOnValidThread()); | 76 DCHECK(thread_checker_.CalledOnValidThread()); |
| 65 DCHECK_EQ(track_index_, 0u) << "WebmMuxer can only be initialised once."; | 77 DCHECK_EQ(track_index_, 0u) << "WebmMuxer can only be initialised once."; |
| 66 | 78 |
| 67 segment_.Init(this); | 79 segment_->Init(this); |
| 68 segment_.set_mode(mkvmuxer::Segment::kLive); | 80 segment_->set_mode(mkvmuxer::Segment::kLive); |
| 69 segment_.OutputCues(false); | 81 segment_->OutputCues(false); |
| 70 | 82 |
| 71 mkvmuxer::SegmentInfo* const info = segment_.GetSegmentInfo(); | 83 mkvmuxer::SegmentInfo* const info = segment_->GetSegmentInfo(); |
| 72 info->set_writing_app("Chrome"); | 84 info->set_writing_app("Chrome"); |
| 73 info->set_muxing_app("Chrome"); | 85 info->set_muxing_app("Chrome"); |
| 74 | 86 |
| 75 track_index_ = | 87 track_index_ = |
| 76 segment_.AddVideoTrack(frame_size.width(), frame_size.height(), 0); | 88 segment_->AddVideoTrack(frame_size.width(), frame_size.height(), 0); |
| 77 DCHECK_GT(track_index_, 0u); | 89 DCHECK_GT(track_index_, 0u); |
| 78 | 90 |
| 79 mkvmuxer::VideoTrack* const video_track = | 91 mkvmuxer::VideoTrack* const video_track = |
| 80 reinterpret_cast<mkvmuxer::VideoTrack*>( | 92 reinterpret_cast<mkvmuxer::VideoTrack*>( |
| 81 segment_.GetTrackByNumber(track_index_)); | 93 segment_->GetTrackByNumber(track_index_)); |
| 82 DCHECK(video_track); | 94 DCHECK(video_track); |
| 83 video_track->set_codec_id(mkvmuxer::Tracks::kVp8CodecId); | 95 video_track->set_codec_id(mkvmuxer::Tracks::kVp8CodecId); |
| 84 DCHECK_EQ(video_track->crop_right(), 0ull); | 96 DCHECK_EQ(video_track->crop_right(), 0ull); |
| 85 DCHECK_EQ(video_track->crop_left(), 0ull); | 97 DCHECK_EQ(video_track->crop_left(), 0ull); |
| 86 DCHECK_EQ(video_track->crop_top(), 0ull); | 98 DCHECK_EQ(video_track->crop_top(), 0ull); |
| 87 DCHECK_EQ(video_track->crop_bottom(), 0ull); | 99 DCHECK_EQ(video_track->crop_bottom(), 0ull); |
| 88 | 100 |
| 89 video_track->set_frame_rate(frame_rate); | 101 video_track->set_frame_rate(frame_rate); |
| 90 video_track->set_default_duration(base::Time::kNanosecondsPerSecond / | 102 video_track->set_default_duration(base::Time::kNanosecondsPerSecond / |
| 91 frame_rate); | 103 frame_rate); |
| 92 // Segment's timestamps should be in milliseconds, DCHECK it. See | 104 // Segment's timestamps should be in milliseconds, DCHECK it. See |
| 93 // http://www.webmproject.org/docs/container/#muxer-guidelines | 105 // http://www.webmproject.org/docs/container/#muxer-guidelines |
| 94 DCHECK_EQ(segment_.GetSegmentInfo()->timecode_scale(), 1000000ull); | 106 DCHECK_EQ(segment_->GetSegmentInfo()->timecode_scale(), 1000000ull); |
| 95 } | 107 } |
| 96 | 108 |
| 97 mkvmuxer::int32 WebmMuxer::Write(const void* buf, mkvmuxer::uint32 len) { | 109 mkvmuxer::int32 WebmMuxer::Write(const void* buf, mkvmuxer::uint32 len) { |
| 98 DCHECK(thread_checker_.CalledOnValidThread()); | 110 DCHECK(thread_checker_.CalledOnValidThread()); |
| 99 DCHECK(buf); | 111 DCHECK(buf); |
| 100 write_data_callback_.Run(base::StringPiece(reinterpret_cast<const char*>(buf), | 112 write_data_callback_.Run(base::StringPiece(reinterpret_cast<const char*>(buf), |
| 101 len)); | 113 len)); |
| 102 position_ += len; | 114 position_ += len; |
| 103 return 0; | 115 return 0; |
| 104 } | 116 } |
| (...skipping 12 matching lines...) Expand all Loading... |
| 117 } | 129 } |
| 118 | 130 |
| 119 void WebmMuxer::ElementStartNotify(mkvmuxer::uint64 element_id, | 131 void WebmMuxer::ElementStartNotify(mkvmuxer::uint64 element_id, |
| 120 mkvmuxer::int64 position) { | 132 mkvmuxer::int64 position) { |
| 121 // This method gets pinged before items are sent to |write_data_callback_|. | 133 // This method gets pinged before items are sent to |write_data_callback_|. |
| 122 DCHECK_GE(position, position_.ValueOrDefault(0)) | 134 DCHECK_GE(position, position_.ValueOrDefault(0)) |
| 123 << "Can't go back in a live WebM stream."; | 135 << "Can't go back in a live WebM stream."; |
| 124 } | 136 } |
| 125 | 137 |
| 126 } // namespace media | 138 } // namespace media |
| OLD | NEW |