source: 3DVCSoftware/trunk/cfg/encoder_intra.cfg @ 5

Last change on this file since 5 was 2, checked in by hhi, 13 years ago

inital import

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