HEVC Test Model (HM)  HM-16.18
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
TAppDecCfg.h
Go to the documentation of this file.
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  *
6  * Copyright (c) 2010-2017, ITU/ISO/IEC
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 
38 #ifndef __TAPPDECCFG__
39 #define __TAPPDECCFG__
40 
41 #if _MSC_VER > 1000
42 #pragma once
43 #endif // _MSC_VER > 1000
44 
45 #include "TLibCommon/CommonDef.h"
46 #include <vector>
47 
50 
51 // ====================================================================================================================
52 // Class definition
53 // ====================================================================================================================
54 
57 {
58 protected:
59  std::string m_bitstreamFileName;
60  std::string m_reconFileName;
64 
69  std::vector<Int> m_targetDecLayerIdSet;
71 #if O0043_BEST_EFFORT_DECODING
72  UInt m_forceDecodeBitDepth;
73 #endif
76 #if MCTS_ENC_CHECK
78 #endif
79 
80 public:
83  , m_reconFileName()
84  , m_iSkipFrame(0)
85  // m_outputBitDepth array initialised below
94  , m_forceDecodeBitDepth(0)
95 #endif
99  , m_tmctsCheck(false)
100 #endif
101  {
102  for (UInt channelTypeIndex = 0; channelTypeIndex < MAX_NUM_CHANNEL_TYPE; channelTypeIndex++)
103  {
104  m_outputBitDepth[channelTypeIndex] = 0;
105  }
106  }
107 
108  virtual ~TAppDecCfg() {}
109 
110  Bool parseCfg ( Int argc, TChar* argv[] );
111 };
112 
114 
115 #endif
116 
117 
Int m_outputBitDepth[MAX_NUM_CHANNEL_TYPE]
bit depth used for writing output
Definition: TAppDecCfg.h:62
Defines version information, constants and small in-line functions.
std::string m_reconFileName
output reconstruction file name
Definition: TAppDecCfg.h:60
std::string m_colourRemapSEIFileName
output Colour Remapping file name
Definition: TAppDecCfg.h:68
unsigned int UInt
Definition: TypeDef.h:212
Int m_iMaxTemporalLayer
maximum temporal layer to be decoded
Definition: TAppDecCfg.h:65
InputColourSpaceConversion m_outputColourSpaceConvert
Definition: TAppDecCfg.h:63
std::string m_bitstreamFileName
input bitstream file name
Definition: TAppDecCfg.h:59
char TChar
Definition: TypeDef.h:206
Bool parseCfg(Int argc, TChar *argv[])
initialize option class from configuration
Definition: TAppDecCfg.cpp:61
#define O0043_BEST_EFFORT_DECODING
0 (default) = disable code related to best effort decoding, 1 = enable code relating to best effort d...
Definition: TypeDef.h:130
Bool m_tmctsCheck
Definition: TAppDecCfg.h:77
bool Bool
Definition: TypeDef.h:204
Bool m_bClipOutputVideoToRec709Range
If true, clip the output video to the Rec 709 range on saving.
Definition: TAppDecCfg.h:75
virtual ~TAppDecCfg()
Definition: TAppDecCfg.h:108
std::string m_outputDecodedSEIMessagesFilename
filename to output decoded SEI messages to. If &#39;-&#39;, then use stdout. If empty, do not output details...
Definition: TAppDecCfg.h:74
InputColourSpaceConversion
Definition: TypeDef.h:316
Int m_iSkipFrame
counter for frames prior to the random access point to skip
Definition: TAppDecCfg.h:61
Bool m_decodedNoDisplaySEIEnabled
Enable(true)/disable(false) writing only pictures that get displayed based on the no display SEI mess...
Definition: TAppDecCfg.h:67
Decoder configuration class.
Definition: TAppDecCfg.h:56
#define MCTS_ENC_CHECK
Temporal MCTS encoder constraint and decoder checks. Also requires SEITMCTSTileConstraint to be enabl...
Definition: TypeDef.h:97
int Int
Definition: TypeDef.h:211
Int m_respectDefDispWindow
Only output content inside the default display window.
Definition: TAppDecCfg.h:70
std::vector< Int > m_targetDecLayerIdSet
set of LayerIds to be included in the sub-bitstream extraction process.
Definition: TAppDecCfg.h:69
Int m_decodedPictureHashSEIEnabled
Checksum(3)/CRC(2)/MD5(1)/disable(0) acting on decoded picture hash SEI message.
Definition: TAppDecCfg.h:66