1 /* 2 * Copyright (c) 2022, Intel Corporation 3 * 4 * Permission is hereby granted, free of charge, to any person obtaining a 5 * copy of this software and associated documentation files (the "Software"), 6 * to deal in the Software without restriction, including without limitation 7 * the rights to use, copy, modify, merge, publish, distribute, sublicense, 8 * and/or sell copies of the Software, and to permit persons to whom the 9 * Software is furnished to do so, subject to the following conditions: 10 * 11 * The above copyright notice and this permission notice shall be included 12 * in all copies or substantial portions of the Software. 13 * 14 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS 15 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 16 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL 17 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR 18 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, 19 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR 20 * OTHER DEALINGS IN THE SOFTWARE. 21 */ 22 //! 23 //! \file decode_sfc_histogram_postsubpipeline_m12.h 24 //! \brief Defines the postSubpipeline for decode SFC histogram 25 //! \details Defines the postSubpipline for decode SFC histogram 26 //! 27 28 #ifndef __DECODE_SFC_HISTOGRAM_POSTSUBPIPELINE_M12_H__ 29 #define __DECODE_SFC_HISTOGRAM_POSTSUBPIPELINE_M12_H__ 30 31 #include "decode_sfc_histogram_postsubpipeline.h" 32 #include "codechal_hw.h" 33 34 #ifdef _DECODE_PROCESSING_SUPPORTED 35 36 namespace decode { 37 38 class DecodeSfcHistogramSubPipelineM12 : public DecodeSfcHistogramSubPipeline 39 { 40 public: 41 //! 42 //! \brief Decode SFC histogram constructor 43 //! 44 DecodeSfcHistogramSubPipelineM12(DecodePipeline *pipeline, MediaTask *task, uint8_t numVdbox, CodechalHwInterface *hwInterface); 45 46 //! 47 //! \brief Decode SFC histogram destructor 48 //! ~DecodeSfcHistogramSubPipelineM12()49 virtual ~DecodeSfcHistogramSubPipelineM12() {} 50 51 //! 52 //! \brief Initialize the bitstream context 53 //! 54 //! \param [in] settings 55 //! Reference to the Codechal settings 56 //! \return MOS_STATUS 57 //! MOS_STATUS_SUCCESS if success, else fail reason 58 //! 59 virtual MOS_STATUS Init(CodechalSetting& settings) override; 60 61 CodechalHwInterface *m_hwInterface = nullptr; 62 63 MEDIA_CLASS_DEFINE_END(decode__DecodeSfcHistogramSubPipelineM12) 64 }; 65 66 } // namespace decode 67 68 #endif // !<__DECODE_PROCESSING_SUPPORTED 69 70 #endif // !<__DECODE_SFC_HISTOGRAM_POSTSUBPIPELINE_M12_H__ 71