comparison DOCS/man/en/mplayer.1 @ 12338:d313869f6b31

document harddup and softskip
author rfelker
date Wed, 28 Apr 2004 04:40:37 +0000
parents 343568042bfa
children 0e016f036116
comparison
equal deleted inserted replaced
12337:6f1b4c989914 12338:d313869f6b31
2894 scanline, the luma and chroma data both come from the same field. 2894 scanline, the luma and chroma data both come from the same field.
2895 The optional argument selects the sampling mode. 2895 The optional argument selects the sampling mode.
2896 By default, linear interpolation (mode 1) is used. 2896 By default, linear interpolation (mode 1) is used.
2897 Mode 0 uses nearest-neighbor sampling, which is fast but incorrect. 2897 Mode 0 uses nearest-neighbor sampling, which is fast but incorrect.
2898 .TP 2898 .TP
2899 .B harddup
2900 Only useful with MEncoder.
2901 If harddup is used when encoding, it will force duplicate frames to be
2902 encoded in the output.
2903 This uses slightly more space, but is necessary for output to MPEG
2904 files or if you plan to demux and remux the video stream after
2905 encoding.
2906 Should be placed at or near the end of the filter chain unless you
2907 have a good reason to do otherwise.
2908 .TP
2909 .B softskip
2910 Only useful with MEncoder.
2911 Softskip moves the frame skipping (dropping) step of encoding from
2912 before the filter chain to some point during the filter chain.
2913 This allows filters which need to see all frames (inverse telecine,
2914 temporal denoising, etc.) to function properly.
2915 Should be placed after the filters which need to see all frames and
2916 before any subsequent filters that are cpu-intensive.
2917 .TP
2899 .B decimate[=max:hi:lo:frac] 2918 .B decimate[=max:hi:lo:frac]
2900 Drops frames that don't differ greatly from the previous frame in 2919 Drops frames that don't differ greatly from the previous frame in
2901 order to reduce framerate. 2920 order to reduce framerate.
2902 The argument max (if positive) sets the maximum number of consecutive 2921 The argument max (if positive) sets the maximum number of consecutive
2903 frames which can be dropped, or (if negative) the minimum interval 2922 frames which can be dropped, or (if negative) the minimum interval