diff options
author | tfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-10-30 00:46:54 +0000 |
---|---|---|
committer | tfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-10-30 00:46:54 +0000 |
commit | c7526b25874021a49c043e30decf9cefdd5b966a (patch) | |
tree | f910149ba11fbcdf0230b33e19a242d0449a4683 /media/video/mft_h264_decode_engine.cc | |
parent | 382c29360b39b2117a74a10985b01a39ca8d524b (diff) | |
download | chromium_src-c7526b25874021a49c043e30decf9cefdd5b966a.zip chromium_src-c7526b25874021a49c043e30decf9cefdd5b966a.tar.gz chromium_src-c7526b25874021a49c043e30decf9cefdd5b966a.tar.bz2 |
Rename UploadToVideoFrame to ConvertToVideoFrame.
(Note: This was a TODO for hclam).
BUG=None
TEST=trybots
Review URL: http://codereview.chromium.org/4113006
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@64526 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'media/video/mft_h264_decode_engine.cc')
-rw-r--r-- | media/video/mft_h264_decode_engine.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/media/video/mft_h264_decode_engine.cc b/media/video/mft_h264_decode_engine.cc index 9a5bdb0..5166b1f 100644 --- a/media/video/mft_h264_decode_engine.cc +++ b/media/video/mft_h264_decode_engine.cc @@ -650,7 +650,7 @@ bool MftH264DecodeEngine::DoDecode() { // TODO(imcheng): Detect error. output_frames_[0]->SetTimestamp(TimeDelta::FromMicroseconds(timestamp)); output_frames_[0]->SetDuration(TimeDelta::FromMicroseconds(duration)); - context_->UploadToVideoFrame( + context_->ConvertToVideoFrame( surface.get(), output_frames_[0], NewRunnableMethod(this, &MftH264DecodeEngine::OnUploadVideoFrameDone, surface, output_frames_[0])); |