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