Mercurial > hg > pmhd
annotate ffmpeg/doc/libswscale.pod @ 13:844d341cf643 tip
Back up before ISMIR
author | Yading Song <yading.song@eecs.qmul.ac.uk> |
---|---|
date | Thu, 31 Oct 2013 13:17:06 +0000 |
parents | 6840f77b83aa |
children |
rev | line source |
---|---|
yading@10 | 1 =head1 NAME |
yading@10 | 2 |
yading@10 | 3 libswscale - video scaling and pixel format conversion library |
yading@10 | 4 |
yading@10 | 5 =head1 DESCRIPTION |
yading@10 | 6 |
yading@10 | 7 |
yading@10 | 8 The libswscale library performs highly optimized image scaling and |
yading@10 | 9 colorspace and pixel format conversion operations. |
yading@10 | 10 |
yading@10 | 11 Specifically, this library performs the following conversions: |
yading@10 | 12 |
yading@10 | 13 |
yading@10 | 14 =over 4 |
yading@10 | 15 |
yading@10 | 16 |
yading@10 | 17 =item * |
yading@10 | 18 |
yading@10 | 19 I<Rescaling>: is the process of changing the video size. Several |
yading@10 | 20 rescaling options and algorithms are available. This is usually a |
yading@10 | 21 lossy process. |
yading@10 | 22 |
yading@10 | 23 |
yading@10 | 24 =item * |
yading@10 | 25 |
yading@10 | 26 I<Pixel format conversion>: is the process of converting the image |
yading@10 | 27 format and colorspace of the image, for example from planar YUV420P to |
yading@10 | 28 RGB24 packed. It also handles packing conversion, that is converts |
yading@10 | 29 from packed layout (all pixels belonging to distinct planes |
yading@10 | 30 interleaved in the same buffer), to planar layout (all samples |
yading@10 | 31 belonging to the same plane stored in a dedicated buffer or "plane"). |
yading@10 | 32 |
yading@10 | 33 This is usually a lossy process in case the source and destination |
yading@10 | 34 colorspaces differ. |
yading@10 | 35 |
yading@10 | 36 =back |
yading@10 | 37 |
yading@10 | 38 |
yading@10 | 39 |
yading@10 | 40 |
yading@10 | 41 =head1 SEE ALSO |
yading@10 | 42 |
yading@10 | 43 |
yading@10 | 44 |
yading@10 | 45 ffmpeg(1), ffplay(1), ffprobe(1), ffserver(1), |
yading@10 | 46 ffmpeg-scaler(1), |
yading@10 | 47 libavutil(3) |
yading@10 | 48 |
yading@10 | 49 |
yading@10 | 50 =head1 AUTHORS |
yading@10 | 51 |
yading@10 | 52 |
yading@10 | 53 The FFmpeg developers. |
yading@10 | 54 |
yading@10 | 55 For details about the authorship, see the Git history of the project |
yading@10 | 56 (git://source.ffmpeg.org/ffmpeg), e.g. by typing the command |
yading@10 | 57 B<git log> in the FFmpeg source directory, or browsing the |
yading@10 | 58 online repository at E<lt>B<http://source.ffmpeg.org>E<gt>. |
yading@10 | 59 |
yading@10 | 60 Maintainers for the specific components are listed in the file |
yading@10 | 61 F<MAINTAINERS> in the source code tree. |
yading@10 | 62 |
yading@10 | 63 |
yading@10 | 64 |