summaryrefslogtreecommitdiff
path: root/Changelog
Commit message (Collapse)AuthorAgeFilesLines
* update for 5.0.3n5.0.3Michael Niedermayer2023-04-021-0/+52
| | | | Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
* Changelog: updaten5.0.2Michael Niedermayer2022-11-041-0/+5
| | | | Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
* Changelog: updateMichael Niedermayer2022-11-041-0/+42
| | | | Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
* Update for 5.0.2Michael Niedermayer2022-09-011-0/+69
| | | | Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
* Update for 5.0.1n5.0.1Michael Niedermayer2022-04-041-0/+61
| | | | Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
* Changelog: replace <next> by 5.0James Almer2022-01-051-1/+1
| | | | | Signed-off-by: James Almer <jamrial@gmail.com> (cherry picked from commit 746df0a19aab263bdba26d3ea9ca7e05e95b9db6)
* Changelog: add IMF demuxerZane van Iperen2022-01-051-0/+1
| | | | | | Suggested-By: Pierre-Anthony Lemieux <pal@palemieux.com> Signed-off-by: Zane van Iperen <zane@zanevaniperen.com> (cherry picked from commit 21e25d2fe231ba6b9cb9809771ceb5a3f4f90410)
* avfilter: add anlmf filterPaul B Mahol2021-12-251-0/+1
|
* lavc/videotoolboxenc: add ProRes supportrcombs2021-12-221-0/+1
|
* avfilter: add vf_yadif_videotoolboxAman Karmani2021-12-181-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | deinterlaces CVPixelBuffers, i.e. AV_PIX_FMT_VIDEOTOOLBOX frames for example, an interlaced mpeg2 video can be decoded by avcodec, uploaded into a CVPixelBuffer, deinterlaced by Metal, and then encoded to h264 by VideoToolbox as follows: ffmpeg \ -init_hw_device videotoolbox \ -i interlaced.ts \ -vf hwupload,yadif_videotoolbox \ -c:v h264_videotoolbox \ -b:v 2000k \ -c:a copy \ -y progressive.ts (note that uploading AVFrame into CVPixelBuffer via hwupload requires 504c60660d3194758823ddd45ceddb86e35d806f) this work is sponsored by Fancy Bits LLC Reviewed-by: Ridley Combs <rcombs@rcombs.me> Reviewed-by: Philip Langdale <philipl@overt.org> Signed-off-by: Aman Karmani <aman@tmm1.net>
* avfilter: add audio dynamic equalizer filterPaul B Mahol2021-12-121-0/+1
|
* Changelog: update with recent Vulkan filter additionsLynne2021-12-021-0/+2
|
* avfilter: add audio dynamic smooth filterPaul B Mahol2021-12-021-0/+1
|
* avfilter: add audio spectral stats filterPaul B Mahol2021-12-021-0/+1
|
* configure: Add support for loongarch.Shiyou Yin2021-12-011-0/+1
| | | | | | | | | | | | For la464 cpu: ./configure --cpu=la464 With cross-compiler: ./configure --cross-prefix=loongarch64-linux-gnu- \ --enable-cross-compile --arch=loongarch64 \ --target-os=linux --cpu=la464 Reviewed-by: 陈昊 <chenhao@loongson.cn> Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
* lavc/proresdec: add videotoolbox hwaccelrcombs2021-11-281-0/+1
|
* lavc/videotoolbox: add VP9 hardware accelerationrcombs2021-11-281-0/+1
| | | | On M1 Max, this supports profiles 0 and 2, but not 1 and 3.
* avcodec: suppport for bitpacked encodeLimin Wang2021-11-251-0/+1
| | | | | Reviewed-by: Lynne <dev@lynne.ee> Signed-off-by: Limin Wang <lance.lmwang@gmail.com>
* avformat/rtpenc: adds partial support for the RFC 4175Limin Wang2021-11-251-0/+1
| | | | | Reviewed-by: Lynne <dev@lynne.ee> Signed-off-by: Limin Wang <lance.lmwang@gmail.com>
* avfilter: add colorspectrum source video filterPaul B Mahol2021-11-161-0/+1
|
* avfilter: add huesaturation filterPaul B Mahol2021-10-291-0/+1
|
* avfilter: add varblur video filterPaul B Mahol2021-10-191-0/+1
|
* avfilter: add xcorrelate video filterPaul B Mahol2021-10-131-0/+1
|
* avfilter: add limitdiff video filterPaul B Mahol2021-10-131-0/+1
|
* avcodec: add native Speex decoderPaul B Mahol2021-10-101-0/+1
|
* avfilter: add audio signal to distortion ratio filterPaul B Mahol2021-10-091-0/+1
|
* avcodec: GEM Raster image decoderPeter Ross2021-10-081-0/+1
| | | | | Reviewed-by: Paul B Mahol <onemda@gmail.com> Signed-off-by: Peter Ross <pross@xvid.org>
* avfilter: add (a)latency filtersPaul B Mahol2021-10-021-0/+1
|
* avcodec: add amr parserPaul B Mahol2021-10-021-0/+1
|
* avfilter: add morpho filterPaul B Mahol2021-09-281-0/+1
|
* avfilter: add audio psychoacoustic clipperPaul B Mahol2021-09-111-0/+1
|
* avfilter/vf_convolution: add scharr operatorPaul B Mahol2021-09-101-0/+1
|
* avcodec/siren: MSN Siren decoderPeter Ross2021-09-071-0/+1
| | | | | Reviewed-by: Paul B Mahol <onemda@gmail.com> Signed-off-by: Peter Ross <pross@xvid.org>
* sws: implement slice threadingAnton Khirnov2021-09-061-0/+1
|
* avformat: add an AV1 Low overhead bitstream format muxerJames Almer2021-09-011-0/+1
| | | | | Suggested-by: BBB Signed-off-by: James Almer <jamrial@gmail.com>
* avfilter: add grayworld video filterPaul Buxton2021-08-291-0/+1
| | | | | | | | Implements a gray world color correction algorithm using a log scale LAB colorspace. Signed-off-by: Paul Buxton <paulbuxton.mail@googlemail.com> Signed-off-by: Paul B Mahol <onemda@gmail.com>
* avfilter: add atilt filterPaul B Mahol2021-08-281-0/+1
|
* avfilter: add adecorrelate filterPaul B Mahol2021-08-281-0/+1
|
* avfilter: add hsvkey and hsvhold video filtersPaul B Mahol2021-08-251-0/+1
|
* avcodec: add SMC encoderPaul B Mahol2021-08-181-0/+1
|
* avfilter: add (a)segment filtersPaul B Mahol2021-08-161-0/+1
|
* avfilter: add afwtdn filterPaul B Mahol2021-07-241-0/+1
|
* avformat: add a concat protocol that takes a line break delimited list of ↵James Almer2021-07-021-0/+1
| | | | | | | | resources Suggested-by: ffmpeg@fb.com Reviewed-by: Nicolas George <george@nsup.org> Signed-off-by: James Almer <jamrial@gmail.com>
* avformat: add Argonaut Games CVG muxerZane van Iperen2021-05-121-0/+1
| | | | Signed-off-by: Zane van Iperen <zane@zanevaniperen.com>
* avformat: add Argonaut Games CVG demuxerZane van Iperen2021-05-121-0/+1
| | | | Signed-off-by: Zane van Iperen <zane@zanevaniperen.com>
* avcodec: Implement Acorn Replay IMA ADPCM decoderCameron Cawley2021-05-091-0/+1
| | | | Signed-off-by: Zane van Iperen <zane@zanevaniperen.com>
* avformat/westwoodaudenc: Adds muxer for Westwood AUD format.Aidan Richmond2021-04-261-0/+1
| | | | | | | | Format is still used by modders of these old games. Reviewed-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com> Signed-off-by: Aidan Richmond <aidan.is@hotmail.co.uk> Signed-off-by: Zane van Iperen <zane@zanevaniperen.com>
* avcodec/adpcmenc: Adds encoder for Westwood ADPCM.Aidan Richmond2021-04-261-0/+1
| | | | | Signed-off-by: Aidan Richmond <aidan.is@hotmail.co.uk> Signed-off-by: Zane van Iperen <zane@zanevaniperen.com>
* Changelog: Add new <next> line after 4.4Michael Niedermayer2021-04-091-0/+3
| | | | Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
* Changelog: replace <next> by 4.4Michael Niedermayer2021-04-091-1/+1
| | | | | Found-by: <jamrial> Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>