annotate DOCS/tech/libavc-options.txt @ 7155:66019eb62edc

"halfpack" (yuv planar 4:2:0 -> packed 4:2:2, half height) video filter (useful for downsampling luma for low-res output devices without losing chroma samples, when hardware downscaling is poor quality or unavailable)
author rfelker
date Fri, 30 Aug 2002 06:16:40 +0000
parents 9a0017ee11aa
children a258b9b7669e
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
6270
8dfe9b162624 Spell checking, line wrapping for better readability, some additions/better explanations.
atmos4
parents: 6266
diff changeset
1 Description of what all those libavcodec options do ...
8dfe9b162624 Spell checking, line wrapping for better readability, some additions/better explanations.
atmos4
parents: 6266
diff changeset
2 WARNING: I am no encoding expert so the recommendations might be bad ...
8dfe9b162624 Spell checking, line wrapping for better readability, some additions/better explanations.
atmos4
parents: 6266
diff changeset
3 if you find any errors, missing stuff, ... send a patch or cvs commit if you
8dfe9b162624 Spell checking, line wrapping for better readability, some additions/better explanations.
atmos4
parents: 6266
diff changeset
4 have an cvs account :)
8dfe9b162624 Spell checking, line wrapping for better readability, some additions/better explanations.
atmos4
parents: 6266
diff changeset
5
8dfe9b162624 Spell checking, line wrapping for better readability, some additions/better explanations.
atmos4
parents: 6266
diff changeset
6 lavcopts: (encoder options)
8dfe9b162624 Spell checking, line wrapping for better readability, some additions/better explanations.
atmos4
parents: 6266
diff changeset
7 ---------------------------
6108
cb1139661cff lavc rate control tech-docs
michael
parents:
diff changeset
8
6700
3b1be2b0fa55 vqmin=1 weirdness
michael
parents: 6552
diff changeset
9 vqmin 2-31 (minimum quantizer) for pass1/2
3b1be2b0fa55 vqmin=1 weirdness
michael
parents: 6552
diff changeset
10 1 is not recommended (much larger file, little quality difference (if u are lucky)
3b1be2b0fa55 vqmin=1 weirdness
michael
parents: 6552
diff changeset
11 and other weird things (if u are less lucky))
3b1be2b0fa55 vqmin=1 weirdness
michael
parents: 6552
diff changeset
12 weird things: msmpeg4, h263 will be very low quality
3b1be2b0fa55 vqmin=1 weirdness
michael
parents: 6552
diff changeset
13 ratecontrol will be confused -> lower quality
3b1be2b0fa55 vqmin=1 weirdness
michael
parents: 6552
diff changeset
14 some decoders will not be able to decode it
7088
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
15 2 is recommended for normal mpeg4/mpeg1video encoding (default)
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
16 3 is recommended for h263(p)/msmpeg4
6270
8dfe9b162624 Spell checking, line wrapping for better readability, some additions/better explanations.
atmos4
parents: 6266
diff changeset
17 the reason for 3 instead of 2 is that 2 could lead to overflows
8dfe9b162624 Spell checking, line wrapping for better readability, some additions/better explanations.
atmos4
parents: 6266
diff changeset
18 (this will be fixed for h263(p) by changing the quanizer per MB in
8dfe9b162624 Spell checking, line wrapping for better readability, some additions/better explanations.
atmos4
parents: 6266
diff changeset
19 the future, but msmpeg4 doesnt support that so it cant be fixed for
8dfe9b162624 Spell checking, line wrapping for better readability, some additions/better explanations.
atmos4
parents: 6266
diff changeset
20 that)
6108
cb1139661cff lavc rate control tech-docs
michael
parents:
diff changeset
21
6270
8dfe9b162624 Spell checking, line wrapping for better readability, some additions/better explanations.
atmos4
parents: 6266
diff changeset
22 vqscale 1-31 quantizer for constant quantizer / constant quality encoding
8dfe9b162624 Spell checking, line wrapping for better readability, some additions/better explanations.
atmos4
parents: 6266
diff changeset
23 1 is not recommended (much larger file, little quality difference and
8dfe9b162624 Spell checking, line wrapping for better readability, some additions/better explanations.
atmos4
parents: 6266
diff changeset
24 possible other weird things)
6108
cb1139661cff lavc rate control tech-docs
michael
parents:
diff changeset
25 lower means better quality but larger files
cb1139661cff lavc rate control tech-docs
michael
parents:
diff changeset
26 see vqmin
cb1139661cff lavc rate control tech-docs
michael
parents:
diff changeset
27
cb1139661cff lavc rate control tech-docs
michael
parents:
diff changeset
28 vqmax 1-31 (maximum quantizer) for pass1/2
7088
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
29 31 default
6108
cb1139661cff lavc rate control tech-docs
michael
parents:
diff changeset
30 10-31 should be a sane range
cb1139661cff lavc rate control tech-docs
michael
parents:
diff changeset
31
cb1139661cff lavc rate control tech-docs
michael
parents:
diff changeset
32 vqdiff 1-31 (maximum quantizer difference between I or P frames) for pass1/2
cb1139661cff lavc rate control tech-docs
michael
parents:
diff changeset
33 3 default
cb1139661cff lavc rate control tech-docs
michael
parents:
diff changeset
34
6270
8dfe9b162624 Spell checking, line wrapping for better readability, some additions/better explanations.
atmos4
parents: 6266
diff changeset
35 vmax_b_frames 0-4 (maximum number of B frames between non B frames)
6108
cb1139661cff lavc rate control tech-docs
michael
parents:
diff changeset
36 0 no b frames (default)
7088
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
37 0-2 is a sane range for mpeg4
6108
cb1139661cff lavc rate control tech-docs
michael
parents:
diff changeset
38
cb1139661cff lavc rate control tech-docs
michael
parents:
diff changeset
39 vme 0-5 (motion estimation)
cb1139661cff lavc rate control tech-docs
michael
parents:
diff changeset
40 0 none (not recommanded, very lq)
cb1139661cff lavc rate control tech-docs
michael
parents:
diff changeset
41 1 full (not recommanded, too slow)
cb1139661cff lavc rate control tech-docs
michael
parents:
diff changeset
42 2 log (not recommanded, lq)
cb1139661cff lavc rate control tech-docs
michael
parents:
diff changeset
43 3 phods (not recommanded, lq)
cb1139661cff lavc rate control tech-docs
michael
parents:
diff changeset
44 4 EPZS (default)
cb1139661cff lavc rate control tech-docs
michael
parents:
diff changeset
45 5 X1
cb1139661cff lavc rate control tech-docs
michael
parents:
diff changeset
46
cb1139661cff lavc rate control tech-docs
michael
parents:
diff changeset
47 vhq (high quality mode)
6270
8dfe9b162624 Spell checking, line wrapping for better readability, some additions/better explanations.
atmos4
parents: 6266
diff changeset
48 encode each MB as in all modes and choose the best (this is slow but
8dfe9b162624 Spell checking, line wrapping for better readability, some additions/better explanations.
atmos4
parents: 6266
diff changeset
49 better filesize/quality)
6108
cb1139661cff lavc rate control tech-docs
michael
parents:
diff changeset
50 disabled by default
cb1139661cff lavc rate control tech-docs
michael
parents:
diff changeset
51
cb1139661cff lavc rate control tech-docs
michael
parents:
diff changeset
52 v4mv
cb1139661cff lavc rate control tech-docs
michael
parents:
diff changeset
53 allow 4 MV per MB (little difference in filesize/quality)
cb1139661cff lavc rate control tech-docs
michael
parents:
diff changeset
54 disabled by default
6270
8dfe9b162624 Spell checking, line wrapping for better readability, some additions/better explanations.
atmos4
parents: 6266
diff changeset
55 cannot be used with B frames (should now work in lq mode)
6108
cb1139661cff lavc rate control tech-docs
michael
parents:
diff changeset
56
cb1139661cff lavc rate control tech-docs
michael
parents:
diff changeset
57 keyint 0-300 (maximum interval between keyframes)
6270
8dfe9b162624 Spell checking, line wrapping for better readability, some additions/better explanations.
atmos4
parents: 6266
diff changeset
58 keyframes are needed for seeking as seeking is only possible to a
8dfe9b162624 Spell checking, line wrapping for better readability, some additions/better explanations.
atmos4
parents: 6266
diff changeset
59 keyframe but they need more space than non-keyframes so larger numbers here
8dfe9b162624 Spell checking, line wrapping for better readability, some additions/better explanations.
atmos4
parents: 6266
diff changeset
60 mean slightly smaller files, but less precise seeking
6108
cb1139661cff lavc rate control tech-docs
michael
parents:
diff changeset
61 0 no keyframes
6270
8dfe9b162624 Spell checking, line wrapping for better readability, some additions/better explanations.
atmos4
parents: 6266
diff changeset
62 >300 is not recommended as the quality might be bad (depends upon
8dfe9b162624 Spell checking, line wrapping for better readability, some additions/better explanations.
atmos4
parents: 6266
diff changeset
63 decoder, encoder and luck)
7088
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
64 for strict mpeg1/2/4 compliance this would have to be <=132
6108
cb1139661cff lavc rate control tech-docs
michael
parents:
diff changeset
65
cb1139661cff lavc rate control tech-docs
michael
parents:
diff changeset
66 vb_strategy 0-1 for pass 2
6270
8dfe9b162624 Spell checking, line wrapping for better readability, some additions/better explanations.
atmos4
parents: 6266
diff changeset
67 0 allways use the max number of B frames (default)
8dfe9b162624 Spell checking, line wrapping for better readability, some additions/better explanations.
atmos4
parents: 6266
diff changeset
68 1 avoid B frames in high motion scenes (this will cause bitrate
8dfe9b162624 Spell checking, line wrapping for better readability, some additions/better explanations.
atmos4
parents: 6266
diff changeset
69 misprediction)
6108
cb1139661cff lavc rate control tech-docs
michael
parents:
diff changeset
70
cb1139661cff lavc rate control tech-docs
michael
parents:
diff changeset
71 vpass
cb1139661cff lavc rate control tech-docs
michael
parents:
diff changeset
72 1 first pass
cb1139661cff lavc rate control tech-docs
michael
parents:
diff changeset
73 2 second pass
6270
8dfe9b162624 Spell checking, line wrapping for better readability, some additions/better explanations.
atmos4
parents: 6266
diff changeset
74 (only need to specify if two-pass encoding is used)
6108
cb1139661cff lavc rate control tech-docs
michael
parents:
diff changeset
75
6270
8dfe9b162624 Spell checking, line wrapping for better readability, some additions/better explanations.
atmos4
parents: 6266
diff changeset
76 vbitrate (kbits per second) for pass1/2
6108
cb1139661cff lavc rate control tech-docs
michael
parents:
diff changeset
77 800 is default
6270
8dfe9b162624 Spell checking, line wrapping for better readability, some additions/better explanations.
atmos4
parents: 6266
diff changeset
78 (if value is bigger then 16000 it is interpreted as bit not kbit!)
6108
cb1139661cff lavc rate control tech-docs
michael
parents:
diff changeset
79
cb1139661cff lavc rate control tech-docs
michael
parents:
diff changeset
80 vratetol (filesize tolerance in kbit) for pass1/2
6270
8dfe9b162624 Spell checking, line wrapping for better readability, some additions/better explanations.
atmos4
parents: 6266
diff changeset
81 this is just an approximation, the real difference can be much smaller
8dfe9b162624 Spell checking, line wrapping for better readability, some additions/better explanations.
atmos4
parents: 6266
diff changeset
82 or larger
8dfe9b162624 Spell checking, line wrapping for better readability, some additions/better explanations.
atmos4
parents: 6266
diff changeset
83 1000-100000 is a sane range
6108
cb1139661cff lavc rate control tech-docs
michael
parents:
diff changeset
84 8000 is default
cb1139661cff lavc rate control tech-docs
michael
parents:
diff changeset
85
7088
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
86 vrc_maxrate (maximum bitrate in kbit/sec) for pass1/2
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
87 vrc_minrate (minimum bitrate in kbit/sec) for pass1/2
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
88 vrc_buf_size (buffer size in kbit) for pass1/2
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
89 this is for stuff like VCD
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
90 VCD: FIXME
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
91 SVCD: ...
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
92 DVD: ...
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
93 Note: vratetol should not be too large during the 2.pass or there might
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
94 be problems if vrc_(min|max)rate is used
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
95
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
96 vb_qfactor (-31.0-31.0) for pass1/2
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
97 1.25 is default
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
98 vi_qfactor (-31.0-31.0) for pass1/2
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
99 0.8 is default
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
100 vb_qoffset (-31.0-31.0) for pass1/2
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
101 1.25 is default
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
102 vi_qoffset (-31.0-31.0) for pass1/2
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
103 0.0 is default
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
104 if v{b|i}_qfactor > 0
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
105 I/B-Frame quantizer = P-Frame quantizer * v{b|i}_qfactor + v{b|i}_qoffset
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
106 else
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
107 do normal ratecontrol (dont lock to next P frame quantizer) and
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
108 set q= -q * v{b|i}_qfactor + v{b|i}_qoffset
6270
8dfe9b162624 Spell checking, line wrapping for better readability, some additions/better explanations.
atmos4
parents: 6266
diff changeset
109 tip: to do constant quantizer encoding with different quantizers for
8dfe9b162624 Spell checking, line wrapping for better readability, some additions/better explanations.
atmos4
parents: 6266
diff changeset
110 I/P and B frames you can use:
8dfe9b162624 Spell checking, line wrapping for better readability, some additions/better explanations.
atmos4
parents: 6266
diff changeset
111 vqmin=<ip_quant>:vqmax=<ip_quant>:vb_qfactor=<b_quant/ip_quant>
6108
cb1139661cff lavc rate control tech-docs
michael
parents:
diff changeset
112
7088
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
113 vqblur (0.0-1.0) quantizer blur (pass1)
6108
cb1139661cff lavc rate control tech-docs
michael
parents:
diff changeset
114 0.0 qblur disabled
cb1139661cff lavc rate control tech-docs
michael
parents:
diff changeset
115 0.5 is the default
cb1139661cff lavc rate control tech-docs
michael
parents:
diff changeset
116 1.0 average the quantizer over all previous frames
6270
8dfe9b162624 Spell checking, line wrapping for better readability, some additions/better explanations.
atmos4
parents: 6266
diff changeset
117 larger values will average the quantizer more over time so that it will
8dfe9b162624 Spell checking, line wrapping for better readability, some additions/better explanations.
atmos4
parents: 6266
diff changeset
118 be changed slower
7088
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
119 vqblur (0.0-99.0) quantizer blur (pass2)
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
120 gaussian blur (gaussian blur cant be done during pass 1 as the future quantizers arent known)
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
121 0.5 is the default
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
122 larger values will average the quantizer more over time so that it will
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
123 be changed slower
6108
cb1139661cff lavc rate control tech-docs
michael
parents:
diff changeset
124
7088
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
125 vqcomp quantizer compression (for pass1/2)
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
126 depends upon vrc_eq
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
127
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
128 vrc_eq the main ratecontrol equation (for pass1/2)
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
129 1 constant bitrate
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
130 tex constant quality
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
131 1+(tex/avgTex-1)*qComp approximately the equation of the old ratecontrol code
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
132 tex^qComp with qcomp 0.5 or something like that (default)
6108
cb1139661cff lavc rate control tech-docs
michael
parents:
diff changeset
133
7088
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
134 infix operators: +,-,*,/,^
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
135 variables:
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
136 tex texture complexity
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
137 iTex,pTex intra, non intra texture complexity
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
138 avgTex average texture complexity
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
139 avgIITex average intra texture complexity in I frames
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
140 avgPITex average intra texture complexity in P frames
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
141 avgPPTex average non intra texture complexity in P frames
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
142 avgBPTex average non intra texture complexity in B frames
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
143 mv bits used for MVs
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
144 fCode maximum length of MV in log2 scale
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
145 iCount number of intra MBs / number of MBs
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
146 var spatial complexity
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
147 mcVar temporal complexity
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
148 qComp qcomp from the command line
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
149 isI, isP, isB is 1 if picture type is I/P/B else 0
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
150 Pi,E see ur favorite math book
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
151
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
152 functions:
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
153 max(a,b),min(a,b) maximum / minimum
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
154 gt(a,b) is 1 if a>b, 0 otherwise
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
155 lt(a,b) is 1 if a<b, 0 otherwise
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
156 eq(a,b) is 1 if a==b,0 otherwise
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
157 sin,cos,tan,sinh,cosh,tanh,exp,log,abs
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
158
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
159 vrc_override user specified quality for specific parts (ending credits ...) (for pass1/2)
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
160 <start-frame>,<end-frame>,<quality>[/<start-frame>,<end-frame>,<quality>[/...]]
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
161 quality 2..31 -> quantizer
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
162 quality -500..0 -> quality correcture in %
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
163
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
164 vrc_init_cplx (0-1000) initial complexity for pass1
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
165
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
166 vqsquish (0 or 1) for pass1/2 how to keep the quantizer between qmin & qmax
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
167 0 use cliping
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
168 1 use a nice differentiable function (default)
6108
cb1139661cff lavc rate control tech-docs
michael
parents:
diff changeset
169
7039
2eae7ac0fa8b same behavior for luma & chroma single coeff elimination
michael
parents: 7011
diff changeset
170 vlelim (-1000-1000) single coefficient elimination threshold for luminance
6256
55aacd56c5ef docu for the new options of the patched version
michael
parents: 6108
diff changeset
171 0 disabled (default)
7039
2eae7ac0fa8b same behavior for luma & chroma single coeff elimination
michael
parents: 7011
diff changeset
172 -4 (JVT recommendation)
2eae7ac0fa8b same behavior for luma & chroma single coeff elimination
michael
parents: 7011
diff changeset
173 negative values will allso consider the dc coefficient
2eae7ac0fa8b same behavior for luma & chroma single coeff elimination
michael
parents: 7011
diff changeset
174 should be at least -4 or lower for encoding at quant=1
6256
55aacd56c5ef docu for the new options of the patched version
michael
parents: 6108
diff changeset
175
7039
2eae7ac0fa8b same behavior for luma & chroma single coeff elimination
michael
parents: 7011
diff changeset
176 vcelim (-1000-1000) single coefficient elimination threshold for chrominance
6256
55aacd56c5ef docu for the new options of the patched version
michael
parents: 6108
diff changeset
177 0 disabled (default)
6270
8dfe9b162624 Spell checking, line wrapping for better readability, some additions/better explanations.
atmos4
parents: 6266
diff changeset
178 7 (JVT recommendation)
7039
2eae7ac0fa8b same behavior for luma & chroma single coeff elimination
michael
parents: 7011
diff changeset
179 negative values will allso consider the dc coefficient
2eae7ac0fa8b same behavior for luma & chroma single coeff elimination
michael
parents: 7011
diff changeset
180 should be at least -4 or lower for encoding at quant=1
6256
55aacd56c5ef docu for the new options of the patched version
michael
parents: 6108
diff changeset
181
6270
8dfe9b162624 Spell checking, line wrapping for better readability, some additions/better explanations.
atmos4
parents: 6266
diff changeset
182 vstrict strict standard compliance
8dfe9b162624 Spell checking, line wrapping for better readability, some additions/better explanations.
atmos4
parents: 6266
diff changeset
183 only recommended if you want to feed the output into the mpeg4 reference
8dfe9b162624 Spell checking, line wrapping for better readability, some additions/better explanations.
atmos4
parents: 6266
diff changeset
184 decoder
6256
55aacd56c5ef docu for the new options of the patched version
michael
parents: 6108
diff changeset
185
55aacd56c5ef docu for the new options of the patched version
michael
parents: 6108
diff changeset
186 vdpart data partitioning
6270
8dfe9b162624 Spell checking, line wrapping for better readability, some additions/better explanations.
atmos4
parents: 6266
diff changeset
187 adds 2 byte per video packet
8dfe9b162624 Spell checking, line wrapping for better readability, some additions/better explanations.
atmos4
parents: 6266
diff changeset
188 improves error-resistance when transfering over unreliable channels (eg.
6322
91d14f75fcef Reviewed for pre5.
atmos4
parents: 6270
diff changeset
189 streaming over the internet)
6256
55aacd56c5ef docu for the new options of the patched version
michael
parents: 6108
diff changeset
190
6257
f5afd6d4d52f forgot vpsize
michael
parents: 6256
diff changeset
191 vpsize (0-10000) video packet size
f5afd6d4d52f forgot vpsize
michael
parents: 6256
diff changeset
192 0 disabled (default)
f5afd6d4d52f forgot vpsize
michael
parents: 6256
diff changeset
193 500-1000 good choice
6270
8dfe9b162624 Spell checking, line wrapping for better readability, some additions/better explanations.
atmos4
parents: 6266
diff changeset
194 improves error-resistance (see vdpart for more info)
6257
f5afd6d4d52f forgot vpsize
michael
parents: 6256
diff changeset
195
6552
3237a39563a1 gray encoding
michael
parents: 6549
diff changeset
196 gray grayscale only encoding (a bit faster than with color ...)
3237a39563a1 gray encoding
michael
parents: 6549
diff changeset
197
6256
55aacd56c5ef docu for the new options of the patched version
michael
parents: 6108
diff changeset
198 lavdopts: (decoder options)
6270
8dfe9b162624 Spell checking, line wrapping for better readability, some additions/better explanations.
atmos4
parents: 6266
diff changeset
199 ---------------------------
8dfe9b162624 Spell checking, line wrapping for better readability, some additions/better explanations.
atmos4
parents: 6266
diff changeset
200
6256
55aacd56c5ef docu for the new options of the patched version
michael
parents: 6108
diff changeset
201 ver error resilience
6270
8dfe9b162624 Spell checking, line wrapping for better readability, some additions/better explanations.
atmos4
parents: 6266
diff changeset
202 -1 needed for some very broken, encoders which completly ignore the
7011
5781b305040a bug & ver update
michael
parents: 6700
diff changeset
203 standards (one M4S2 asf sample know to need this) (default)
5781b305040a bug & ver update
michael
parents: 6700
diff changeset
204 0
6270
8dfe9b162624 Spell checking, line wrapping for better readability, some additions/better explanations.
atmos4
parents: 6266
diff changeset
205 1 more aggressive error detection, lavc might think that some correct
8dfe9b162624 Spell checking, line wrapping for better readability, some additions/better explanations.
atmos4
parents: 6266
diff changeset
206 streams contain errors
6256
55aacd56c5ef docu for the new options of the patched version
michael
parents: 6108
diff changeset
207
7011
5781b305040a bug & ver update
michael
parents: 6700
diff changeset
208 bug manual workaround encoder bugs (cant be easily detected automatically)
6256
55aacd56c5ef docu for the new options of the patched version
michael
parents: 6108
diff changeset
209 0 (default)
7011
5781b305040a bug & ver update
michael
parents: 6700
diff changeset
210 1 for msmpeg4v3 workaround for some old lavc generated msmpeg4v3 files
5781b305040a bug & ver update
michael
parents: 6700
diff changeset
211 1 for mpeg4 workaround some opendivx? files
5781b305040a bug & ver update
michael
parents: 6700
diff changeset
212 see http://heroinewarrior.com for some samples
6256
55aacd56c5ef docu for the new options of the patched version
michael
parents: 6108
diff changeset
213
6549
michael
parents: 6547
diff changeset
214 gray grayscale only decoding (a bit faster than with color ...)
michael
parents: 6547
diff changeset
215
6256
55aacd56c5ef docu for the new options of the patched version
michael
parents: 6108
diff changeset
216
6270
8dfe9b162624 Spell checking, line wrapping for better readability, some additions/better explanations.
atmos4
parents: 6266
diff changeset
217 Notes: 1. lavc will strictly follow the quantizer limits vqmin, vqmax, vqdiff
8dfe9b162624 Spell checking, line wrapping for better readability, some additions/better explanations.
atmos4
parents: 6266
diff changeset
218 even if it violates the bitrate / bitrate tolerance
6108
cb1139661cff lavc rate control tech-docs
michael
parents:
diff changeset
219 2. changing some options between pass1 & 2 can reduce the quality
cb1139661cff lavc rate control tech-docs
michael
parents:
diff changeset
220
6270
8dfe9b162624 Spell checking, line wrapping for better readability, some additions/better explanations.
atmos4
parents: 6266
diff changeset
221 FAQ: Q: Why is the filesize much too small?
8dfe9b162624 Spell checking, line wrapping for better readability, some additions/better explanations.
atmos4
parents: 6266
diff changeset
222 A: Try to increase vqmin=2 or 1 (be carefull with 1, it could cause
8dfe9b162624 Spell checking, line wrapping for better readability, some additions/better explanations.
atmos4
parents: 6266
diff changeset
223 strange things to happen).
8dfe9b162624 Spell checking, line wrapping for better readability, some additions/better explanations.
atmos4
parents: 6266
diff changeset
224 Q: Can I use -pass 1 & -pass 2 with vmax_b_frames>0 ?
6322
91d14f75fcef Reviewed for pre5.
atmos4
parents: 6270
diff changeset
225 A: -pass x uses the divx4 twopass-encoding codem which is incompatible
91d14f75fcef Reviewed for pre5.
atmos4
parents: 6270
diff changeset
226 with the libavcodec encode.
91d14f75fcef Reviewed for pre5.
atmos4
parents: 6270
diff changeset
227 If you want to fix it read DOCS/tech/patches.txt and send a patch.
6270
8dfe9b162624 Spell checking, line wrapping for better readability, some additions/better explanations.
atmos4
parents: 6266
diff changeset
228 Q: What provides better error recovery while keeping the filesize low?
7088
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
229 Should I use data partitioning or increase the number of video packets?
6270
8dfe9b162624 Spell checking, line wrapping for better readability, some additions/better explanations.
atmos4
parents: 6266
diff changeset
230 A: Data partitioning is better in this case.
6108
cb1139661cff lavc rate control tech-docs
michael
parents:
diff changeset
231
6270
8dfe9b162624 Spell checking, line wrapping for better readability, some additions/better explanations.
atmos4
parents: 6266
diff changeset
232 Glossary:
8dfe9b162624 Spell checking, line wrapping for better readability, some additions/better explanations.
atmos4
parents: 6266
diff changeset
233 MB Macroblock (16x16 luminance and 8x8 chrominance samples)
6108
cb1139661cff lavc rate control tech-docs
michael
parents:
diff changeset
234 MV Motion vector
cb1139661cff lavc rate control tech-docs
michael
parents:
diff changeset
235 ME Motion estimation
cb1139661cff lavc rate control tech-docs
michael
parents:
diff changeset
236 MC Motion compensation
7088
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
237 RC Rate control
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
238 DCT Discrete Cosine Transform
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
239 IDCT Inverse Discrete Cosine Transform
6270
8dfe9b162624 Spell checking, line wrapping for better readability, some additions/better explanations.
atmos4
parents: 6266
diff changeset
240 JVT Joint Video Team Standard -- http://www.itu.int/ITU-T/news/jvtpro.html
6108
cb1139661cff lavc rate control tech-docs
michael
parents:
diff changeset
241
6270
8dfe9b162624 Spell checking, line wrapping for better readability, some additions/better explanations.
atmos4
parents: 6266
diff changeset
242 Examples:
6256
55aacd56c5ef docu for the new options of the patched version
michael
parents: 6108
diff changeset
243 mencoder foobar.avi -lavcopts vcodec=mpeg4:vhq:keyint=300:vqscale=2 -o new-foobar.avi
6547
1c282256162a it's bug not vbug...
jonas
parents: 6322
diff changeset
244 mplayer foobar.avi -lavdopts bug=1
6322
91d14f75fcef Reviewed for pre5.
atmos4
parents: 6270
diff changeset
245
91d14f75fcef Reviewed for pre5.
atmos4
parents: 6270
diff changeset
246 --
91d14f75fcef Reviewed for pre5.
atmos4
parents: 6270
diff changeset
247 Written 2002 by Michael Niedermayer and reviewed by Felix Buenemann.
91d14f75fcef Reviewed for pre5.
atmos4
parents: 6270
diff changeset
248 Check the MPlayer documentation for contact-addresses.
91d14f75fcef Reviewed for pre5.
atmos4
parents: 6270
diff changeset
249