libav
libav copied to clipboard
Libav github mirror, clone of git://git.libav.org/libav
Is this some Joke I don't understand?
The order of the picture formats is inverted in the `output.c` example. This corrects them, and also replaces numerous direct uses of PIX_FMT_YUV420 with one constant.
This PR hides deprecated VPX_IMG_FMTs in VPX_IMAGE_ABI_VERSION 5. Please compare: [v1.7.0](https://github.com/webmproject/libvpx/blob/v1.7.0/vpx/vpx_image.h) and [v1.8.0](https://github.com/webmproject/libvpx/blob/v1.8.0/vpx/vpx_image.h)
This pull request parallelizes the encoding of outputs (every output is being encoded and written on a separate thread).
This fixes a segfault (originally found in Movian, but traced to libav) when decoding subtitles because only an array of rects is allocated, but not the actual structs it contains....
Fix for setting total tracks number in metadata Same issue was fixed in ffmpeg: https://github.com/macoscope/ffmpeg/commit/bb7f71d9b6aedf8e83061e326f09843fd21fcbce
**CVE**: CVE-2018-1999011 **Original description**: FFmpeg before commit 2b46ebdbff1d8dec7a3d8ea280a612b91a582869 contains a Buffer Overflow vulnerability in asf_o format demuxer that can result in heap-buffer-overflow that may result in remote code execution. This...
In the libavfilter/vf_yadif.c file, within the get_video_buffer function, there is a possible null pointer dereference: ` frame = ff_default_get_video_buffer(link, width, height); frame->width = w; frame->height = h; ` However, this...