Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2022-08-31Update for 5.1.1n5.1.1Michael Niedermayer
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
2022-07-10avfilter: add chromakey_cuda filterMohamed Khaled Mohamed
GSoC'22 libavfilter/vf_chromakey_cuda.cu:the CUDA kernel for the filter libavfilter/vf_chromakey_cuda.c: the C side that calls the kernel and gets user input libavfilter/allfilters.c: added the filter to it libavfilter/Makefile: added the filter to it cuda/cuda_runtime.h: added two math CUDA functions that are used in the filter Signed-off-by: Timo Rothenpieler <timo@rothenpieler.org>
2022-07-07avfilter: add remap opencl filterPaul B Mahol
2022-07-03avcodec: add PHM decoder and encoderPaul B Mahol
2022-06-25AV1 VDPAU hwaccel Decode supportManojGuptaBonda
Support for VDPAU accelerated AV1 decoding was added with libvdpau-1.5. Support for the same in ffmpeg is added with this patch. Profiles related to VDPAU AV1 can be found in latest vdpau.h present in libvdpau-1.5. Add AV1 VDPAU to list of hwaccels and supported formats Added file vdpau_av1.c and Modified configure to add VDPAU AV1 support. Mapped AV1 profiles to VDPAU AV1 profiles. Populated the codec specific params that need to be passed to VDPAU. Signed-off-by: Philip Langdale <philipl@overt.org>
2022-06-16avfilter: add virtualbass filterPaul B Mahol
2022-06-13ffprobe: add -o optionStefano Sabatini
This enables printing to a resource specified with -o OUTPUT. In case the output is not specified, prints to stdout as usual. Address issue: http://trac.ffmpeg.org/ticket/8024 Signed-off-by: Marton Balint <cus@passwd.hu>
2022-06-05avcodec: add QOI decoder and demuxer and parser and encoder and muxerPaul B Mahol
2022-05-29avfilter: add tiltshelf audio filterPaul B Mahol
2022-05-26Changelog: Add line for IPFSMichael Niedermayer
Noticed-and-suggested-by: Mark Gaiser <markg85@gmail.com> Reviewed-by: Mark Gaiser <markg85@gmail.com> Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
2022-05-24avfilter: Add blockdetect filterThilo Borgmann
2022-05-10lavc/pgs_frame_merge_bsf: add bsf to merge PGS segmentsJohn Stebbins
Required to remux m2ts to mkv Minor changes and porting to FFBitStreamFilter done by the committer. Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
2022-05-05avfilter: add multiply video filterPaul B Mahol
2022-04-25lavfi: Add blurdetect filterThilo Borgmann
2022-04-23avfilter: add colorchart video filterPaul B Mahol
2022-04-23avfilter: add colormap video filterPaul B Mahol
2022-04-14avfilter: add pixelize video filterPaul B Mahol
2022-04-14avfilter: add feedback video filterPaul B Mahol
2022-04-12avfilter: add Audio Video Sync Test filterPaul B Mahol
Signed-off-by: Paul B Mahol <onemda@gmail.com>
2022-04-10avcodec/vbnenc: add VBN encoderMarton Balint
Signed-off-by: Marton Balint <cus@passwd.hu>
2022-04-10avcodec/vbndec: add VBN decoderMarton Balint
Add support for decoding Vizrt Binary Image (VBN) files. LZW-compressed data is not supported yet. Signed-off-by: Marton Balint <cus@passwd.hu>
2022-04-01lavfilter: Add SITI filterBoris Baracaldo
Calculate Spatial Info (SI) and Temporal Info (TI) scores for a video, as defined in ITU-T P.910: Subjective video quality assessment methods for multimedia applications.
2022-03-10avformat: add DFPWM raw formatJack Bruienne
This patch builds on my previous DFPWM codec patch, adding a raw audio format to be able to read/write the raw files that are most commonly used (as no other container format supports it yet). The muxers are mostly copied from the PCM demuxer and the raw muxers, as DFPWM is typically stored as raw data. Please see the previous patch for more information on DFPWM. Signed-off-by: Jack Bruienne <jackbruienne@gmail.com>
2022-03-10avcodec: add DFPWM1a codecJack Bruienne
From the wiki page (https://wiki.vexatos.com/dfpwm): > DFPWM (Dynamic Filter Pulse Width Modulation) is an audio codec > created by Ben “GreaseMonkey” Russell in 2012, originally to be used > as a voice codec for asiekierka's pixmess, a C remake of 64pixels. > It is a 1-bit-per-sample codec which uses a dynamic-strength one-pole > low-pass filter as a predictor. Due to the fact that a raw DPFWM decoding > creates a high-pitched whine, it is often followed by some post-processing > filters to make the stream more listenable. It has recently gained popularity through the ComputerCraft mod for Minecraft, which added support for audio through this codec, as well as the Computronics expansion which preceeded the official support. These both implement the slightly adjusted 1a version of the codec, which is the version I have chosen for this patch. This patch adds a new codec (with encoding and decoding) for DFPWM1a. The codec sources are pretty simple: they use the reference codec with a basic wrapper to connect it to the FFmpeg AVCodec system. To clarify, the codec does not have a specific sample rate - it is provided by the container (or user), which is typically 48000, but has also been known to be 32768. The codec does not specify channel info either, and it's pretty much always used with one mono channel. However, since it appears that libavcodec expects both sample rate and channel count to be handled by either the codec or container, I have made the decision to allow multiple channels interleaved, which as far as I know has never been used, but it works fine here nevertheless. The accompanying raw format has a channels option to set this. (I expect most users of this will not use multiple channels, but it remains an option just in case.) This patch will be highly useful to ComputerCraft developers who are working with audio, as it is the standard format for audio, and there are few user-friendly encoders out there, and even fewer decoders. It will streamline the process for importing and listening to audio, replacing the need to write code or use tools that require very specific input formats. You may use the CraftOS-PC program (https://www.craftos-pc.cc) to test out DFPWM playback. To use it, run the program and type this command: "attach left speaker" Then run "speaker play <file.dfpwm>" for each file. The app runs in a sandbox, so files have to be transferred in first; the easiest way to do this is to simply drag the file on the window. (Or copy files to the folder at https://www.craftos-pc.cc/docs/saves.) Sample DFPWM files can be generated with an online tool at https://music.madefor.cc. This is the current best way to encode DFPWM files. Simply drag an audio file onto the page, and it will encode it, giving a download link on the page. I've made sure to update all of the docs as per Developer§7, and I've tested it as per section 8. Test files encoded to DFPWM play correctly in ComputerCraft, and other files that work in CC are correctly decoded. I have also verified that corrupt files do not crash the decoder - this should theoretically not be an issue as the result size is constant with respect to the input size. Signed-off-by: Jack Bruienne <jackbruienne@gmail.com>
2022-03-06avcodec: add pcm-bluray encoderPaul B Mahol
2022-02-15lavc/mpeg*: drop the XvMC hwaccel codeAnton Khirnov
XvMC was last relevant over 10 years ago, if ever. There is no reason to use it today.
2022-02-12avfilter: add dialogue enhance audio filterPaul B Mahol
2022-01-05Changelog: Add new <next> line after 5.0James Almer
Signed-off-by: James Almer <jamrial@gmail.com>
2022-01-05Changelog: replace <next> by 5.0James Almer
Signed-off-by: James Almer <jamrial@gmail.com>
2022-01-05Changelog: add IMF demuxerZane van Iperen
Suggested-By: Pierre-Anthony Lemieux <pal@palemieux.com> Signed-off-by: Zane van Iperen <zane@zanevaniperen.com>
2021-12-25avfilter: add anlmf filterPaul B Mahol
2021-12-23lavc/videotoolboxenc: add ProRes supportrcombs
2021-12-18avfilter: add vf_yadif_videotoolboxAman Karmani
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>
2021-12-12avfilter: add audio dynamic equalizer filterPaul B Mahol
2021-12-02Changelog: update with recent Vulkan filter additionsLynne
2021-12-02avfilter: add audio dynamic smooth filterPaul B Mahol
2021-12-02avfilter: add audio spectral stats filterPaul B Mahol
2021-12-01configure: Add support for loongarch.Shiyou Yin
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>
2021-11-29lavc/proresdec: add videotoolbox hwaccelrcombs
2021-11-29lavc/videotoolbox: add VP9 hardware accelerationrcombs
On M1 Max, this supports profiles 0 and 2, but not 1 and 3.
2021-11-25avcodec: suppport for bitpacked encodeLimin Wang
Reviewed-by: Lynne <dev@lynne.ee> Signed-off-by: Limin Wang <lance.lmwang@gmail.com>
2021-11-25avformat/rtpenc: adds partial support for the RFC 4175Limin Wang
Reviewed-by: Lynne <dev@lynne.ee> Signed-off-by: Limin Wang <lance.lmwang@gmail.com>
2021-11-16avfilter: add colorspectrum source video filterPaul B Mahol
2021-10-30avfilter: add huesaturation filterPaul B Mahol
2021-10-19avfilter: add varblur video filterPaul B Mahol
2021-10-13avfilter: add xcorrelate video filterPaul B Mahol
2021-10-13avfilter: add limitdiff video filterPaul B Mahol
2021-10-10avcodec: add native Speex decoderPaul B Mahol
2021-10-09avfilter: add audio signal to distortion ratio filterPaul B Mahol
2021-10-08avcodec: GEM Raster image decoderPeter Ross
Reviewed-by: Paul B Mahol <onemda@gmail.com> Signed-off-by: Peter Ross <pross@xvid.org>