| 1 | #======== File I/O ===================== |
|---|
| 2 | BitstreamFile : str.bin |
|---|
| 3 | ReconFile : rec.yuv |
|---|
| 4 | |
|---|
| 5 | #======== Profile ================ |
|---|
| 6 | Profile : next |
|---|
| 7 | |
|---|
| 8 | #======== Unit definition ================ |
|---|
| 9 | MaxCUWidth : 64 # Maximum coding unit width in pixel |
|---|
| 10 | MaxCUHeight : 64 # Maximum coding unit height in pixel |
|---|
| 11 | MaxPartitionDepth : 4 # Maximum coding unit depth |
|---|
| 12 | |
|---|
| 13 | #======== Coding Structure ============= |
|---|
| 14 | IntraPeriod : -1 # Period of I-Frame ( -1 = only first) |
|---|
| 15 | DecodingRefreshType : 0 # Random Accesss 0:none, 1:CRA, 2:IDR, 3:Recovery Point SEI |
|---|
| 16 | GOPSize : 2 # GOP Size (number of B slice = GOPSize-1) |
|---|
| 17 | |
|---|
| 18 | IntraQPOffset : 01 |
|---|
| 19 | LambdaFromQpEnable : 1 # see JCTVC-X0038 for suitable parameters for IntraQPOffset, QPoffset, QPOffsetModelOff, QPOffsetModelScale when enabled |
|---|
| 20 | # Type POC QPoffset QPOffsetModelOff QPOffsetModelScale CbQPoffset CrQPoffset QPfactor tcOffsetDiv2 betaOffsetDiv2 temporal_id #ref_pics_active_L0 #ref_pics_L0 reference_pictures_L0 #ref_pics_active_L1 #ref_pics_L1 reference_pictures_L1 |
|---|
| 21 | Frame1: P 1 1 0.0 0.0 0 0 1.0 0 0 0 1 1 1 0 0 |
|---|
| 22 | Frame2: P 2 1 0.0 0.0 0 0 1.0 0 0 0 1 1 1 0 0 |
|---|
| 23 | |
|---|
| 24 | #=========== Motion Search ============= |
|---|
| 25 | FastSearch : 1 # 0:Full search 1:TZ search |
|---|
| 26 | SearchRange : 64 # (0: Search range is a Full frame) |
|---|
| 27 | BipredSearchRange : 4 # Search range for bi-prediction refinement |
|---|
| 28 | HadamardME : 1 # Use of hadamard measure for fractional ME |
|---|
| 29 | FEN : 1 # Fast encoder decision |
|---|
| 30 | FDM : 1 # Fast Decision for Merge RD cost |
|---|
| 31 | |
|---|
| 32 | #======== Quantization ============= |
|---|
| 33 | QP : 32 # Quantization parameter(0-51) |
|---|
| 34 | MaxDeltaQP : 0 # CU-based multi-QP optimization |
|---|
| 35 | MaxCuDQPSubdiv : 0 # Maximum subdiv for CU luma Qp adjustment |
|---|
| 36 | DeltaQpRD : 0 # Slice-based multi-QP optimization |
|---|
| 37 | RDOQ : 1 # RDOQ |
|---|
| 38 | RDOQTS : 1 # RDOQ for transform skip |
|---|
| 39 | |
|---|
| 40 | #=========== Deblock Filter ============ |
|---|
| 41 | LoopFilterOffsetInPPS : 1 # Dbl params: 0=varying params in SliceHeader, param = base_param + GOP_offset_param; 1 (default) =constant params in PPS, param = base_param) |
|---|
| 42 | LoopFilterDisable : 0 # Disable deblocking filter (0=Filter, 1=No Filter) |
|---|
| 43 | LoopFilterBetaOffset_div2 : 0 # base_param: -6 ~ 6 |
|---|
| 44 | LoopFilterTcOffset_div2 : 0 # base_param: -6 ~ 6 |
|---|
| 45 | DeblockingFilterMetric : 0 # blockiness metric (automatically configures deblocking parameters in bitstream). Applies slice-level loop filter offsets (LoopFilterOffsetInPPS and LoopFilterDisable must be 0) |
|---|
| 46 | |
|---|
| 47 | #=========== Misc. ============ |
|---|
| 48 | InternalBitDepth : 10 # codec operating bit-depth |
|---|
| 49 | |
|---|
| 50 | #=========== Coding Tools ================= |
|---|
| 51 | SAO : 1 # Sample adaptive offset (0: OFF, 1: ON) |
|---|
| 52 | TransformSkip : 1 # Transform skipping (0: OFF, 1: ON) |
|---|
| 53 | TransformSkipFast : 1 # Fast Transform skipping (0: OFF, 1: ON) |
|---|
| 54 | TransformSkipLog2MaxSize : 5 |
|---|
| 55 | SAOLcuBoundary : 0 # SAOLcuBoundary using non-deblocked pixels (0: OFF, 1: ON) |
|---|
| 56 | |
|---|
| 57 | #=========== TemporalFilter ================= |
|---|
| 58 | TemporalFilter : 0 # Enable/disable GOP Based Temporal Filter |
|---|
| 59 | TemporalFilterFutureReference : 0 # Enable/disable reading future frames |
|---|
| 60 | TemporalFilterStrengthFrame4 : 0.4 # Enable filter at every 4th frame with strength |
|---|
| 61 | |
|---|
| 62 | #============ Slices ================ |
|---|
| 63 | SliceMode : 0 # 0: Disable all slice options. |
|---|
| 64 | # 1: Enforce maximum number of LCU in an slice, |
|---|
| 65 | # 2: Enforce maximum number of bytes in an 'slice' |
|---|
| 66 | # 3: Enforce maximum number of tiles in a slice |
|---|
| 67 | SliceArgument : 1500 # Argument for 'SliceMode'. |
|---|
| 68 | # If SliceMode==1 it represents max. SliceGranularity-sized blocks per slice. |
|---|
| 69 | # If SliceMode==2 it represents max. bytes per slice. |
|---|
| 70 | # If SliceMode==3 it represents max. tiles per slice. |
|---|
| 71 | |
|---|
| 72 | LFCrossSliceBoundaryFlag : 1 # In-loop filtering, including ALF and DB, is across or not across slice boundary. |
|---|
| 73 | # 0:not across, 1: across |
|---|
| 74 | |
|---|
| 75 | #============ Lossless ================ |
|---|
| 76 | TransquantBypassEnable : 0 # Value of PPS flag. |
|---|
| 77 | CUTransquantBypassFlagForce: 0 # Force transquant bypass mode, when transquant_bypass_enable_flag is enabled |
|---|
| 78 | |
|---|
| 79 | #============ Rate Control ====================== |
|---|
| 80 | RateControl : 0 # Rate control: enable rate control |
|---|
| 81 | TargetBitrate : 1000000 # Rate control: target bitrate, in bps |
|---|
| 82 | KeepHierarchicalBit : 2 # Rate control: 0: equal bit allocation; 1: fixed ratio bit allocation; 2: adaptive ratio bit allocation |
|---|
| 83 | LCULevelRateControl : 1 # Rate control: 1: LCU level RC; 0: picture level RC |
|---|
| 84 | RCLCUSeparateModel : 1 # Rate control: use LCU level separate R-lambda model |
|---|
| 85 | InitialQP : 0 # Rate control: initial QP |
|---|
| 86 | RCForceIntraQP : 0 # Rate control: force intra QP to be equal to initial QP |
|---|
| 87 | |
|---|
| 88 | #============ VTM settings ====================== |
|---|
| 89 | LoopFilterTcOffset_div2 : 0 |
|---|
| 90 | SEIDecodedPictureHash : 0 |
|---|
| 91 | CbQpOffset : 0 |
|---|
| 92 | CrQpOffset : 0 |
|---|
| 93 | SameCQPTablesForAllChroma : 1 |
|---|
| 94 | QpInValCb : 32 44 |
|---|
| 95 | QpOutValCb : 32 41 |
|---|
| 96 | ReWriteParamSets : 1 |
|---|
| 97 | #============ NEXT ==================== |
|---|
| 98 | |
|---|
| 99 | # General |
|---|
| 100 | CTUSize : 128 |
|---|
| 101 | LCTUFast : 1 |
|---|
| 102 | |
|---|
| 103 | DualITree : 1 # separate partitioning of luma and chroma channels for I-slices |
|---|
| 104 | MinQTLumaISlice : 8 |
|---|
| 105 | MinQTChromaISlice : 4 |
|---|
| 106 | MinQTNonISlice : 8 |
|---|
| 107 | MaxMTTHierarchyDepth : 3 |
|---|
| 108 | MaxMTTHierarchyDepthISliceL : 3 |
|---|
| 109 | MaxMTTHierarchyDepthISliceC : 3 |
|---|
| 110 | |
|---|
| 111 | MTS : 1 |
|---|
| 112 | MTSIntraMaxCand : 3 |
|---|
| 113 | MTSInterMaxCand : 4 |
|---|
| 114 | SBT : 1 |
|---|
| 115 | ISP : 1 |
|---|
| 116 | Affine : 1 |
|---|
| 117 | SubPuMvp : 1 |
|---|
| 118 | MaxNumMergeCand : 6 |
|---|
| 119 | LMChroma : 1 # use CCLM only |
|---|
| 120 | DepQuant : 1 |
|---|
| 121 | IMV : 1 |
|---|
| 122 | ALF : 1 |
|---|
| 123 | MHIntra : 1 |
|---|
| 124 | IBC : 0 # turned off in CTC |
|---|
| 125 | AllowDisFracMMVD : 1 |
|---|
| 126 | AffineAmvr : 0 |
|---|
| 127 | LMCSEnable : 1 # LMCS: 0: disable, 1:enable |
|---|
| 128 | LMCSSignalType : 0 # Input signal type: 0:SDR, 1:HDR-PQ, 2:HDR-HLG |
|---|
| 129 | LMCSUpdateCtrl : 2 # LMCS model update control: 0:RA, 1:AI, 2:LDB/LDP |
|---|
| 130 | MIP : 0 |
|---|
| 131 | JointCbCr : 1 # joint coding of chroma residuals (if available): 0: disable, 1: enable |
|---|
| 132 | PROF : 1 |
|---|
| 133 | PPSorSliceMode : 3 |
|---|
| 134 | ChromaTS : 1 |
|---|
| 135 | |
|---|
| 136 | # Fast tools |
|---|
| 137 | PBIntraFast : 1 |
|---|
| 138 | ISPFast : 0 |
|---|
| 139 | FastMrg : 1 |
|---|
| 140 | AMaxBT : 1 |
|---|
| 141 | FastMIP : 0 |
|---|
| 142 | FastLocalDualTreeMode : 2 |
|---|
| 143 | |
|---|
| 144 | # Encoder optimization tools |
|---|
| 145 | AffineAmvrEncOpt : 0 |
|---|
| 146 | MmvdDisNum : 6 |
|---|
| 147 | ### DO NOT ADD ANYTHING BELOW THIS LINE ### |
|---|
| 148 | ### DO NOT DELETE THE EMPTY LINE BELOW ### |
|---|
| 149 | |
|---|
| 150 | |
|---|
| 151 | |
|---|