Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(160)

Side by Side Diff: content/renderer/media/rtc_video_decoder.cc

Issue 8922010: <video> decode in hardware! (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 9 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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 "content/renderer/media/rtc_video_decoder.h" 5 #include "content/renderer/media/rtc_video_decoder.h"
6 6
7 #include "base/bind.h" 7 #include "base/bind.h"
8 #include "base/callback.h" 8 #include "base/callback.h"
9 #include "base/message_loop.h" 9 #include "base/message_loop.h"
10 #include "base/task.h" 10 #include "base/task.h"
(...skipping 20 matching lines...) Expand all
31 const std::string& url) 31 const std::string& url)
32 : message_loop_(message_loop), 32 : message_loop_(message_loop),
33 visible_size_(176, 144), 33 visible_size_(176, 144),
34 url_(url), 34 url_(url),
35 state_(kUnInitialized) { 35 state_(kUnInitialized) {
36 } 36 }
37 37
38 RTCVideoDecoder::~RTCVideoDecoder() {} 38 RTCVideoDecoder::~RTCVideoDecoder() {}
39 39
40 void RTCVideoDecoder::Initialize(DemuxerStream* demuxer_stream, 40 void RTCVideoDecoder::Initialize(DemuxerStream* demuxer_stream,
41 const base::Closure& filter_callback, 41 const media::PipelineStatusCB& filter_callback,
42 const StatisticsCallback& stat_callback) { 42 const StatisticsCallback& stat_callback) {
43 if (MessageLoop::current() != message_loop_) { 43 if (MessageLoop::current() != message_loop_) {
44 message_loop_->PostTask( 44 message_loop_->PostTask(
45 FROM_HERE, 45 FROM_HERE,
46 base::Bind(&RTCVideoDecoder::Initialize, this, 46 base::Bind(&RTCVideoDecoder::Initialize, this,
47 make_scoped_refptr(demuxer_stream), 47 make_scoped_refptr(demuxer_stream),
48 filter_callback, stat_callback)); 48 filter_callback, stat_callback));
49 return; 49 return;
50 } 50 }
51 51
52 DCHECK_EQ(MessageLoop::current(), message_loop_); 52 DCHECK_EQ(MessageLoop::current(), message_loop_);
53 state_ = kNormal; 53 state_ = kNormal;
54 filter_callback.Run(); 54 filter_callback.Run(PIPELINE_OK);
55 55
56 // TODO(acolwell): Implement stats. 56 // TODO(acolwell): Implement stats.
57 } 57 }
58 58
59 void RTCVideoDecoder::Play(const base::Closure& callback) { 59 void RTCVideoDecoder::Play(const base::Closure& callback) {
60 if (MessageLoop::current() != message_loop_) { 60 if (MessageLoop::current() != message_loop_) {
61 message_loop_->PostTask(FROM_HERE, 61 message_loop_->PostTask(FROM_HERE,
62 base::Bind(&RTCVideoDecoder::Play, 62 base::Bind(&RTCVideoDecoder::Play,
63 this, callback)); 63 this, callback));
64 return; 64 return;
(...skipping 137 matching lines...) Expand 10 before | Expand all | Expand 10 after
202 202
203 int y_rows = frame->GetHeight(); 203 int y_rows = frame->GetHeight();
204 int uv_rows = frame->GetHeight() / 2; // YV12 format. 204 int uv_rows = frame->GetHeight() / 2; // YV12 format.
205 CopyYPlane(frame->GetYPlane(), frame->GetYPitch(), y_rows, video_frame); 205 CopyYPlane(frame->GetYPlane(), frame->GetYPitch(), y_rows, video_frame);
206 CopyUPlane(frame->GetUPlane(), frame->GetUPitch(), uv_rows, video_frame); 206 CopyUPlane(frame->GetUPlane(), frame->GetUPitch(), uv_rows, video_frame);
207 CopyVPlane(frame->GetVPlane(), frame->GetVPitch(), uv_rows, video_frame); 207 CopyVPlane(frame->GetVPlane(), frame->GetVPitch(), uv_rows, video_frame);
208 208
209 read_cb.Run(video_frame); 209 read_cb.Run(video_frame);
210 return true; 210 return true;
211 } 211 }
OLDNEW
« no previous file with comments | « content/renderer/media/rtc_video_decoder.h ('k') | content/renderer/media/rtc_video_decoder_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698