| 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..b818a05503db22fbdbbadd86d48e31dfee384176 100644
|
| --- a/media/video/video_decode_accelerator.h
|
| +++ b/media/video/video_decode_accelerator.h
|
| @@ -156,6 +156,12 @@ 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;
|
| +
|
| + // The H264 SPS and PPS configuration data. Not all clients populate these
|
| + // fields, so they should be parsed from the bitstream instead, if required.
|
| + // Each SPS and PPS is prefixed with the Annex B framing bytes: 0, 0, 0, 1.
|
| + std::vector<uint8_t> sps;
|
| + std::vector<uint8_t> pps;
|
| };
|
|
|
| // Interface for collaborating with picture interface to provide memory for
|
|
|