diff options
Diffstat (limited to 'media/cdm/ppapi/ffmpeg_cdm_video_decoder.cc')
-rw-r--r-- | media/cdm/ppapi/ffmpeg_cdm_video_decoder.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/media/cdm/ppapi/ffmpeg_cdm_video_decoder.cc b/media/cdm/ppapi/ffmpeg_cdm_video_decoder.cc index 515db04..66c5fb0 100644 --- a/media/cdm/ppapi/ffmpeg_cdm_video_decoder.cc +++ b/media/cdm/ppapi/ffmpeg_cdm_video_decoder.cc @@ -128,7 +128,7 @@ static void CopyPlane(const uint8_t* source, } } -FFmpegCdmVideoDecoder::FFmpegCdmVideoDecoder(cdm::Host* host) +FFmpegCdmVideoDecoder::FFmpegCdmVideoDecoder(CdmHost* host) : is_initialized_(false), host_(host) { } @@ -275,7 +275,7 @@ bool FFmpegCdmVideoDecoder::CopyAvFrameTo(cdm::VideoFrame* cdm_video_frame) { DCHECK(!cdm_video_frame->FrameBuffer()); cdm_video_frame->SetFrameBuffer(host_->Allocate(space_required)); if (!cdm_video_frame->FrameBuffer()) { - LOG(ERROR) << "CopyAvFrameTo() cdm::Host::Allocate failed."; + LOG(ERROR) << "CopyAvFrameTo() CdmHost::Allocate failed."; return false; } cdm_video_frame->FrameBuffer()->SetSize(space_required); |