[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 | * |
---|
[1259] | 6 | * Copyright (c) 2010-2015, 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 | |
---|
[1029] | 36 | #ifndef __SEIWRITE__ |
---|
| 37 | #define __SEIWRITE__ |
---|
| 38 | |
---|
[313] | 39 | #include "SyntaxElementWriter.h" |
---|
| 40 | #include "TLibCommon/SEI.h" |
---|
| 41 | |
---|
| 42 | class TComBitIf; |
---|
| 43 | |
---|
| 44 | //! \ingroup TLibEncoder |
---|
| 45 | //! \{ |
---|
| 46 | class SEIWriter:public SyntaxElementWriter |
---|
| 47 | { |
---|
| 48 | public: |
---|
| 49 | SEIWriter() {}; |
---|
| 50 | virtual ~SEIWriter() {}; |
---|
| 51 | |
---|
[644] | 52 | #if O0164_MULTI_LAYER_HRD |
---|
[1273] | 53 | Void writeSEImessages(TComBitIf& bs, const SEIMessages &seiList, const TComVPS *vps, const TComSPS *sps, const SEIScalableNesting* nestingSei=NULL, const SEIBspNesting* bspNestingSei=NULL); |
---|
[644] | 54 | #else |
---|
[1273] | 55 | Void writeSEImessages(TComBitIf& bs, const SEIMessages &seiList, const TComSPS *sps); |
---|
[644] | 56 | #endif |
---|
[313] | 57 | |
---|
| 58 | protected: |
---|
[644] | 59 | #if O0164_MULTI_LAYER_HRD |
---|
[1235] | 60 | Void xWriteSEIpayloadData(TComBitIf& bs, const SEI& sei, const TComVPS *vps, const TComSPS *sps, const SEIScalableNesting* nestingSei, const SEIBspNesting* bspNestingSei); |
---|
[894] | 61 | #else |
---|
[1235] | 62 | Void xWriteSEIpayloadData(TComBitIf& bs, const SEI& sei, const TComSPS *sps); |
---|
[644] | 63 | #endif |
---|
[313] | 64 | Void xWriteSEIuserDataUnregistered(const SEIuserDataUnregistered &sei); |
---|
| 65 | Void xWriteSEIActiveParameterSets(const SEIActiveParameterSets& sei); |
---|
[894] | 66 | Void xWriteSEIDecodedPictureHash(const SEIDecodedPictureHash& sei); |
---|
[1185] | 67 | #if SVC_EXTENSION |
---|
[1235] | 68 | Void xWriteSEIDecodingUnitInfo(const SEIDecodingUnitInfo& sei, const TComSPS *sps, const SEIScalableNesting* nestingSei, const SEIBspNesting* bspNestingSei, const TComVPS *vps); |
---|
| 69 | Void xWriteSEIBufferingPeriod(const SEIBufferingPeriod& sei, const TComSPS *sps, const SEIScalableNesting* nestingSei, const SEIBspNesting* bspNestingSei, const TComVPS *vps); |
---|
| 70 | Void xWriteSEIPictureTiming(const SEIPictureTiming& sei, const TComSPS *sps, const SEIScalableNesting* nestingSei, const SEIBspNesting* bspNestingSei, const TComVPS *vps); |
---|
[894] | 71 | #else |
---|
[1235] | 72 | Void xWriteSEIDecodingUnitInfo(const SEIDecodingUnitInfo& sei, const TComSPS *sps); |
---|
| 73 | Void xWriteSEIBufferingPeriod(const SEIBufferingPeriod& sei, const TComSPS *sps); |
---|
| 74 | Void xWriteSEIPictureTiming(const SEIPictureTiming& sei, const TComSPS *sps); |
---|
[894] | 75 | #endif |
---|
[313] | 76 | TComSPS *m_pSPS; |
---|
| 77 | Void xWriteSEIRecoveryPoint(const SEIRecoveryPoint& sei); |
---|
| 78 | Void xWriteSEIFramePacking(const SEIFramePacking& sei); |
---|
[1029] | 79 | Void xWriteSEISegmentedRectFramePacking(const SEISegmentedRectFramePacking& sei); |
---|
[313] | 80 | Void xWriteSEIDisplayOrientation(const SEIDisplayOrientation &sei); |
---|
| 81 | Void xWriteSEITemporalLevel0Index(const SEITemporalLevel0Index &sei); |
---|
| 82 | Void xWriteSEIGradualDecodingRefreshInfo(const SEIGradualDecodingRefreshInfo &sei); |
---|
[1029] | 83 | Void xWriteSEINoDisplay(const SEINoDisplay &sei); |
---|
[313] | 84 | Void xWriteSEIToneMappingInfo(const SEIToneMappingInfo& sei); |
---|
[595] | 85 | Void xWriteSEISOPDescription(const SEISOPDescription& sei); |
---|
[644] | 86 | #if O0164_MULTI_LAYER_HRD |
---|
[1235] | 87 | Void xWriteSEIScalableNesting(TComBitIf& bs, const SEIScalableNesting& sei, const TComVPS *vps, const TComSPS *sps); |
---|
[644] | 88 | #else |
---|
[1235] | 89 | Void xWriteSEIScalableNesting(TComBitIf& bs, const SEIScalableNesting& sei, const TComSPS *sps); |
---|
[644] | 90 | #endif |
---|
[1307] | 91 | Void xWriteSEITempMotionConstrainedTileSets(const SEITempMotionConstrainedTileSets& sei); |
---|
[1029] | 92 | Void xWriteSEITimeCode(const SEITimeCode& sei); |
---|
| 93 | Void xWriteSEIChromaSamplingFilterHint(const SEIChromaSamplingFilterHint& sei/*, TComSPS *sps*/); |
---|
| 94 | Void writeUserDefinedCoefficients(const SEIChromaSamplingFilterHint& sei); |
---|
| 95 | Void xWriteSEIKneeFunctionInfo(const SEIKneeFunctionInfo &sei); |
---|
| 96 | Void xWriteSEIMasteringDisplayColourVolume( const SEIMasteringDisplayColourVolume& sei); |
---|
[595] | 97 | Void xWriteByteAlign(); |
---|
[1029] | 98 | #if Q0074_COLOUR_REMAPPING_SEI |
---|
| 99 | Void xWriteSEIColourRemappingInfo(const SEIColourRemappingInfo& sei); |
---|
| 100 | #endif |
---|
[595] | 101 | #if SVC_EXTENSION |
---|
[588] | 102 | #if LAYERS_NOT_PRESENT_SEI |
---|
| 103 | Void xWriteSEILayersNotPresent(const SEILayersNotPresent& sei); |
---|
[313] | 104 | #endif |
---|
[442] | 105 | #if N0383_IL_CONSTRAINED_TILE_SETS_SEI |
---|
| 106 | Void xWriteSEIInterLayerConstrainedTileSets(const SEIInterLayerConstrainedTileSets& sei); |
---|
| 107 | #endif |
---|
[588] | 108 | #if SUB_BITSTREAM_PROPERTY_SEI |
---|
| 109 | Void xWriteSEISubBitstreamProperty(const SEISubBitstreamProperty &sei); |
---|
| 110 | #endif |
---|
[815] | 111 | #if Q0189_TMVP_CONSTRAINTS |
---|
[1273] | 112 | Void xWriteSEITMVPConstraints(const SEITMVPConstrains &sei); |
---|
[815] | 113 | #endif |
---|
| 114 | #if Q0247_FRAME_FIELD_INFO |
---|
[1235] | 115 | Void xWriteSEIFrameFieldInfo(const SEIFrameFieldInfo &sei); |
---|
[815] | 116 | #endif |
---|
[644] | 117 | #if O0164_MULTI_LAYER_HRD |
---|
[1235] | 118 | Void xWriteSEIBspNesting(TComBitIf& bs, const SEIBspNesting &sei, const TComVPS *vps, const TComSPS *sps, const SEIScalableNesting &nestingSei); |
---|
| 119 | Void xWriteSEIBspInitialArrivalTime(const SEIBspInitialArrivalTime &sei, const TComVPS *vps, const TComSPS *sps, const SEIScalableNesting &nestingSei, const SEIBspNesting &bspNestingSei); |
---|
[644] | 120 | Void xCodeHrdParameters( TComHRD *hrd, Bool commonInfPresentFlag, UInt maxNumSubLayersMinus1 ); |
---|
| 121 | #endif |
---|
[1037] | 122 | #if P0123_ALPHA_CHANNEL_SEI |
---|
| 123 | Void xWriteSEIAlphaChannelInfo(const SEIAlphaChannelInfo &sei); |
---|
| 124 | #endif |
---|
[912] | 125 | #if Q0096_OVERLAY_SEI |
---|
| 126 | Void xWriteSEIOverlayInfo(const SEIOverlayInfo &sei); |
---|
| 127 | #endif |
---|
[595] | 128 | #endif //SVC_EXTENSION |
---|
[313] | 129 | }; |
---|
| 130 | |
---|
| 131 | //! \} |
---|
[1029] | 132 | |
---|
| 133 | #endif |
---|