Go to file
Anton Khirnov ef89db7fb6 fftools/cmdutils: put stream specifier handling back into cmdutils
Stream specifiers were originally designed exclusively for CLI use and
were not intended to be public API. Handling them in avformat places
major restrictions on how they are used. E.g. if ffmpeg CLI wishes to
override some stream parameters, it has to change the demuxer fields
(since avformat_match_stream_specifier() does not have access to
anything else). However, such fields are supposed to be read-only for
the caller.

Furthermore having this code in avformat restricts extending the
specifier syntax. An example of such an extension will be added in
following commits.

Signed-off-by: Paul B Mahol <onemda@gmail.com>
2024-08-15 10:48:36 +02:00
compat
doc libavutil: deprecate the old Vulkan queue API, add doc/APIchanges entries 2024-08-15 10:48:33 +02:00
ffbuild
fftools fftools/cmdutils: put stream specifier handling back into cmdutils 2024-08-15 10:48:36 +02:00
libavcodec avcodec/avcodec_internal: fix type definition for the new functions 2024-08-15 10:48:36 +02:00
libavdevice avdevice/dshow: Initialize 2 pointers 2024-08-15 10:48:35 +02:00
libavfilter avfilter/video: don't zero allocated buffers if memory poisoning is used 2024-08-15 10:48:35 +02:00
libavformat avformat/movenc: don't look at previous track_id as it may not be set 2024-08-15 10:48:36 +02:00
libavutil hwcontext_vulkan: ignore false positive validation errors 2024-08-15 10:48:33 +02:00
libswresample
libswscale sws/riscv: depend on RVB and simplify accordingly 2024-08-15 10:48:30 +02:00
presets
tests tests/iamf: match stream group by id in some tests 2024-08-15 10:48:35 +02:00
tools tools/target_dec_fuzzer: Use av_buffer_allocz() to avoid missing slices to have unpredictable content 2024-08-15 10:48:31 +02:00
.gitattributes
.gitignore
.mailmap mailmap: add entry for myself 2024-07-24 00:53:39 +02:00
Changelog
configure configure: check if assembler supports RV zicbop 2024-07-31 17:43:44 +02:00
CONTRIBUTING.md
COPYING.GPLv2
COPYING.GPLv3
COPYING.LGPLv2.1
COPYING.LGPLv3
CREDITS
INSTALL.md
LICENSE.md
Makefile add tools/target_swr_fuzzer 2024-08-15 10:48:31 +02:00
README.md
RELEASE

Librempeg README

Librempeg 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.

Examples

Coding examples are available in the doc/examples directory.

License

Librempeg codebase is mainly LGPL-licensed with optional components licensed under GPL. Please refer to the LICENSE file for detailed information.

Contributing

Contributing can be done via Github pull requests.