]> git.sesse.net Git - ffmpeg/blob - doc/codecs.texi
Merge commit '913fa85a2c1fcd71802f7decdef5f355e0d9c757'
[ffmpeg] / doc / codecs.texi
1 @anchor{codec-options}
2 @chapter Codec Options
3 @c man begin CODEC OPTIONS
4
5 libavcodec provides some generic global options, which can be set on
6 all the encoders and decoders. In addition each codec may support
7 so-called private options, which are specific for a given codec.
8
9 Sometimes, a global option may only affect a specific kind of codec,
10 and may be unsensical or ignored by another, so you need to be aware
11 of the meaning of the specified options. Also some options are
12 meant only for decoding or encoding.
13
14 Options may be set by specifying -@var{option} @var{value} in the
15 FFmpeg tools, or by setting the value explicitly in the
16 @code{AVCodecContext} options or using the @file{libavutil/opt.h} API
17 for programmatic use.
18
19 The list of supported options follow:
20
21 @table @option
22 @item b @var{integer} (@emph{encoding,audio,video})
23 Set bitrate in bits/s. Default value is 200K.
24
25 @item ab @var{integer} (@emph{encoding,audio})
26 Set audio bitrate (in bits/s). Default value is 128K.
27
28 @item bt @var{integer} (@emph{encoding,video})
29 Set video bitrate tolerance (in bits/s). In 1-pass mode, bitrate
30 tolerance specifies how far ratecontrol is willing to deviate from the
31 target average bitrate value. This is not related to min/max
32 bitrate. Lowering tolerance too much has an adverse effect on quality.
33
34 @item flags @var{flags} (@emph{decoding/encoding,audio,video,subtitles})
35 Set generic flags.
36
37 Possible values:
38 @table @samp
39 @item mv4
40 Use four motion vector by macroblock (mpeg4).
41 @item qpel
42 Use 1/4 pel motion compensation.
43 @item loop
44 Use loop filter.
45 @item qscale
46 Use fixed qscale.
47 @item gmc
48 Use gmc.
49 @item mv0
50 Always try a mb with mv=<0,0>.
51 @item input_preserved
52
53 @item pass1
54 Use internal 2pass ratecontrol in first pass mode.
55 @item pass2
56 Use internal 2pass ratecontrol in second pass mode.
57 @item gray
58 Only decode/encode grayscale.
59 @item emu_edge
60 Do not draw edges.
61 @item psnr
62 Set error[?] variables during encoding.
63 @item truncated
64
65 @item naq
66 Normalize adaptive quantization.
67 @item ildct
68 Use interlaced DCT.
69 @item low_delay
70 Force low delay.
71 @item global_header
72 Place global headers in extradata instead of every keyframe.
73 @item bitexact
74 Use only bitexact stuff (except (I)DCT).
75 @item aic
76 Apply H263 advanced intra coding / mpeg4 ac prediction.
77 @item cbp
78 Deprecated, use mpegvideo private options instead.
79 @item qprd
80 Deprecated, use mpegvideo private options instead.
81 @item ilme
82 Apply interlaced motion estimation.
83 @item cgop
84 Use closed gop.
85 @end table
86
87 @item me_method @var{integer} (@emph{encoding,video})
88 Set motion estimation method.
89
90 Possible values:
91 @table @samp
92 @item zero
93 zero motion estimation (fastest)
94 @item full
95 full motion estimation (slowest)
96 @item epzs
97 EPZS motion estimation (default)
98 @item esa
99 esa motion estimation (alias for full)
100 @item tesa
101 tesa motion estimation
102 @item dia
103 dia motion estimation (alias for epzs)
104 @item log
105 log motion estimation
106 @item phods
107 phods motion estimation
108 @item x1
109 X1 motion estimation
110 @item hex
111 hex motion estimation
112 @item umh
113 umh motion estimation
114 @item iter
115 iter motion estimation
116 @end table
117
118 @item extradata_size @var{integer}
119 Set extradata size.
120
121 @item time_base @var{rational number}
122 Set codec time base.
123
124 It is the fundamental unit of time (in seconds) in terms of which
125 frame timestamps are represented. For fixed-fps content, timebase
126 should be @code{1 / frame_rate} and timestamp increments should be
127 identically 1.
128
129 @item g @var{integer} (@emph{encoding,video})
130 Set the group of picture size. Default value is 12.
131
132 @item ar @var{integer} (@emph{decoding/encoding,audio})
133 Set audio sampling rate (in Hz).
134
135 @item ac @var{integer} (@emph{decoding/encoding,audio})
136 Set number of audio channels.
137
138 @item cutoff @var{integer} (@emph{encoding,audio})
139 Set cutoff bandwidth.
140
141 @item frame_size @var{integer} (@emph{encoding,audio})
142 Set audio frame size.
143
144 Each submitted frame except the last must contain exactly frame_size
145 samples per channel. May be 0 when the codec has
146 CODEC_CAP_VARIABLE_FRAME_SIZE set, in that case the frame size is not
147 restricted. It is set by some decoders to indicate constant frame
148 size.
149
150 @item frame_number @var{integer}
151 Set the frame number.
152
153 @item delay @var{integer}
154
155 @item qcomp @var{float} (@emph{encoding,video})
156 Set video quantizer scale compression (VBR). It is used as a constant
157 in the ratecontrol equation. Recommended range for default rc_eq:
158 0.0-1.0.
159
160 @item qblur @var{float} (@emph{encoding,video})
161 Set video quantizer scale blur (VBR).
162
163 @item qmin @var{integer} (@emph{encoding,video})
164 Set min video quantizer scale (VBR). Must be included between -1 and
165 69, default value is 2.
166
167 @item qmax @var{integer} (@emph{encoding,video})
168 Set max video quantizer scale (VBR). Must be included between -1 and
169 1024, default value is 31.
170
171 @item qdiff @var{integer} (@emph{encoding,video})
172 Set max difference between the quantizer scale (VBR).
173
174 @item bf @var{integer} (@emph{encoding,video})
175 Set max number of B frames between non-B-frames.
176
177 Must be an integer between -1 and 16. 0 means that B-frames are
178 disabled. If a value of -1 is used, it will choose an automatic value
179 depending on the encoder.
180
181 Default value is 0.
182
183 @item b_qfactor @var{float} (@emph{encoding,video})
184 Set qp factor between P and B frames.
185
186 @item rc_strategy @var{integer} (@emph{encoding,video})
187 Set ratecontrol method.
188
189 @item b_strategy @var{integer} (@emph{encoding,video})
190 Set strategy to choose between I/P/B-frames.
191
192 @item ps @var{integer} (@emph{encoding,video})
193 Set RTP payload size in bytes.
194
195 @item mv_bits @var{integer}
196 @item header_bits @var{integer}
197 @item i_tex_bits @var{integer}
198 @item p_tex_bits @var{integer}
199 @item i_count @var{integer}
200 @item p_count @var{integer}
201 @item skip_count @var{integer}
202 @item misc_bits @var{integer}
203 @item frame_bits @var{integer}
204 @item codec_tag @var{integer}
205 @item bug @var{flags} (@emph{decoding,video})
206 Workaround not auto detected encoder bugs.
207
208 Possible values:
209 @table @samp
210 @item autodetect
211
212 @item old_msmpeg4
213 some old lavc generated msmpeg4v3 files (no autodetection)
214 @item xvid_ilace
215 Xvid interlacing bug (autodetected if fourcc==XVIX)
216 @item ump4
217 (autodetected if fourcc==UMP4)
218 @item no_padding
219 padding bug (autodetected)
220 @item amv
221
222 @item ac_vlc
223 illegal vlc bug (autodetected per fourcc)
224 @item qpel_chroma
225
226 @item std_qpel
227 old standard qpel (autodetected per fourcc/version)
228 @item qpel_chroma2
229
230 @item direct_blocksize
231 direct-qpel-blocksize bug (autodetected per fourcc/version)
232 @item edge
233 edge padding bug (autodetected per fourcc/version)
234 @item hpel_chroma
235
236 @item dc_clip
237
238 @item ms
239 Workaround various bugs in microsoft broken decoders.
240 @item trunc
241 trancated frames
242 @end table
243
244 @item lelim @var{integer} (@emph{encoding,video})
245 Set single coefficient elimination threshold for luminance (negative
246 values also consider DC coefficient).
247
248 @item celim @var{integer} (@emph{encoding,video})
249 Set single coefficient elimination threshold for chrominance (negative
250 values also consider dc coefficient)
251
252 @item strict @var{integer} (@emph{decoding/encoding,audio,video})
253 Specify how strictly to follow the standards.
254
255 Possible values:
256 @table @samp
257 @item very
258 strictly conform to a older more strict version of the spec or reference software
259 @item strict
260 strictly conform to all the things in the spec no matter what consequences
261 @item normal
262
263 @item unofficial
264 allow unofficial extensions
265 @item experimental
266 allow non standardized experimental things, experimental
267 (unfinished/work in progress/not well tested) decoders and encoders.
268 Note: experimental decoders can pose a security risk, do not use this for
269 decoding untrusted input.
270 @end table
271
272 @item b_qoffset @var{float} (@emph{encoding,video})
273 Set QP offset between P and B frames.
274
275 @item err_detect @var{flags} (@emph{decoding,audio,video})
276 Set error detection flags.
277
278 Possible values:
279 @table @samp
280 @item crccheck
281 verify embedded CRCs
282 @item bitstream
283 detect bitstream specification deviations
284 @item buffer
285 detect improper bitstream length
286 @item explode
287 abort decoding on minor error detection
288 @item ignore_err
289 ignore decoding errors, and continue decoding.
290 This is useful if you want to analyze the content of a video and thus want
291 everything to be decoded no matter what. This option will not result in a video
292 that is pleasing to watch in case of errors.
293 @item careful
294 consider things that violate the spec and have not been seen in the wild as errors
295 @item compliant
296 consider all spec non compliancies as errors
297 @item aggressive
298 consider things that a sane encoder should not do as an error
299 @end table
300
301 @item has_b_frames @var{integer}
302
303 @item block_align @var{integer}
304
305 @item mpeg_quant @var{integer} (@emph{encoding,video})
306 Use MPEG quantizers instead of H.263.
307
308 @item qsquish @var{float} (@emph{encoding,video})
309 How to keep quantizer between qmin and qmax (0 = clip, 1 = use
310 differentiable function).
311
312 @item rc_qmod_amp @var{float} (@emph{encoding,video})
313 Set experimental quantizer modulation.
314
315 @item rc_qmod_freq @var{integer} (@emph{encoding,video})
316 Set experimental quantizer modulation.
317
318 @item rc_override_count @var{integer}
319
320 @item rc_eq @var{string} (@emph{encoding,video})
321 Set rate control equation. When computing the expression, besides the
322 standard functions defined in the section 'Expression Evaluation', the
323 following functions are available: bits2qp(bits), qp2bits(qp). Also
324 the following constants are available: iTex pTex tex mv fCode iCount
325 mcVar var isI isP isB avgQP qComp avgIITex avgPITex avgPPTex avgBPTex
326 avgTex.
327
328 @item maxrate @var{integer} (@emph{encoding,audio,video})
329 Set max bitrate tolerance (in bits/s). Requires bufsize to be set.
330
331 @item minrate @var{integer} (@emph{encoding,audio,video})
332 Set min bitrate tolerance (in bits/s). Most useful in setting up a CBR
333 encode. It is of little use elsewise.
334
335 @item bufsize @var{integer} (@emph{encoding,audio,video})
336 Set ratecontrol buffer size (in bits).
337
338 @item rc_buf_aggressivity @var{float} (@emph{encoding,video})
339 Currently useless.
340
341 @item i_qfactor @var{float} (@emph{encoding,video})
342 Set QP factor between P and I frames.
343
344 @item i_qoffset @var{float} (@emph{encoding,video})
345 Set QP offset between P and I frames.
346
347 @item rc_init_cplx @var{float} (@emph{encoding,video})
348 Set initial complexity for 1-pass encoding.
349
350 @item dct @var{integer} (@emph{encoding,video})
351 Set DCT algorithm.
352
353 Possible values:
354 @table @samp
355 @item auto
356 autoselect a good one (default)
357 @item fastint
358 fast integer
359 @item int
360 accurate integer
361 @item mmx
362
363 @item altivec
364
365 @item faan
366 floating point AAN DCT
367 @end table
368
369 @item lumi_mask @var{float} (@emph{encoding,video})
370 Compress bright areas stronger than medium ones.
371
372 @item tcplx_mask @var{float} (@emph{encoding,video})
373 Set temporal complexity masking.
374
375 @item scplx_mask @var{float} (@emph{encoding,video})
376 Set spatial complexity masking.
377
378 @item p_mask @var{float} (@emph{encoding,video})
379 Set inter masking.
380
381 @item dark_mask @var{float} (@emph{encoding,video})
382 Compress dark areas stronger than medium ones.
383
384 @item idct @var{integer} (@emph{decoding/encoding,video})
385 Select IDCT implementation.
386
387 Possible values:
388 @table @samp
389 @item auto
390
391 @item int
392
393 @item simple
394
395 @item simplemmx
396
397 @item simpleauto
398 Automatically pick a IDCT compatible with the simple one
399
400 @item arm
401
402 @item altivec
403
404 @item sh4
405
406 @item simplearm
407
408 @item simplearmv5te
409
410 @item simplearmv6
411
412 @item simpleneon
413
414 @item simplealpha
415
416 @item ipp
417
418 @item xvidmmx
419
420 @item faani
421 floating point AAN IDCT
422 @end table
423
424 @item slice_count @var{integer}
425
426 @item ec @var{flags} (@emph{decoding,video})
427 Set error concealment strategy.
428
429 Possible values:
430 @table @samp
431 @item guess_mvs
432 iterative motion vector (MV) search (slow)
433 @item deblock
434 use strong deblock filter for damaged MBs
435 @item favor_inter
436 favor predicting from the previous frame instead of the current
437 @end table
438
439 @item bits_per_coded_sample @var{integer}
440
441 @item pred @var{integer} (@emph{encoding,video})
442 Set prediction method.
443
444 Possible values:
445 @table @samp
446 @item left
447
448 @item plane
449
450 @item median
451
452 @end table
453
454 @item aspect @var{rational number} (@emph{encoding,video})
455 Set sample aspect ratio.
456
457 @item debug @var{flags} (@emph{decoding/encoding,audio,video,subtitles})
458 Print specific debug info.
459
460 Possible values:
461 @table @samp
462 @item pict
463 picture info
464 @item rc
465 rate control
466 @item bitstream
467
468 @item mb_type
469 macroblock (MB) type
470 @item qp
471 per-block quantization parameter (QP)
472 @item mv
473 motion vector
474 @item dct_coeff
475
476 @item skip
477
478 @item startcode
479
480 @item pts
481
482 @item er
483 error recognition
484 @item mmco
485 memory management control operations (H.264)
486 @item bugs
487
488 @item vis_qp
489 visualize quantization parameter (QP), lower QP are tinted greener
490 @item vis_mb_type
491 visualize block types
492 @item buffers
493 picture buffer allocations
494 @item thread_ops
495 threading operations
496 @end table
497
498 @item vismv @var{integer} (@emph{decoding,video})
499 Visualize motion vectors (MVs).
500
501 Possible values:
502 @table @samp
503 @item pf
504 forward predicted MVs of P-frames
505 @item bf
506 forward predicted MVs of B-frames
507 @item bb
508 backward predicted MVs of B-frames
509 @end table
510
511 @item cmp @var{integer} (@emph{encoding,video})
512 Set full pel me compare function.
513
514 Possible values:
515 @table @samp
516 @item sad
517 sum of absolute differences, fast (default)
518 @item sse
519 sum of squared errors
520 @item satd
521 sum of absolute Hadamard transformed differences
522 @item dct
523 sum of absolute DCT transformed differences
524 @item psnr
525 sum of squared quantization errors (avoid, low quality)
526 @item bit
527 number of bits needed for the block
528 @item rd
529 rate distortion optimal, slow
530 @item zero
531 0
532 @item vsad
533 sum of absolute vertical differences
534 @item vsse
535 sum of squared vertical differences
536 @item nsse
537 noise preserving sum of squared differences
538 @item w53
539 5/3 wavelet, only used in snow
540 @item w97
541 9/7 wavelet, only used in snow
542 @item dctmax
543
544 @item chroma
545
546 @end table
547
548 @item subcmp @var{integer} (@emph{encoding,video})
549 Set sub pel me compare function.
550
551 Possible values:
552 @table @samp
553 @item sad
554 sum of absolute differences, fast (default)
555 @item sse
556 sum of squared errors
557 @item satd
558 sum of absolute Hadamard transformed differences
559 @item dct
560 sum of absolute DCT transformed differences
561 @item psnr
562 sum of squared quantization errors (avoid, low quality)
563 @item bit
564 number of bits needed for the block
565 @item rd
566 rate distortion optimal, slow
567 @item zero
568 0
569 @item vsad
570 sum of absolute vertical differences
571 @item vsse
572 sum of squared vertical differences
573 @item nsse
574 noise preserving sum of squared differences
575 @item w53
576 5/3 wavelet, only used in snow
577 @item w97
578 9/7 wavelet, only used in snow
579 @item dctmax
580
581 @item chroma
582
583 @end table
584
585 @item mbcmp @var{integer} (@emph{encoding,video})
586 Set macroblock compare function.
587
588 Possible values:
589 @table @samp
590 @item sad
591 sum of absolute differences, fast (default)
592 @item sse
593 sum of squared errors
594 @item satd
595 sum of absolute Hadamard transformed differences
596 @item dct
597 sum of absolute DCT transformed differences
598 @item psnr
599 sum of squared quantization errors (avoid, low quality)
600 @item bit
601 number of bits needed for the block
602 @item rd
603 rate distortion optimal, slow
604 @item zero
605 0
606 @item vsad
607 sum of absolute vertical differences
608 @item vsse
609 sum of squared vertical differences
610 @item nsse
611 noise preserving sum of squared differences
612 @item w53
613 5/3 wavelet, only used in snow
614 @item w97
615 9/7 wavelet, only used in snow
616 @item dctmax
617
618 @item chroma
619
620 @end table
621
622 @item ildctcmp @var{integer} (@emph{encoding,video})
623 Set interlaced dct compare function.
624
625 Possible values:
626 @table @samp
627 @item sad
628 sum of absolute differences, fast (default)
629 @item sse
630 sum of squared errors
631 @item satd
632 sum of absolute Hadamard transformed differences
633 @item dct
634 sum of absolute DCT transformed differences
635 @item psnr
636 sum of squared quantization errors (avoid, low quality)
637 @item bit
638 number of bits needed for the block
639 @item rd
640 rate distortion optimal, slow
641 @item zero
642 0
643 @item vsad
644 sum of absolute vertical differences
645 @item vsse
646 sum of squared vertical differences
647 @item nsse
648 noise preserving sum of squared differences
649 @item w53
650 5/3 wavelet, only used in snow
651 @item w97
652 9/7 wavelet, only used in snow
653 @item dctmax
654
655 @item chroma
656
657 @end table
658
659 @item dia_size @var{integer} (@emph{encoding,video})
660 Set diamond type & size for motion estimation.
661
662 @item last_pred @var{integer} (@emph{encoding,video})
663 Set amount of motion predictors from the previous frame.
664
665 @item preme @var{integer} (@emph{encoding,video})
666 Set pre motion estimation.
667
668 @item precmp @var{integer} (@emph{encoding,video})
669 Set pre motion estimation compare function.
670
671 Possible values:
672 @table @samp
673 @item sad
674 sum of absolute differences, fast (default)
675 @item sse
676 sum of squared errors
677 @item satd
678 sum of absolute Hadamard transformed differences
679 @item dct
680 sum of absolute DCT transformed differences
681 @item psnr
682 sum of squared quantization errors (avoid, low quality)
683 @item bit
684 number of bits needed for the block
685 @item rd
686 rate distortion optimal, slow
687 @item zero
688 0
689 @item vsad
690 sum of absolute vertical differences
691 @item vsse
692 sum of squared vertical differences
693 @item nsse
694 noise preserving sum of squared differences
695 @item w53
696 5/3 wavelet, only used in snow
697 @item w97
698 9/7 wavelet, only used in snow
699 @item dctmax
700
701 @item chroma
702
703 @end table
704
705 @item pre_dia_size @var{integer} (@emph{encoding,video})
706 Set diamond type & size for motion estimation pre-pass.
707
708 @item subq @var{integer} (@emph{encoding,video})
709 Set sub pel motion estimation quality.
710
711 @item dtg_active_format @var{integer}
712
713 @item me_range @var{integer} (@emph{encoding,video})
714 Set limit motion vectors range (1023 for DivX player).
715
716 @item ibias @var{integer} (@emph{encoding,video})
717 Set intra quant bias.
718
719 @item pbias @var{integer} (@emph{encoding,video})
720 Set inter quant bias.
721
722 @item color_table_id @var{integer}
723
724 @item global_quality @var{integer} (@emph{encoding,audio,video})
725
726 @item coder @var{integer} (@emph{encoding,video})
727
728 Possible values:
729 @table @samp
730 @item vlc
731 variable length coder / huffman coder
732 @item ac
733 arithmetic coder
734 @item raw
735 raw (no encoding)
736 @item rle
737 run-length coder
738 @item deflate
739 deflate-based coder
740 @end table
741
742 @item context @var{integer} (@emph{encoding,video})
743 Set context model.
744
745 @item slice_flags @var{integer}
746
747 @item xvmc_acceleration @var{integer}
748
749 @item mbd @var{integer} (@emph{encoding,video})
750 Set macroblock decision algorithm (high quality mode).
751
752 Possible values:
753 @table @samp
754 @item simple
755 use mbcmp (default)
756 @item bits
757 use fewest bits
758 @item rd
759 use best rate distortion
760 @end table
761
762 @item stream_codec_tag @var{integer}
763
764 @item sc_threshold @var{integer} (@emph{encoding,video})
765 Set scene change threshold.
766
767 @item lmin @var{integer} (@emph{encoding,video})
768 Set min lagrange factor (VBR).
769
770 @item lmax @var{integer} (@emph{encoding,video})
771 Set max lagrange factor (VBR).
772
773 @item nr @var{integer} (@emph{encoding,video})
774 Set noise reduction.
775
776 @item rc_init_occupancy @var{integer} (@emph{encoding,video})
777 Set number of bits which should be loaded into the rc buffer before
778 decoding starts.
779
780 @item flags2 @var{flags} (@emph{decoding/encoding,audio,video})
781
782 Possible values:
783 @table @samp
784 @item fast
785 Allow non spec compliant speedup tricks.
786 @item sgop
787 Deprecated, use mpegvideo private options instead.
788 @item noout
789 Skip bitstream encoding.
790 @item ignorecrop
791 Ignore cropping information from sps.
792 @item local_header
793 Place global headers at every keyframe instead of in extradata.
794 @item chunks
795 Frame data might be split into multiple chunks.
796 @item showall
797 Show all frames before the first keyframe.
798 @item skiprd
799 Deprecated, use mpegvideo private options instead.
800 @end table
801
802 @item error @var{integer} (@emph{encoding,video})
803
804 @item qns @var{integer} (@emph{encoding,video})
805 Deprecated, use mpegvideo private options instead.
806
807 @item threads @var{integer} (@emph{decoding/encoding,video})
808
809 Possible values:
810 @table @samp
811 @item auto
812 detect a good number of threads
813 @end table
814
815 @item me_threshold @var{integer} (@emph{encoding,video})
816 Set motion estimation threshold.
817
818 @item mb_threshold @var{integer} (@emph{encoding,video})
819 Set macroblock threshold.
820
821 @item dc @var{integer} (@emph{encoding,video})
822 Set intra_dc_precision.
823
824 @item nssew @var{integer} (@emph{encoding,video})
825 Set nsse weight.
826
827 @item skip_top @var{integer} (@emph{decoding,video})
828 Set number of macroblock rows at the top which are skipped.
829
830 @item skip_bottom @var{integer} (@emph{decoding,video})
831 Set number of macroblock rows at the bottom which are skipped.
832
833 @item profile @var{integer} (@emph{encoding,audio,video})
834
835 Possible values:
836 @table @samp
837 @item unknown
838
839 @item aac_main
840
841 @item aac_low
842
843 @item aac_ssr
844
845 @item aac_ltp
846
847 @item aac_he
848
849 @item aac_he_v2
850
851 @item aac_ld
852
853 @item aac_eld
854
855 @item mpeg2_aac_low
856
857 @item mpeg2_aac_he
858
859 @item dts
860
861 @item dts_es
862
863 @item dts_96_24
864
865 @item dts_hd_hra
866
867 @item dts_hd_ma
868
869 @end table
870
871 @item level @var{integer} (@emph{encoding,audio,video})
872
873 Possible values:
874 @table @samp
875 @item unknown
876
877 @end table
878
879 @item lowres @var{integer} (@emph{decoding,audio,video})
880 Decode at 1= 1/2, 2=1/4, 3=1/8 resolutions.
881
882 @item skip_threshold @var{integer} (@emph{encoding,video})
883 Set frame skip threshold.
884
885 @item skip_factor @var{integer} (@emph{encoding,video})
886 Set frame skip factor.
887
888 @item skip_exp @var{integer} (@emph{encoding,video})
889 Set frame skip exponent.
890 Negative values behave identical to the corresponding positive ones, except
891 that the score is normalized.
892 Positive values exist primarily for compatibility reasons and are not so useful.
893
894 @item skipcmp @var{integer} (@emph{encoding,video})
895 Set frame skip compare function.
896
897 Possible values:
898 @table @samp
899 @item sad
900 sum of absolute differences, fast (default)
901 @item sse
902 sum of squared errors
903 @item satd
904 sum of absolute Hadamard transformed differences
905 @item dct
906 sum of absolute DCT transformed differences
907 @item psnr
908 sum of squared quantization errors (avoid, low quality)
909 @item bit
910 number of bits needed for the block
911 @item rd
912 rate distortion optimal, slow
913 @item zero
914 0
915 @item vsad
916 sum of absolute vertical differences
917 @item vsse
918 sum of squared vertical differences
919 @item nsse
920 noise preserving sum of squared differences
921 @item w53
922 5/3 wavelet, only used in snow
923 @item w97
924 9/7 wavelet, only used in snow
925 @item dctmax
926
927 @item chroma
928
929 @end table
930
931 @item border_mask @var{float} (@emph{encoding,video})
932 Increase the quantizer for macroblocks close to borders.
933
934 @item mblmin @var{integer} (@emph{encoding,video})
935 Set min macroblock lagrange factor (VBR).
936
937 @item mblmax @var{integer} (@emph{encoding,video})
938 Set max macroblock lagrange factor (VBR).
939
940 @item mepc @var{integer} (@emph{encoding,video})
941 Set motion estimation bitrate penalty compensation (1.0 = 256).
942
943 @item skip_loop_filter @var{integer} (@emph{decoding,video})
944 @item skip_idct        @var{integer} (@emph{decoding,video})
945 @item skip_frame       @var{integer} (@emph{decoding,video})
946
947 Make decoder discard processing depending on the frame type selected
948 by the option value.
949
950 @option{skip_loop_filter} skips frame loop filtering, @option{skip_idct}
951 skips frame IDCT/dequantization, @option{skip_frame} skips decoding.
952
953 Possible values:
954 @table @samp
955 @item none
956 Discard no frame.
957
958 @item default
959 Discard useless frames like 0-sized frames.
960
961 @item noref
962 Discard all non-reference frames.
963
964 @item bidir
965 Discard all bidirectional frames.
966
967 @item nokey
968 Discard all frames excepts keyframes.
969
970 @item all
971 Discard all frames.
972 @end table
973
974 Default value is @samp{default}.
975
976 @item bidir_refine @var{integer} (@emph{encoding,video})
977 Refine the two motion vectors used in bidirectional macroblocks.
978
979 @item brd_scale @var{integer} (@emph{encoding,video})
980 Downscale frames for dynamic B-frame decision.
981
982 @item keyint_min @var{integer} (@emph{encoding,video})
983 Set minimum interval between IDR-frames.
984
985 @item refs @var{integer} (@emph{encoding,video})
986 Set reference frames to consider for motion compensation.
987
988 @item chromaoffset @var{integer} (@emph{encoding,video})
989 Set chroma qp offset from luma.
990
991 @item trellis @var{integer} (@emph{encoding,audio,video})
992 Set rate-distortion optimal quantization.
993
994 @item sc_factor @var{integer} (@emph{encoding,video})
995 Set value multiplied by qscale for each frame and added to
996 scene_change_score.
997
998 @item mv0_threshold @var{integer} (@emph{encoding,video})
999 @item b_sensitivity @var{integer} (@emph{encoding,video})
1000 Adjust sensitivity of b_frame_strategy 1.
1001
1002 @item compression_level @var{integer} (@emph{encoding,audio,video})
1003 @item min_prediction_order @var{integer} (@emph{encoding,audio})
1004 @item max_prediction_order @var{integer} (@emph{encoding,audio})
1005 @item timecode_frame_start @var{integer} (@emph{encoding,video})
1006 Set GOP timecode frame start number, in non drop frame format.
1007
1008 @item request_channels @var{integer} (@emph{decoding,audio})
1009 Set desired number of audio channels.
1010
1011 @item bits_per_raw_sample @var{integer}
1012 @item channel_layout @var{integer} (@emph{decoding/encoding,audio})
1013
1014 Possible values:
1015 @table @samp
1016 @end table
1017 @item request_channel_layout @var{integer} (@emph{decoding,audio})
1018
1019 Possible values:
1020 @table @samp
1021 @end table
1022 @item rc_max_vbv_use @var{float} (@emph{encoding,video})
1023 @item rc_min_vbv_use @var{float} (@emph{encoding,video})
1024 @item ticks_per_frame @var{integer} (@emph{decoding/encoding,audio,video})
1025 @item color_primaries @var{integer} (@emph{decoding/encoding,video})
1026 @item color_trc @var{integer} (@emph{decoding/encoding,video})
1027 @item colorspace @var{integer} (@emph{decoding/encoding,video})
1028 @item color_range @var{integer} (@emph{decoding/encoding,video})
1029 @item chroma_sample_location @var{integer} (@emph{decoding/encoding,video})
1030
1031 @item log_level_offset @var{integer}
1032 Set the log level offset.
1033
1034 @item slices @var{integer} (@emph{encoding,video})
1035 Number of slices, used in parallelized encoding.
1036
1037 @item thread_type @var{flags} (@emph{decoding/encoding,video})
1038 Select which multithreading methods to use.
1039
1040 Use of @samp{frame} will increase decoding delay by one frame per
1041 thread, so clients which cannot provide future frames should not use
1042 it.
1043
1044 Possible values:
1045 @table @samp
1046 @item slice
1047 Decode more than one part of a single frame at once.
1048
1049 Multithreading using slices works only when the video was encoded with
1050 slices.
1051
1052 @item frame
1053 Decode more than one frame at once.
1054 @end table
1055
1056 Default value is @samp{slice+frame}.
1057
1058 @item audio_service_type @var{integer} (@emph{encoding,audio})
1059 Set audio service type.
1060
1061 Possible values:
1062 @table @samp
1063 @item ma
1064 Main Audio Service
1065 @item ef
1066 Effects
1067 @item vi
1068 Visually Impaired
1069 @item hi
1070 Hearing Impaired
1071 @item di
1072 Dialogue
1073 @item co
1074 Commentary
1075 @item em
1076 Emergency
1077 @item vo
1078 Voice Over
1079 @item ka
1080 Karaoke
1081 @end table
1082
1083 @item request_sample_fmt @var{sample_fmt} (@emph{decoding,audio})
1084 Set sample format audio decoders should prefer. Default value is
1085 @code{none}.
1086
1087 @item pkt_timebase @var{rational number}
1088
1089 @item sub_charenc @var{encoding} (@emph{decoding,subtitles})
1090 Set the input subtitles character encoding.
1091
1092 @item field_order  @var{field_order} (@emph{video})
1093 Set/override the field order of the video.
1094 Possible values:
1095 @table @samp
1096 @item progressive
1097 Progressive video
1098 @item tt
1099 Interlaced video, top field coded and displayed first
1100 @item bb
1101 Interlaced video, bottom field coded and displayed first
1102 @item tb
1103 Interlaced video, top coded first, bottom displayed first
1104 @item bt
1105 Interlaced video, bottom coded first, top displayed first
1106 @end table
1107
1108 @item skip_alpha @var{integer} (@emph{decoding,video})
1109 Set to 1 to disable processing alpha (transparency). This works like the
1110 @samp{gray} flag in the @option{flags} option which skips chroma information
1111 instead of alpha. Default is 0.
1112 @end table
1113
1114 @c man end CODEC OPTIONS
1115
1116 @ifclear config-writeonly
1117 @include decoders.texi
1118 @end ifclear
1119 @ifclear config-readonly
1120 @include encoders.texi
1121 @end ifclear