| [313] | 1 | /* The copyright in this software is being made available under the BSD |
|---|
| 2 | * License, included below. This software may be subject to other third party |
|---|
| 3 | * and contributor rights, including patent rights, and no such rights are |
|---|
| 4 | * granted under this license. |
|---|
| 5 | * |
|---|
| [595] | 6 | * Copyright (c) 2010-2014, ITU/ISO/IEC |
|---|
| [313] | 7 | * All rights reserved. |
|---|
| 8 | * |
|---|
| 9 | * Redistribution and use in source and binary forms, with or without |
|---|
| 10 | * modification, are permitted provided that the following conditions are met: |
|---|
| 11 | * |
|---|
| 12 | * * Redistributions of source code must retain the above copyright notice, |
|---|
| 13 | * this list of conditions and the following disclaimer. |
|---|
| 14 | * * Redistributions in binary form must reproduce the above copyright notice, |
|---|
| 15 | * this list of conditions and the following disclaimer in the documentation |
|---|
| 16 | * and/or other materials provided with the distribution. |
|---|
| 17 | * * Neither the name of the ITU/ISO/IEC nor the names of its contributors may |
|---|
| 18 | * be used to endorse or promote products derived from this software without |
|---|
| 19 | * specific prior written permission. |
|---|
| 20 | * |
|---|
| 21 | * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" |
|---|
| 22 | * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
|---|
| 23 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
|---|
| 24 | * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS |
|---|
| 25 | * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR |
|---|
| 26 | * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF |
|---|
| 27 | * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS |
|---|
| 28 | * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN |
|---|
| 29 | * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) |
|---|
| 30 | * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF |
|---|
| 31 | * THE POSSIBILITY OF SUCH DAMAGE. |
|---|
| 32 | */ |
|---|
| 33 | |
|---|
| 34 | #pragma once |
|---|
| 35 | |
|---|
| 36 | #include "SyntaxElementWriter.h" |
|---|
| 37 | #include "TLibCommon/SEI.h" |
|---|
| 38 | |
|---|
| 39 | class TComBitIf; |
|---|
| 40 | |
|---|
| 41 | //! \ingroup TLibEncoder |
|---|
| 42 | //! \{ |
|---|
| 43 | class SEIWriter:public SyntaxElementWriter |
|---|
| 44 | { |
|---|
| 45 | public: |
|---|
| 46 | SEIWriter() {}; |
|---|
| 47 | virtual ~SEIWriter() {}; |
|---|
| 48 | |
|---|
| [644] | 49 | #if O0164_MULTI_LAYER_HRD |
|---|
| 50 | void writeSEImessage(TComBitIf& bs, const SEI& sei, TComVPS *vps, TComSPS *sps, const SEIScalableNesting* nestingSei=NULL, const SEIBspNesting* bspNestingSei=NULL); |
|---|
| 51 | #else |
|---|
| [313] | 52 | void writeSEImessage(TComBitIf& bs, const SEI& sei, TComSPS *sps); |
|---|
| [644] | 53 | #endif |
|---|
| [313] | 54 | |
|---|
| 55 | protected: |
|---|
| [644] | 56 | #if O0164_MULTI_LAYER_HRD |
|---|
| [906] | 57 | #if VPS_VUI_BSP_HRD_PARAMS |
|---|
| 58 | Void xWriteSEIpayloadData(TComBitIf& bs, const SEI& sei, TComVPS *vps, TComSPS *sps, const SEIScalableNesting* nestingSei, const SEIBspNesting* bspNestingSei); |
|---|
| 59 | #else |
|---|
| [644] | 60 | Void xWriteSEIpayloadData(TComBitIf& bs, const SEI& sei, TComVPS *vps, TComSPS *sps, const SEIScalableNesting& nestingSei, const SEIBspNesting& bspNestingSei); |
|---|
| [906] | 61 | #endif |
|---|
| [644] | 62 | #else |
|---|
| [313] | 63 | Void xWriteSEIpayloadData(TComBitIf& bs, const SEI& sei, TComSPS *sps); |
|---|
| [644] | 64 | #endif |
|---|
| [313] | 65 | Void xWriteSEIuserDataUnregistered(const SEIuserDataUnregistered &sei); |
|---|
| 66 | Void xWriteSEIActiveParameterSets(const SEIActiveParameterSets& sei); |
|---|
| [906] | 67 | Void xWriteSEIDecodedPictureHash(const SEIDecodedPictureHash& sei); |
|---|
| 68 | #if VPS_VUI_BSP_HRD_PARAMS |
|---|
| 69 | Void xWriteSEIDecodingUnitInfo(const SEIDecodingUnitInfo& sei, TComSPS *sps, const SEIScalableNesting* nestingSei, const SEIBspNesting* bspNestingSei, TComVPS *vps); |
|---|
| 70 | Void xWriteSEIBufferingPeriod(const SEIBufferingPeriod& sei, TComSPS *sps, const SEIScalableNesting* nestingSei, const SEIBspNesting* bspNestingSei, TComVPS *vps); |
|---|
| 71 | Void xWriteSEIPictureTiming(const SEIPictureTiming& sei, TComSPS *sps, const SEIScalableNesting* nestingSei, const SEIBspNesting* bspNestingSei, TComVPS *vps); |
|---|
| 72 | #else |
|---|
| [313] | 73 | Void xWriteSEIDecodingUnitInfo(const SEIDecodingUnitInfo& sei, TComSPS *sps); |
|---|
| 74 | Void xWriteSEIBufferingPeriod(const SEIBufferingPeriod& sei, TComSPS *sps); |
|---|
| 75 | Void xWriteSEIPictureTiming(const SEIPictureTiming& sei, TComSPS *sps); |
|---|
| [906] | 76 | #endif |
|---|
| [313] | 77 | TComSPS *m_pSPS; |
|---|
| 78 | Void xWriteSEIRecoveryPoint(const SEIRecoveryPoint& sei); |
|---|
| 79 | Void xWriteSEIFramePacking(const SEIFramePacking& sei); |
|---|
| 80 | Void xWriteSEIDisplayOrientation(const SEIDisplayOrientation &sei); |
|---|
| 81 | Void xWriteSEITemporalLevel0Index(const SEITemporalLevel0Index &sei); |
|---|
| 82 | Void xWriteSEIGradualDecodingRefreshInfo(const SEIGradualDecodingRefreshInfo &sei); |
|---|
| 83 | Void xWriteSEIToneMappingInfo(const SEIToneMappingInfo& sei); |
|---|
| [815] | 84 | #if P0050_KNEE_FUNCTION_SEI |
|---|
| 85 | Void xWriteSEIKneeFunctionInfo(const SEIKneeFunctionInfo &sei); |
|---|
| 86 | #endif |
|---|
| [906] | 87 | #if Q0074_COLOUR_REMAPPING_SEI |
|---|
| 88 | Void xWriteSEIColourRemappingInfo(const SEIColourRemappingInfo& sei); |
|---|
| [713] | 89 | #endif |
|---|
| [595] | 90 | Void xWriteSEISOPDescription(const SEISOPDescription& sei); |
|---|
| [644] | 91 | #if O0164_MULTI_LAYER_HRD |
|---|
| 92 | Void xWriteSEIScalableNesting(TComBitIf& bs, const SEIScalableNesting& sei, TComVPS *vps, TComSPS *sps); |
|---|
| 93 | #else |
|---|
| [595] | 94 | Void xWriteSEIScalableNesting(TComBitIf& bs, const SEIScalableNesting& sei, TComSPS *sps); |
|---|
| [644] | 95 | #endif |
|---|
| [595] | 96 | Void xWriteByteAlign(); |
|---|
| 97 | #if SVC_EXTENSION |
|---|
| [588] | 98 | #if LAYERS_NOT_PRESENT_SEI |
|---|
| 99 | Void xWriteSEILayersNotPresent(const SEILayersNotPresent& sei); |
|---|
| [313] | 100 | #endif |
|---|
| [442] | 101 | #if N0383_IL_CONSTRAINED_TILE_SETS_SEI |
|---|
| 102 | Void xWriteSEIInterLayerConstrainedTileSets(const SEIInterLayerConstrainedTileSets& sei); |
|---|
| 103 | #endif |
|---|
| [588] | 104 | #if SUB_BITSTREAM_PROPERTY_SEI |
|---|
| 105 | Void xWriteSEISubBitstreamProperty(const SEISubBitstreamProperty &sei); |
|---|
| 106 | #endif |
|---|
| [815] | 107 | #if Q0189_TMVP_CONSTRAINTS |
|---|
| 108 | Void xWriteSEITMVPConstraints (const SEITMVPConstrains &sei); |
|---|
| 109 | #endif |
|---|
| 110 | #if Q0247_FRAME_FIELD_INFO |
|---|
| 111 | Void xWriteSEIFrameFieldInfo (const SEIFrameFieldInfo &sei); |
|---|
| 112 | #endif |
|---|
| [644] | 113 | #if O0164_MULTI_LAYER_HRD |
|---|
| 114 | Void xWriteSEIBspNesting(TComBitIf& bs, const SEIBspNesting &sei, TComVPS *vps, TComSPS *sps, const SEIScalableNesting &nestingSei); |
|---|
| 115 | Void xWriteSEIBspInitialArrivalTime(const SEIBspInitialArrivalTime &sei, TComVPS *vps, TComSPS *sps, const SEIScalableNesting &nestingSei, const SEIBspNesting &bspNestingSei); |
|---|
| [906] | 116 | #if !REMOVE_BSP_HRD_SEI |
|---|
| [644] | 117 | Void xWriteSEIBspHrd(const SEIBspHrd &sei, TComSPS *sps, const SEIScalableNesting &nestingSei); |
|---|
| [906] | 118 | #endif |
|---|
| [644] | 119 | Void xCodeHrdParameters( TComHRD *hrd, Bool commonInfPresentFlag, UInt maxNumSubLayersMinus1 ); |
|---|
| 120 | #endif |
|---|
| [815] | 121 | #if Q0078_ADD_LAYER_SETS |
|---|
| 122 | Void xWriteSEIOutputLayerSetNesting(TComBitIf& bs, const SEIOutputLayerSetNesting &sei, TComVPS *vps, TComSPS *sps); |
|---|
| 123 | Void xWriteSEIVPSRewriting(const SEIVPSRewriting &sei); |
|---|
| 124 | #endif |
|---|
| [595] | 125 | #endif //SVC_EXTENSION |
|---|
| [313] | 126 | }; |
|---|
| 127 | |
|---|
| 128 | //! \} |
|---|