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

Unified Diff: media/base/pipeline.h

Issue 363813002: Update to Pipeline Metadata and Decoder Stream for Orientation Data (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 6 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
« no previous file with comments | « no previous file | media/base/pipeline.cc » ('j') | media/base/video_decoder_config.h » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/base/pipeline.h
diff --git a/media/base/pipeline.h b/media/base/pipeline.h
index b8307bd018613c2a7e8f2e4afcc94e2b99b5dca1..53041f7a99c52c75ef850ce01f94ae101c7f6e2f 100644
--- a/media/base/pipeline.h
+++ b/media/base/pipeline.h
@@ -37,11 +37,12 @@ class VideoRenderer;
// Metadata describing a pipeline once it has been initialized.
struct PipelineMetadata {
- PipelineMetadata() : has_audio(false), has_video(false) {}
+ PipelineMetadata() : has_audio(false), has_video(false), rotation(0) {}
bool has_audio;
bool has_video;
gfx::Size natural_size;
+ int rotation;
base::Time timeline_offset;
};
« no previous file with comments | « no previous file | media/base/pipeline.cc » ('j') | media/base/video_decoder_config.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698