]> git.sesse.net Git - ffmpeg/blob - doc/libswscale.texi
Merge commit 'c74f81786d434dfaf9b3dff06aa96bfd23d0127b'
[ffmpeg] / doc / libswscale.texi
1 \input texinfo @c -*- texinfo -*-
2
3 @settitle Libswscale Documentation
4 @titlepage
5 @center @titlefont{Libswscale Documentation}
6 @end titlepage
7
8 @top
9
10 @contents
11
12 @chapter Description
13 @c man begin DESCRIPTION
14
15 The libswscale library performs highly optimized image scaling and
16 colorspace and pixel format conversion operations.
17
18 Specifically, this library performs the following conversions:
19
20 @itemize
21 @item
22 @emph{Rescaling}: is the process of changing the video size. Several
23 rescaling options and algorithms are available. This is usually a
24 lossy process.
25
26 @item
27 @emph{Pixel format conversion}: is the process of converting the image
28 format and colorspace of the image, for example from planar YUV420P to
29 RGB24 packed. It also handles packing conversion, that is converts
30 from packed layout (all pixels belonging to distinct planes
31 interleaved in the same buffer), to planar layout (all samples
32 belonging to the same plane stored in a dedicated buffer or "plane").
33
34 This is usually a lossy process in case the source and destination
35 colorspaces differ.
36 @end itemize
37
38 @c man end DESCRIPTION
39
40 @ignore
41
42 @setfilename libswscale
43 @settitle video scaling and pixel format conversion library
44
45 @c man begin SEEALSO
46 ffmpeg(1), ffplay(1), ffprobe(1), ffserver(1), ffmpeg-scaler(1), libavutil(3)
47 @c man end
48
49 @c man begin AUTHORS
50 See Git history (git://source.ffmpeg.org/ffmpeg)
51 @c man end
52
53 @end ignore
54
55 @bye