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

Unified Diff: content/common/gpu/media/v4l2_video_encode_accelerator.h

Issue 826663002: Support multiple video decoders and encoders (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Address piman's review comments Created 5 years, 11 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: content/common/gpu/media/v4l2_video_encode_accelerator.h
diff --git a/content/common/gpu/media/v4l2_video_encode_accelerator.h b/content/common/gpu/media/v4l2_video_encode_accelerator.h
index 267d0d010a661767eb3464b9fcc3564a56427a15..8b3198ccbe74ec767ebe90f17776714b95fc81aa 100644
--- a/content/common/gpu/media/v4l2_video_encode_accelerator.h
+++ b/content/common/gpu/media/v4l2_video_encode_accelerator.h
@@ -69,6 +69,7 @@ class CONTENT_EXPORT V4L2VideoEncodeAccelerator
// Record for codec input buffers.
struct InputRecord {
InputRecord();
+ ~InputRecord();
bool at_device;
scoped_refptr<media::VideoFrame> frame;
};
@@ -76,6 +77,7 @@ class CONTENT_EXPORT V4L2VideoEncodeAccelerator
// Record for output buffers.
struct OutputRecord {
OutputRecord();
+ ~OutputRecord();
bool at_device;
linked_ptr<BitstreamBufferRef> buffer_ref;
void* address;
« no previous file with comments | « content/common/gpu/media/v4l2_video_device.cc ('k') | content/common/gpu/media/v4l2_video_encode_accelerator.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698