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

Unified Diff: media/video/video_decode_accelerator.cc

Issue 1822983002: Support external buffer import in VDA interface and add a V4L2SVDA impl. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 9 months 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 side-by-side diff with in-line comments
Download patch
Index: media/video/video_decode_accelerator.cc
diff --git a/media/video/video_decode_accelerator.cc b/media/video/video_decode_accelerator.cc
index 00ae88c1d1ca059e082f3be9744dae7aea84e98b..702d5be2887350390ef91b3dadbd591ee2d9085c 100644
--- a/media/video/video_decode_accelerator.cc
+++ b/media/video/video_decode_accelerator.cc
@@ -39,13 +39,23 @@ bool VideoDecodeAccelerator::TryToSetupDecodeOnSeparateThread(
const scoped_refptr<base::SingleThreadTaskRunner>& decode_task_runner) {
// Implementations in the process that VDA runs in must override this.
LOG(FATAL) << "This may only be called in the same process as VDA impl.";
- return false; // not reached
+ return false;
+}
+
+void VideoDecodeAccelerator::ImportBufferForPicture(
+ int32_t picture_buffer_id,
+ const std::vector<gfx::GpuMemoryBufferHandle>& gpu_memory_buffer_handles) {
+ NOTREACHED() << "Buffer import not supported.";
}
GLenum VideoDecodeAccelerator::GetSurfaceInternalFormat() const {
return GL_RGBA;
}
+VideoPixelFormat VideoDecodeAccelerator::GetOutputFormat() const {
+ return PIXEL_FORMAT_ARGB;
+}
+
VideoDecodeAccelerator::SupportedProfile::SupportedProfile()
: profile(media::VIDEO_CODEC_PROFILE_UNKNOWN), encrypted_only(false) {}
« content/common/gpu/media/generic_v4l2_device.cc ('K') | « media/video/video_decode_accelerator.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698