OLD | NEW |
---|---|
(Empty) | |
1 // Copyright 2015 The Chromium Authors. All rights reserved. | |
2 // Use of this source code is governed by a BSD-style license that can be | |
3 // found in the LICENSE file. | |
4 | |
5 #ifndef CONTENT_COMMON_GPU_MEDIA_VAAPI_JPEG_DECODER_H_ | |
6 #define CONTENT_COMMON_GPU_MEDIA_VAAPI_JPEG_DECODER_H_ | |
7 | |
8 #include "base/macros.h" | |
9 #include "content/common/content_export.h" | |
10 #include "content/common/gpu/media/vaapi_wrapper.h" | |
11 | |
12 namespace media { | |
13 struct JpegParseResult; | |
14 } // namespace media | |
15 | |
16 namespace content { | |
17 | |
18 // A JPEG decoder that utilizes VA-API hardware video decode acceleration on | |
19 // Intel systems. Provides functionality to allow plugging VAAPI HW | |
20 // acceleration into the JpegDecodeAccelerator framework. | |
21 // | |
22 // Clients of this class are expected to manage VA surfaces created via | |
23 // VaapiWrapper, parse JPEG picture via media::ParseJpegPicture, and then pass | |
24 // them to this class. | |
25 // | |
26 // This class must be called on a single thread, and does nothing internally on | |
27 // any other thread. | |
wuchengli
2015/01/21 13:19:58
This can be removed. A static method doesn't have
kcwu
2015/01/23 07:51:33
Done.
| |
28 class CONTENT_EXPORT VaapiJpegDecoder { | |
29 public: | |
30 // Decode a JPEG picture. It will fill VA-API parameters and call | |
31 // corresponding VA-API methods according to parsed JPEG result | |
32 // |parse_result|. Decoded data will be outputted to the given |va_surface|. | |
33 // Return false on failure. | |
34 // |vaapi_wrapper| should be initialized in kDecode mode with | |
35 // VAProfileJPEGBaseline profile. | |
36 // |va_surface| should be created with size at least as the picture size. | |
37 static bool Decode(VaapiWrapper* vaapi_wrapper, | |
38 const media::JpegParseResult& parse_result, | |
39 VASurfaceID va_surface); | |
40 | |
41 private: | |
42 DISALLOW_COPY_AND_ASSIGN(VaapiJpegDecoder); | |
wuchengli
2015/01/21 13:19:58
DISALLOW_IMPLICIT_CONSTRUCTORS. Let's also disallo
kcwu
2015/01/23 07:51:33
Done.
| |
43 }; | |
44 | |
45 } // namespace content | |
46 | |
47 #endif // CONTENT_COMMON_GPU_MEDIA_VAAPI_JPEG_DECODER_H_ | |
OLD | NEW |