Go to file
Andreas Rheinhardt 7710283570 tests/checkasm/svq1enc: Use proper range for input
ssd_int8_vs_int16 is only called from encode_block()
in svq1enc.c; it calls it in stages: At stage 0,
the int16_t array contains the difference of two
uint16_t. At each of the following stages, the
int16_t array is filled by subtracting an int8_t from
the current stage's int16_t array. The maximum stage
is five, so the int16_t are in the range
(-255 - 5 * 127)..(255 + 5 * 128).

This commit modifies the checkasm test to only use
values from this range, fixing (undefined) integer overflow
in the test.

Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Signed-off-by: Paul B Mahol <onemda@gmail.com>
2024-05-09 19:04:11 +02:00
compat avutil/common: Don't auto-include mem.h 2024-04-01 19:51:37 +02:00
doc avfilter/f_select.c: add support for iw and ih variables 2024-05-09 19:04:09 +02:00
ffbuild ffbuild/libversion.sh: add shebang 2024-04-10 01:21:07 +02:00
fftools fftools/ffprobe: Avoid overflow when calculating DAR 2024-05-06 19:53:13 +02:00
libavcodec avcodec/evc: Reference to ISO_IEC_23094-1-2020 document section for EVC_MAX_APS_COUNT enum has been fixed 2024-05-09 19:04:11 +02:00
libavdevice lavd/v4l2: Use proper field type for second parameter of ioctl() with BSD's 2024-05-09 19:04:09 +02:00
libavfilter avfilter/f_select.c: add support for iw and ih variables 2024-05-09 19:04:09 +02:00
libavformat avformat/avi: Added EVC codec tag to the list of supported codec_id-codec_tag pairs for AVI muxer 2024-05-09 19:04:10 +02:00
libavutil lavu/riscv: fix build without <sys/hwprobe.h> 2024-05-09 19:04:08 +02:00
libswresample avutil/common: Don't auto-include mem.h 2024-04-01 19:51:37 +02:00
libswscale swscale/output: Fix integer overflow in yuv2rgba64_full_1_c_template() 2024-05-06 19:53:15 +02:00
presets
tests tests/checkasm/svq1enc: Use proper range for input 2024-05-09 19:04:11 +02:00
tools tools: add target_enc_fuzzer.c 2024-04-24 22:10:39 +02:00
.gitattributes
.gitignore
.mailmap .mailmap: Update my mailmap entry 2024-02-24 15:27:54 +01:00
Changelog lavc/qsvenc: add support for oneVPL string API 2024-05-07 17:54:27 +02:00
configure configure: Add missing identity filter->scene_sad dependency 2024-05-09 19:04:08 +02:00
CONTRIBUTING.md
COPYING.GPLv2
COPYING.GPLv3
COPYING.LGPLv2.1
COPYING.LGPLv3
CREDITS
INSTALL.md
LICENSE.md
Makefile tools: add target_enc_fuzzer.c 2024-04-24 22:10:39 +02:00
README.md
RELEASE RELEASE: update after 7.0 branch 2024-04-03 17:29:51 +02:00

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.