/external/chromium_org/media/cdm/ppapi/ |
fake_cdm_video_decoder.cc | 41 cdm::VideoFrame* decoded_frame) { 46 if (!decoded_frame) 69 decoded_frame->SetFrameBuffer(host_->Allocate(frame_size)); 70 decoded_frame->FrameBuffer()->SetSize(frame_size); 72 decoded_frame->SetFormat(cdm::kYv12); 73 decoded_frame->SetSize(video_size_); 74 decoded_frame->SetPlaneOffset(cdm::VideoFrame::kYPlane, y_offset); 75 decoded_frame->SetPlaneOffset(cdm::VideoFrame::kVPlane, v_offset); 76 decoded_frame->SetPlaneOffset(cdm::VideoFrame::kUPlane, u_offset); 77 decoded_frame->SetStride(cdm::VideoFrame::kYPlane, y_stride) [all...] |
cdm_video_decoder.h | 23 // Decodes |compressed_frame|. Stores output frame in |decoded_frame| and 33 cdm::VideoFrame* decoded_frame) = 0;
|
fake_cdm_video_decoder.h | 27 cdm::VideoFrame* decoded_frame) OVERRIDE;
|
ffmpeg_cdm_video_decoder.h | 34 cdm::VideoFrame* decoded_frame) OVERRIDE;
|
libvpx_cdm_video_decoder.cc | 105 cdm::VideoFrame* decoded_frame) { 107 DCHECK(decoded_frame); 132 decoded_frame->SetTimestamp(timestamp); 134 if (!CopyVpxImageTo(decoded_frame)) {
|
libvpx_cdm_video_decoder.h | 30 cdm::VideoFrame* decoded_frame) OVERRIDE;
|
ffmpeg_cdm_video_decoder.cc | 209 cdm::VideoFrame* decoded_frame) { 211 DCHECK(decoded_frame); 257 if (!CopyAvFrameTo(decoded_frame)) {
|
clear_key_cdm.cc | 448 cdm::VideoFrame* decoded_frame) { 467 return video_decoder_->DecodeFrame(data, size, timestamp, decoded_frame);
|
/external/chromium_org/media/cast/video_receiver/codecs/vp8/ |
vp8_decoder.cc | 79 scoped_refptr<VideoFrame> decoded_frame = local 86 img->stride[VPX_PLANE_Y], img->d_h, decoded_frame.get()); 88 img->stride[VPX_PLANE_U], (img->d_h + 1) / 2, decoded_frame.get()); 90 img->stride[VPX_PLANE_V], (img->d_h + 1) / 2, decoded_frame.get()); 99 base::Bind(frame_decoded_cb, decoded_frame, render_time));
|
/external/chromium_org/media/cast/test/ |
encode_decode_test.cc | 46 void DecodeComplete(const scoped_refptr<media::VideoFrame>& decoded_frame, 51 decoded_frame->coded_size().width()); 53 decoded_frame->coded_size().height()); 55 EXPECT_GT(I420PSNR(original_frame_, decoded_frame), 40.0);
|
/external/chromium_org/media/cast/video_receiver/ |
video_decoder_unittest.cc | 32 void DecodeComplete(const scoped_refptr<media::VideoFrame>& decoded_frame,
|
/external/chromium_org/content/renderer/pepper/ |
content_decryptor_delegate.cc | 832 scoped_refptr<media::VideoFrame> decoded_frame = local 854 video_decode_cb.Run(media::Decryptor::kSuccess, decoded_frame); [all...] |
/external/chromium_org/third_party/opus/src/include/ |
opus.h | 374 * @li max_size is the max duration of the frame in samples (per channel) that can fit into the decoded_frame array [all...] |