mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2026-08-12 22:16:21 +00:00
9fbb03f4284be528037a98b11ef238e2739bda69
Clean up the output by not printing the flags and range values of
unused components in ff_sws_op_list_print().
rgb24 -> gray16le:
[ u8 XXXX -> +++X] SWS_OP_READ : 3 elem(s) packed >> 0
- min: {0, 0, 0, nan}, max: {255, 255, 255, nan}
+ min: {0, 0, 0, _}, max: {255, 255, 255, _}
[ u8 ...X -> +++X] SWS_OP_CONVERT : u8 -> f32
- min: {0, 0, 0, nan}, max: {255, 255, 255, nan}
- [f32 ...X -> .++X] SWS_OP_LINEAR : dot3 [[76.843000 150.859000 29.298000 0 0] [0 1 0 0 0] [0 0 1 0 0] [0 0 0 1 0]]
- min: {0, 0, 0, nan}, max: {65535, 255, 255, nan}
- [f32 .XXX -> +++X] SWS_OP_CONVERT : f32 -> u16
- min: {0, 0, 0, nan}, max: {65535, 255, 255, nan}
- [u16 .XXX -> +++X] SWS_OP_WRITE : 1 elem(s) planar >> 0
- min: {0, 0, 0, nan}, max: {65535, 255, 255, nan}
+ min: {0, 0, 0, _}, max: {255, 255, 255, _}
+ [f32 ...X -> .XXX] SWS_OP_LINEAR : dot3 [[76.843000 150.859000 29.298000 0 0] [0 1 0 0 0] [0 0 1 0 0] [0 0 0 1 0]]
+ min: {0, _, _, _}, max: {65535, _, _, _}
+ [f32 .XXX -> +XXX] SWS_OP_CONVERT : f32 -> u16
+ min: {0, _, _, _}, max: {65535, _, _, _}
+ [u16 .XXX -> +XXX] SWS_OP_WRITE : 1 elem(s) planar >> 0
+ min: {0, _, _, _}, max: {65535, _, _, _}
(X = unused, z = byteswapped, + = exact, 0 = zero)
Sponsored-by: Sovereign Tech Fund
Signed-off-by: Ramiro Polla <ramiro.polla@gmail.com>
…
…
FFmpeg README
FFmpeg is a collection of libraries and tools to process multimedia content such as audio, video, subtitles and related metadata.
Libraries
libavcodecprovides implementation of a wider range of codecs.libavformatimplements streaming protocols, container formats and basic I/O access.libavutilincludes hashers, decompressors and miscellaneous utility functions.libavfilterprovides means to alter decoded audio and video through a directed graph of connected filters.libavdeviceprovides an abstraction to access capture and playback devices.libswresampleimplements audio mixing and resampling routines.libswscaleimplements color conversion and scaling routines.
Tools
- ffmpeg is a command line toolbox to manipulate, convert and stream multimedia content.
- ffplay is a minimalistic multimedia player.
- ffprobe is a simple analysis tool to inspect multimedia content.
- Additional small tools such as
aviocat,ismindexandqt-faststart.
Documentation
The offline documentation is available in the doc/ directory.
The online documentation is available in the main website and in the wiki.
Examples
Coding examples are available in the doc/examples directory.
License
FFmpeg codebase is mainly LGPL-licensed with optional components licensed under GPL. Please refer to the LICENSE file for detailed information.
Contributing
Patches should be submitted to the ffmpeg-devel mailing list using
git format-patch or git send-email. Github pull requests should be
avoided because they are not part of our review process and will be ignored.
Languages
C
88.9%
Assembly
8.4%
Makefile
1.4%
GLSL
0.4%
C++
0.3%
Other
0.4%