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

Unified Diff: content/common/gpu/media/v4l2_image_processor.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_image_processor.h
diff --git a/content/common/gpu/media/v4l2_image_processor.h b/content/common/gpu/media/v4l2_image_processor.h
index 24c52c451d108548e0af04865a29c867eca1c050..04d29bc010f95432bd7ff7feba1f932eb48dfe7c 100644
--- a/content/common/gpu/media/v4l2_image_processor.h
+++ b/content/common/gpu/media/v4l2_image_processor.h
@@ -58,6 +58,7 @@ class CONTENT_EXPORT V4L2ImageProcessor {
// Record for input buffers.
struct InputRecord {
InputRecord();
+ ~InputRecord();
scoped_refptr<media::VideoFrame> frame;
bool at_device;
};
@@ -65,6 +66,7 @@ class CONTENT_EXPORT V4L2ImageProcessor {
// Record for output buffers.
struct OutputRecord {
OutputRecord();
+ ~OutputRecord();
bool at_device;
bool at_client;
std::vector<int> fds;
@@ -78,6 +80,7 @@ class CONTENT_EXPORT V4L2ImageProcessor {
// device).
struct JobRecord {
JobRecord();
+ ~JobRecord();
scoped_refptr<media::VideoFrame> frame;
FrameReadyCB ready_cb;
};
« no previous file with comments | « content/common/gpu/media/gpu_video_encode_accelerator.cc ('k') | content/common/gpu/media/v4l2_image_processor.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698