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 : 32 # Period of I-Frame ( -1 = only first) |
---|
18 | DecodingRefreshType : 1 # Random Accesss 0:none, 1:CDR, 2:IDR |
---|
19 | GOPSize : 8 # GOP Size (number of B slice = GOPSize-1) |
---|
20 | RateGOPSize : 8 # 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 : 1 # Hierarchical B coding ON/OFF |
---|
25 | LowDelayCoding : 0 # Low-delay coding structure |
---|
26 | GPB : 1 # Replace P-slice by B-slice using two same directions |
---|
27 | NRF : 1 # Mark non-reference for highest temporal layer |
---|
28 | BQP : 0 # 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 : 1 # 0:CAVLC, 1:CABAC |
---|
46 | |
---|
47 | #=========== Deblock Filter ============ |
---|
48 | LoopFilterDisable : 0 # Disable loop filter in slice header (0=Filter, 1=No Filter) |
---|
49 | LoopFilterAlphaC0Offset : 0 # Range: -26 ~ 26 |
---|
50 | LoopFilterBetaOffset : 0 # Range: -26 ~ 26 |
---|
51 | |
---|
52 | #=========== Misc. ============ |
---|
53 | InternalBitDepth : 10 # internal bit-depth = BitDepth + BitIncrement |
---|
54 | |
---|
55 | #=========== Coding Tools ================= |
---|
56 | MRG : 1 # Merge mode (0: OFF, 1: ON) |
---|
57 | ALF : 1 # Adaptive loop filter (0: OFF, 1: ON) |
---|
58 | ALFEncodePassReduction : 0 # Reduce ALF encoding passes (0:Original 16-pass, 1: 1-pass, 2: 2-pass encoding) |
---|
59 | |
---|
60 | #============ Slices ================ |
---|
61 | SliceMode : 0 # 0: Disable all slice options. |
---|
62 | # 1: Enforce maximum number of LCU in an slice, |
---|
63 | # 2: Enforce maximum number of bytes in an 'slice' |
---|
64 | SliceArgument : 1500 # Argument for 'SliceMode'. |
---|
65 | # If SliceMode==1 it represents max. LCU per slice. |
---|
66 | # If SliceMode==2 it represents max. bytes per slice. |
---|
67 | |
---|
68 | LFCrossSliceBoundaryFlag : 1 # In-loop filtering, including ALF and DB, is across or not across slice boundary. |
---|
69 | # 0:not across, 1: across |
---|
70 | |
---|
71 | EntropySliceMode : 0 # 0: Disable all entropy slice options. |
---|
72 | # 1: Enforce maximum number of LCU in an entropy slice, |
---|
73 | # 2: Enforce maximum number of bins/bits in an 'entropy slice' |
---|
74 | EntropySliceArgument : 180000 # Argument for 'EntropySliceMode'. |
---|
75 | # If EntropySliceMode==1 it represents max. LCU per entropy slice. |
---|
76 | # If EntropySliceMode==2 it represents max. bins per entropy slice. |
---|
77 | |
---|
78 | |
---|