No description
Find a file
Andreas Rheinhardt 2ca072e168 avcodec/vp3: Remove always-false checks
The dimensions are only set at two places: theora_decode_header()
and vp3_decode_init(). These functions are called during init
and during dimension changes, but the latter is only supported
(and attempted) when frame threading is not active. This implies that
the dimensions of the various worker threads in
vp3_update_thread_context() always coincide, so that these checks
are dead and can be removed.

(These checks would of course need to be removed when support
for dimension changes during frame threading is implemented;
and in any case, a dimension change is not an error.)

Reviewed-by: Peter Ross <pross@xvid.org>
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
2025-11-27 11:33:00 +01:00
.forgejo forgejo/workflows: make test shared/static mode more human readable 2025-11-26 23:21:11 +00:00
compat fftools: Fix MediaCodec on Android15+ 2025-11-23 12:53:43 +00:00
doc avfilter/buffersrc: add av_buffersrc_get_status() 2025-11-26 13:15:16 +00:00
ffbuild ffbuild/common: silence DEPCXX output 2025-10-25 11:15:06 +02:00
fftools fftools/ffmpeg_filter: close all no-longer needed inputs 2025-11-26 13:15:16 +00:00
libavcodec avcodec/vp3: Remove always-false checks 2025-11-27 11:33:00 +01:00
libavdevice avdevice/lavfi: stop setting deprecated buffersink options 2025-11-13 21:02:10 -03:00
libavfilter avfilter/buffersrc: add av_buffersrc_get_status() 2025-11-26 13:15:16 +00:00
libavformat avformat/iamf_parse: ensure the stream count in a scalable channel representation is equal to the audio element's stream count 2025-11-26 12:01:17 -03:00
libavutil ffv1enc_vulkan: add support for x2bgr10/x2rgb10 2025-11-26 15:16:40 +01:00
libswresample av{codec,util}/tests: Remove pointless undefs 2025-11-24 16:48:31 +01:00
libswscale swscale: Remove the unused ff_sws_pixel_type_to_uint 2025-11-21 21:07:34 +00:00
presets presets: remove moldering iPod presets 2014-06-17 16:15:04 -08:00
tests avfilter/vf_drawvg: round color values to avoid differences on some platforms 2025-11-25 22:32:50 +01:00
tools tools: Make indent_arm_assembly.pl able to reformat a file in place 2025-11-24 23:02:05 +02:00
.gitattributes gitattributes: End merge conflicts in Changelog 2025-03-17 15:26:10 +01:00
.gitignore .gitignore: Add config_components.asm 2025-11-02 13:10:58 +00:00
.mailmap mailmap: add entry for myself 2025-08-08 21:51:15 +00:00
Changelog avcodec/rkmppenc: add h264/hevc rkmpp encoder 2025-11-27 15:54:49 +08:00
configure avcodec/rkmppenc: add h264/hevc rkmpp encoder 2025-11-27 15:54:49 +08:00
CONTRIBUTING.md Add CONTRIBUTING.md 2016-09-18 10:02:13 +01:00
COPYING.GPLv2
COPYING.GPLv3
COPYING.LGPLv2.1 all: fix whitespace/new-line issues 2025-08-03 13:48:47 +02:00
COPYING.LGPLv3
CREDITS Use https for repository links 2023-03-01 21:59:10 +01:00
FUNDING.json Add FUNDING.json 2025-06-23 14:48:40 +02:00
INSTALL.md all: fix typos found by codespell 2025-08-03 13:48:47 +02:00
LICENSE.md Remove libpostproc 2025-05-07 15:35:47 +02:00
MAINTAINERS MAINTAINERS: Update the entries for AMF 2025-10-28 21:06:37 +00:00
Makefile Makefile: remove config_components.asm on distclean 2025-11-20 21:20:24 +00:00
README.md README: fix typo and description of libavfilter 2021-10-08 09:44:34 +05:30
RELEASE RELEASE: update to 8.0 2025-08-14 08:42:29 -04:00

FFmpeg README

FFmpeg is a collection of libraries and tools to process multimedia content such as audio, video, subtitles and related metadata.

Libraries

  • libavcodec provides implementation of a wider range of codecs.
  • libavformat implements streaming protocols, container formats and basic I/O access.
  • libavutil includes hashers, decompressors and miscellaneous utility functions.
  • libavfilter provides means to alter decoded audio and video through a directed graph of connected filters.
  • libavdevice provides an abstraction to access capture and playback devices.
  • libswresample implements audio mixing and resampling routines.
  • libswscale implements 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, ismindex and qt-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.