| Index: media/renderers/gpu_video_accelerator_factories.h
|
| diff --git a/media/renderers/gpu_video_accelerator_factories.h b/media/renderers/gpu_video_accelerator_factories.h
|
| index c77f86aeac9987daac72a307aba9797107d27ca7..0980f34489af55dc00cd4d32f476599a997cbbc4 100644
|
| --- a/media/renderers/gpu_video_accelerator_factories.h
|
| +++ b/media/renderers/gpu_video_accelerator_factories.h
|
| @@ -11,6 +11,7 @@
|
| #include "base/memory/scoped_ptr.h"
|
| #include "gpu/command_buffer/common/mailbox.h"
|
| #include "media/base/media_export.h"
|
| +#include "media/video/video_decode_accelerator.h"
|
| #include "media/video/video_encode_accelerator.h"
|
|
|
| namespace base {
|
| @@ -64,8 +65,12 @@ class MEDIA_EXPORT GpuVideoAcceleratorFactories
|
| // Returns the task runner the video accelerator runs on.
|
| virtual scoped_refptr<base::SingleThreadTaskRunner> GetTaskRunner() = 0;
|
|
|
| + // Returns the supported codec profiles of video decode accelerator.
|
| + virtual VideoDecodeAccelerator::SupportedProfiles
|
| + GetVideoDecodeAcceleratorSupportedProfiles() = 0;
|
| +
|
| // Returns the supported codec profiles of video encode accelerator.
|
| - virtual std::vector<VideoEncodeAccelerator::SupportedProfile>
|
| + virtual VideoEncodeAccelerator::SupportedProfiles
|
| GetVideoEncodeAcceleratorSupportedProfiles() = 0;
|
|
|
| protected:
|
|
|