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

Unified Diff: media/video/video_decode_accelerator.h

Issue 2365103002: Send the h264 SPS and PPS configuration parameters to AVDA (Closed)
Patch Set: Fix array init syntax Created 4 years, 3 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.h
diff --git a/media/video/video_decode_accelerator.h b/media/video/video_decode_accelerator.h
index 7e3c940d637269499297e724c3353b8cf024bd8c..95d34d5b5e2bb15a35e5fc2b728514785eff525d 100644
--- a/media/video/video_decode_accelerator.h
+++ b/media/video/video_decode_accelerator.h
@@ -156,6 +156,9 @@ class MEDIA_EXPORT VideoDecodeAccelerator {
// The list of picture buffer formats that the client knows how to use. An
// empty list means any format is supported.
std::vector<VideoPixelFormat> supported_output_formats;
+
+ // Optional codec configuration. For example, for H264 this is the AVCC.
+ std::vector<uint8_t> extra_data;
};
// Interface for collaborating with picture interface to provide memory for

Powered by Google App Engine
This is Rietveld 408576698