| 1 | #======== File I/O ===================== |
|---|
| 2 | BitstreamFile : str.bin |
|---|
| 3 | ReconFile : rec.yuv |
|---|
| 4 | |
|---|
| 5 | #======== Unit definition ================ |
|---|
| 6 | MaxCUWidth : 64 # Maximum coding unit width in pixel |
|---|
| 7 | MaxCUHeight : 64 # Maximum coding unit height in pixel |
|---|
| 8 | MaxPartitionDepth : 4 # Maximum coding unit depth |
|---|
| 9 | QuadtreeTULog2MaxSize : 5 # Log2 of maximum transform size for |
|---|
| 10 | # quadtree-based TU coding (2...6) |
|---|
| 11 | QuadtreeTULog2MinSize : 2 # Log2 of minimum transform size for |
|---|
| 12 | # quadtree-based TU coding (2...6) |
|---|
| 13 | QuadtreeTUMaxDepthInter : 3 |
|---|
| 14 | QuadtreeTUMaxDepthIntra : 3 |
|---|
| 15 | |
|---|
| 16 | #======== Coding Structure ============= |
|---|
| 17 | IntraPeriod : -1 # Period of I-Frame ( -1 = only first) |
|---|
| 18 | DecodingRefreshType : 0 # Random Accesss 0:none, 1:CDR, 2:IDR |
|---|
| 19 | GOPSize : 1 # GOP Size (number of B slice = GOPSize-1) |
|---|
| 20 | RateGOPSize : 4 # GOP size used for QP assignment |
|---|
| 21 | NumOfReference : 4 # Number of reference frames |
|---|
| 22 | NumOfReferenceB_L0 : 2 # Number of reference frames for L0 for B-slices |
|---|
| 23 | NumOfReferenceB_L1 : 2 # Number of reference frames for L1 for B-slices |
|---|
| 24 | HierarchicalCoding : 0 # Hierarchical B coding ON/OFF |
|---|
| 25 | LowDelayCoding : 1 # Low-delay coding structure |
|---|
| 26 | GPB : 0 # Replace P-slice by B-slice using two same directions |
|---|
| 27 | NRF : 0 # Mark non-reference for highest temporal layer |
|---|
| 28 | BQP : 1 # Use hier-B style QP assignment for hier-P structure |
|---|
| 29 | ListCombination : 1 # Use combined list for uni-prediction in B-slices |
|---|
| 30 | |
|---|
| 31 | #=========== Motion Search ============= |
|---|
| 32 | FastSearch : 1 # 0:Full search 1:EPZS |
|---|
| 33 | SearchRange : 64 # (0: Search range is a Full frame) |
|---|
| 34 | BipredSearchRange : 4 # Search range for bi-prediction refinement |
|---|
| 35 | HadamardME : 1 # Use of hadamard measure for fractional ME |
|---|
| 36 | FEN : 1 # Fast encoder decision |
|---|
| 37 | |
|---|
| 38 | #======== Quantization ============= |
|---|
| 39 | QP : 32 # Quantization parameter(0-51) |
|---|
| 40 | MaxDeltaQP : 0 # CU-based multi-QP optimization |
|---|
| 41 | DeltaQpRD : 0 # Slice-based multi-QP optimization |
|---|
| 42 | RDOQ : 1 # RDOQ |
|---|
| 43 | |
|---|
| 44 | #=========== Entropy Coding ============ |
|---|
| 45 | SymbolMode : 0 # 0:LCEC, 1:CABAC |
|---|
| 46 | #=========== Deblock Filter ============ |
|---|
| 47 | LoopFilterDisable : 0 # Disable loop filter in slice header (0=Filter, 1=No Filter) |
|---|
| 48 | LoopFilterAlphaC0Offset : 0 # Range: -26 ~ 26 |
|---|
| 49 | LoopFilterBetaOffset : 0 # Range: -26 ~ 26 |
|---|
| 50 | |
|---|
| 51 | #=========== Misc. ============ |
|---|
| 52 | InternalBitDepth : 8 # internal bit-depth = BitDepth + BitIncrement |
|---|
| 53 | |
|---|
| 54 | #=========== Coding Tools ================= |
|---|
| 55 | MRG : 1 # Merge mode (0: OFF, 1: ON) |
|---|
| 56 | ALF : 0 # Adaptive loop filter (0: OFF, 1: ON) |
|---|
| 57 | ALFEncodePassReduction : 0 # Reduce ALF encoding passes (0:Original 16-pass, 1: 1-pass, 2: 2-pass encoding) |
|---|
| 58 | |
|---|
| 59 | #============ Slices ================ |
|---|
| 60 | SliceMode : 0 # 0: Disable all slice options. |
|---|
| 61 | # 1: Enforce maximum number of LCU in an slice, |
|---|
| 62 | # 2: Enforce maximum number of bytes in an 'slice' |
|---|
| 63 | SliceArgument : 1500 # Argument for 'SliceMode'. |
|---|
| 64 | # If SliceMode==1 it represents max. LCU per slice. |
|---|
| 65 | # If SliceMode==2 it represents max. bytes per slice. |
|---|
| 66 | |
|---|
| 67 | LFCrossSliceBoundaryFlag : 1 # In-loop filtering, including ALF and DB, is across or not across slice boundary. |
|---|
| 68 | # 0:not across, 1: across |
|---|
| 69 | |
|---|
| 70 | EntropySliceMode : 0 # 0: Disable all entropy slice options. |
|---|
| 71 | # 1: Enforce maximum number of LCU in an entropy slice, |
|---|
| 72 | # 2: Enforce maximum number of bins/bits in an 'entropy slice' |
|---|
| 73 | EntropySliceArgument : 180000 # Argument for 'EntropySliceMode'. |
|---|
| 74 | # If EntropySliceMode==1 it represents max. LCU per entropy slice. |
|---|
| 75 | # If EntropySliceMode==2 it represents max. bins per entropy slice. |
|---|
| 76 | |
|---|