Git Inbox Mirror of the ffmpeg-devel mailing list - see https://ffmpeg.org/mailman/listinfo/ffmpeg-devel
 help / color / mirror / Atom feed
[FFmpeg-devel] [PATCH v3] ffmpeg CLI multithreading
 2023-12-06 10:27 UTC  (4+ messages) - mbox.gz / Atom
` [FFmpeg-devel] [PATCH 01/10] fftools/ffmpeg_filter: make sub2video heartbeat more robust
` [FFmpeg-devel] [PATCH 02/10] fftools/ffmpeg_filter: move filtering to a separate thread
` [FFmpeg-devel] [PATCH 03/10] fftools/ffmpeg_filter: buffer sub2video heartbeat frames like other frames

[FFmpeg-devel] [PATCH] tests/fate: add pixelize filter tests
 2023-12-06 10:20 UTC  - mbox.gz / Atom

[FFmpeg-devel] [ANNOUNCE] upcoming vote: TC/CC elections
 2023-12-06  8:25 UTC  (11+ messages) - mbox.gz / Atom

[FFmpeg-devel] [PATCH 1/7] avutil/tests/imgutils: factorize basic tests to new function
 2023-12-06  8:22 UTC  (20+ messages) - mbox.gz / Atom
` [FFmpeg-devel] [PATCH 2/7] avutil/tests/imgutils: add tests for av_image_fill_black()
` [FFmpeg-devel] [PATCH 3/7] avutil/imgutils: fix av_image_fill_black() for some pixel formats
` [FFmpeg-devel] [PATCH 4/7] avutil/imgutils: add support for 32bit pixel format for av_image_fill_black()
` [FFmpeg-devel] [PATCH 5/7] avutil/imgutils: factorize a fill color function
` [FFmpeg-devel] [PATCH 6/7] avutil/imgutils: add new function av_image_fill_color()
` [FFmpeg-devel] [PATCH 7/7] avcodec: add AV_CODEC_FLAG_CLEAR
  ` [FFmpeg-devel] [PATCH v2 1/7] avutil/tests/imgutils: factorize basic tests to new function
    ` [FFmpeg-devel] [PATCH v2 2/7] avutil/tests/imgutils: add tests for av_image_fill_black()
    ` [FFmpeg-devel] [PATCH v2 3/7] avutil/imgutils: fix av_image_fill_black() for some pixel formats
    ` [FFmpeg-devel] [PATCH v2 4/7] avutil/imgutils: add support for 32bit pixel format for av_image_fill_black()
    ` [FFmpeg-devel] [PATCH v2 5/7] avutil/imgutils: factorize a fill color function
    ` [FFmpeg-devel] [PATCH v2 6/7] avutil/imgutils: add new function av_image_fill_color()
    ` [FFmpeg-devel] [PATCH v2 7/7] avcodec: add AV_CODEC_FLAG_CLEAR

[FFmpeg-devel] [PATCH] lavc/qsvenc: Set default bitrate to 2M
 2023-12-06  6:51 UTC  (3+ messages) - mbox.gz / Atom

[FFmpeg-devel] [PATCH] lavc/vc1dsp: R-V V inv_trans
 2023-12-06  2:23 UTC  (11+ messages) - mbox.gz / Atom

[FFmpeg-devel] [PATCH v7 0/7] webp: add support for animated WebP decoding
 2023-12-06  1:35 UTC  (8+ messages) - mbox.gz / Atom
` [FFmpeg-devel] [PATCH v7 1/7] avcodec/webp: move definitions into header
` [FFmpeg-devel] [PATCH v7 2/7] avcodec/webp: remove unused definitions
` [FFmpeg-devel] [PATCH v7 3/7] avcodec/webp_parser: parse each frame into one packet
` [FFmpeg-devel] [PATCH v7 4/7] libavcodec/webp: add support for animated WebP decoding
` [FFmpeg-devel] [PATCH v7 5/7] avcodec/webp: make init_canvas_frame static
` [FFmpeg-devel] [PATCH v7 6/7] libavformat/webp: add WebP demuxer
` [FFmpeg-devel] [PATCH v7 7/7] fate: add test for animated WebP

[FFmpeg-devel] [PATCH v6 0/8] avformat: introduce AVStreamGroup
 2023-12-05 22:44 UTC  (9+ messages) - mbox.gz / Atom
` [FFmpeg-devel] [PATCH 1/8] avutil: introduce an Immersive Audio Model and Formats API
` [FFmpeg-devel] [PATCH 2/8] avformat: introduce AVStreamGroup
` [FFmpeg-devel] [PATCH 3/8] ffmpeg: add support for muxing AVStreamGroups
` [FFmpeg-devel] [PATCH 4/8] avcodec/packet: add IAMF Parameters side data types
` [FFmpeg-devel] [PATCH 5/8] avcodec/get_bits: add get_leb()
` [FFmpeg-devel] [PATCH 6/8] avformat/aviobuf: add ffio_read_leb() and ffio_write_leb()
` [FFmpeg-devel] [PATCH 7/8] avformat: Immersive Audio Model and Formats demuxer
` [FFmpeg-devel] [PATCH 8/8] avformat: Immersive Audio Model and Formats muxer

[FFmpeg-devel] [PATCH] MAINTAINERS: add myself as vvc maintainer
 2023-12-05 19:52 UTC  (3+ messages) - mbox.gz / Atom

[FFmpeg-devel] [PATCH] avfilter: add aspace filter
 2023-12-05 17:51 UTC  (6+ messages) - mbox.gz / Atom

[FFmpeg-devel] [PATCH] riscv: test for assembler support
 2023-12-05 15:59 UTC  - mbox.gz / Atom

[FFmpeg-devel] [PATCH] lavc: remove the QOA decoder
 2023-12-05 15:42 UTC  (11+ messages) - mbox.gz / Atom

[FFmpeg-devel] [PATCH v6 02/14] vvcdec: add vvc_data
 2023-12-05 15:20 UTC  (14+ messages) - mbox.gz / Atom
` [FFmpeg-devel] [PATCH v6 03/14] vvcdec: add parameter parser for sps, pps, ph, sh
` [FFmpeg-devel] [PATCH v6 04/14] vvcdec: add cabac decoder
` [FFmpeg-devel] [PATCH v6 05/14] vvcdec: add reference management
` [FFmpeg-devel] [PATCH v6 06/14] vvcdec: add motion vector decoder
` [FFmpeg-devel] [PATCH v6 07/14] vvcdec: add inter prediction
` [FFmpeg-devel] [PATCH v6 08/14] vvcdec: add inv transform 1d
` [FFmpeg-devel] [PATCH v6 09/14] vvcdec: add intra prediction
` [FFmpeg-devel] [PATCH v6 10/14] vvcdec: add LMCS, Deblocking, SAO, and ALF filters
` [FFmpeg-devel] [PATCH v6 11/14] vvcdec: add dsp init and inv transform
` [FFmpeg-devel] [PATCH v6 12/14] vvcdec: add CTU parser
` [FFmpeg-devel] [PATCH v6 13/14] vvcdec: add CTU thread logical
` [FFmpeg-devel] [PATCH v6 14/14] vvcdec: add full vvc decoder

[FFmpeg-devel] [PATCH v6 01/14] vvcdec: add vvc decoder stub
 2023-12-05 14:45 UTC  - mbox.gz / Atom

[FFmpeg-devel] [PATCH] avdevice/avfoundation: replace AVCaptureDevice with new api
 2023-12-05 14:21 UTC  (4+ messages) - mbox.gz / Atom

[FFmpeg-devel] [PATCH] doc: mention that for RISC-V, we prefer .S files
 2023-12-05 14:00 UTC  (3+ messages) - mbox.gz / Atom

[FFmpeg-devel] [PATCH] checkasm/hevc_deblock: add luma test
 2023-12-05 11:41 UTC  - mbox.gz / Atom

[FFmpeg-devel] [PATCH] avformat/mov: Ignore duplicate ftyp
 2023-12-05 11:13 UTC  (4+ messages) - mbox.gz / Atom

[FFmpeg-devel] [PATCH] avdevice/avfoundation: replace AVCaptureDevice with new api
 2023-12-05  9:42 UTC  (4+ messages) - mbox.gz / Atom

[FFmpeg-devel] [PATCH] libavformat/vvc: Make probe more conservative
 2023-12-05  9:40 UTC  (3+ messages) - mbox.gz / Atom
` [FFmpeg-devel] [PATCH v2] "

[FFmpeg-devel] [PATCH v2 1/3] lavu/hwcontext_d3d11va: Add option vendor_id
 2023-12-05  8:18 UTC  (2+ messages) - mbox.gz / Atom

[FFmpeg-devel] [PATCH v12 1/9] libavutil: add hwcontext_d3d12va and AV_PIX_FMT_D3D12
 2023-12-05  6:46 UTC  (9+ messages) - mbox.gz / Atom
` [FFmpeg-devel] [PATCH v12 2/9] avcodec: add D3D12VA hardware accelerated H264 decoding
` [FFmpeg-devel] [PATCH v12 3/9] avcodec: add D3D12VA hardware accelerated HEVC decoding
` [FFmpeg-devel] [PATCH v12 4/9] avcodec: add D3D12VA hardware accelerated VP9 decoding
` [FFmpeg-devel] [PATCH v12 5/9] avcodec: add D3D12VA hardware accelerated AV1 decoding
` [FFmpeg-devel] [PATCH v12 6/9] avcodec: add D3D12VA hardware accelerated MPEG-2 decoding
` [FFmpeg-devel] [PATCH v12 7/9] avcodec: add D3D12VA hardware accelerated VC1 decoding
` [FFmpeg-devel] [PATCH v12 8/9] Changelog: D3D12VA hardware accelerated H264, HEVC, VP9, AV1, MPEG-2 and "
` [FFmpeg-devel] [PATCH v12 9/9] avcodec/d3d12va_hevc: enable allow_profile_mismatch flag for d3d12va msp profile

[FFmpeg-devel] [PATCH 1/2] decode: add ff_decode_skip_samples function
 2023-12-05  1:47 UTC  (3+ messages) - mbox.gz / Atom
  ` [FFmpeg-devel] [PATCH 2/2] aacdec: fix single-sample delay for SBR streams

[FFmpeg-devel] [PATCH] libavfilter/asrc_flite: fixes and improvements
 2023-12-04 23:30 UTC  (3+ messages) - mbox.gz / Atom

[FFmpeg-devel] [PATCH 1/2] checkasm: test for abs_pow34
 2023-12-04 21:46 UTC  (4+ messages) - mbox.gz / Atom

[FFmpeg-devel] [PATCH 2/2] avformat/flvdec: support enhanced flv PacketTypeMetadata
 2023-12-04 21:32 UTC  (2+ messages) - mbox.gz / Atom

[FFmpeg-devel] [PATCH 1/2] avformat/flvenc: support enhanced flv PacketTypeMetadata
 2023-12-04 21:16 UTC  (2+ messages) - mbox.gz / Atom

[FFmpeg-devel] [PATCH] avfilter/libvmaf: small cleanup for style, whitespace, unused
 2023-12-04 18:17 UTC  (2+ messages) - mbox.gz / Atom

[FFmpeg-devel] [PATCH 13/13 v2] fftools/ffmpeg: convert to a threaded architecture
 2023-12-04 17:07 UTC  (14+ messages) - mbox.gz / Atom
` [FFmpeg-devel] [PATCH 13/13 v3] "

[FFmpeg-devel] [PATCH] lavfi/af_pan: fix sscanf return value check
 2023-12-04 16:12 UTC  (3+ messages) - mbox.gz / Atom

[FFmpeg-devel] [PATCH] avfilter/vf_libvmaf: fix string comparison bug
 2023-12-04 15:58 UTC  - mbox.gz / Atom

[FFmpeg-devel] [PATCH] tests/fate: add asegment filter tests
 2023-12-04 15:19 UTC  - mbox.gz / Atom

[FFmpeg-devel] [PATCH] lavc/aarch64: h264qpel, add lowpass_8 based functions
 2023-12-04 10:00 UTC  - mbox.gz / Atom

[FFmpeg-devel] avfilter/avfilter: fix OOM case for default activate
 2023-12-04  8:25 UTC  - mbox.gz / Atom

[FFmpeg-devel] [PATCH] avfilter/avfilter: fix OOM case for default activate
 2023-12-04  8:18 UTC  (3+ messages) - mbox.gz / Atom

[FFmpeg-devel] [PATCH] lavc/Makefile: build vulkan decode code if vulkan_av1 has been enabled
 2023-12-04  6:58 UTC  (3+ messages) - mbox.gz / Atom

[FFmpeg-devel] [PATCH 1/4] libavfiter/dnn/dnn_backend_openvino: add multiple output support
 2023-12-04  5:36 UTC  (4+ messages) - mbox.gz / Atom
` [FFmpeg-devel] [PATCH 2/4] libavfilter/vf_dnn_detect: Add input pad
` [FFmpeg-devel] [PATCH 3/4] libavfilter/vf_dnn_detect: Add yolov3 support
` [FFmpeg-devel] [PATCH 4/4] libavfilter/vf_dnn_detect: Add yolov4 support

[FFmpeg-devel] [PATCH] configure: don't warn deprecated symbols from libvpl
 2023-12-04  4:21 UTC  (2+ messages) - mbox.gz / Atom

[FFmpeg-devel] [PATCH v2] lavu/hwcontext_qsv: use mfxImplDescription instead of mfxExtendedDeviceId on Linux
 2023-12-04  4:21 UTC  (2+ messages) - mbox.gz / Atom

[FFmpeg-devel] [PATCH 1/2] lavc/qsvdec: return 0 if more data is required
 2023-12-04  4:20 UTC  (2+ messages) - mbox.gz / Atom

[FFmpeg-devel] [PATCH] lavfi/vf_vpp_qsv: set the default value of async_depth to 4
 2023-12-04  4:16 UTC  (2+ messages) - mbox.gz / Atom

[FFmpeg-devel] [PATCH v2] lavu/hwcontext_vaapi: ignore nonexistent device in default DRM device selection
 2023-12-04  4:15 UTC  (2+ messages) - mbox.gz / Atom

[FFmpeg-devel] [PATCH] lavc/ac3: add R-V Zbb extract_exponents
 2023-12-04  2:34 UTC  (5+ messages) - mbox.gz / Atom

[FFmpeg-devel] trac spam
 2023-12-03 23:04 UTC  (11+ messages) - mbox.gz / Atom

[FFmpeg-devel] [PATCH] Allow using stdin_interaction with pipe's
 2023-12-03 21:10 UTC  (2+ messages) - mbox.gz / Atom

[FFmpeg-devel] [PATCH] avutil/mem: always align by at least 32 bytes
 2023-12-03 20:10 UTC  - mbox.gz / Atom

[FFmpeg-devel] [POC][PATCHSET] Add qrencodesrc source
 2023-12-03 15:05 UTC  (9+ messages) - mbox.gz / Atom
` [FFmpeg-devel] [PATCH 1/2] lavfi: introduce textutils

[FFmpeg-devel] [PATCH] avfilter: allow floating point formatting in expr_int_format (vf_drawtext.c)
 2023-12-03 14:52 UTC  (2+ messages) - mbox.gz / Atom

[FFmpeg-devel] [PATCH v2 0/3] JPEG XL parser bug fixes
 2023-12-03 14:45 UTC  (2+ messages) - mbox.gz / Atom

[FFmpeg-devel] [PATCH 1/3] doc/encoders/libx264: review and extend option description
 2023-12-03 12:06 UTC  (5+ messages) - mbox.gz / Atom

[FFmpeg-devel] [PATCH] fate: Add tests for QOA decoder
 2023-12-03  7:22 UTC  (3+ messages) - mbox.gz / Atom

[FFmpeg-devel] [PATCH v11 1/9] libavutil: add hwcontext_d3d12va and AV_PIX_FMT_D3D12
 2023-12-03  0:37 UTC  (9+ messages) - mbox.gz / Atom
` [FFmpeg-devel] [PATCH v11 2/9] avcodec: add D3D12VA hardware accelerated H264 decoding
` [FFmpeg-devel] [PATCH v11 3/9] avcodec: add D3D12VA hardware accelerated HEVC decoding
` [FFmpeg-devel] [PATCH v11 4/9] avcodec: add D3D12VA hardware accelerated VP9 decoding
` [FFmpeg-devel] [PATCH v11 5/9] avcodec: add D3D12VA hardware accelerated AV1 decoding
` [FFmpeg-devel] [PATCH v11 6/9] avcodec: add D3D12VA hardware accelerated MPEG-2 decoding
` [FFmpeg-devel] [PATCH v11 7/9] avcodec: add D3D12VA hardware accelerated VC1 decoding
` [FFmpeg-devel] [PATCH v11 8/9] Changelog: D3D12VA hardware accelerated H264, HEVC, VP9, AV1, MPEG-2 and "
` [FFmpeg-devel] [PATCH v11 9/9] avcodec/d3d12va_hevc: enable allow_profile_mismatch flag for d3d12va msp profile

[FFmpeg-devel] [PATCH v10 1/9] libavutil: add hwcontext_d3d12va and AV_PIX_FMT_D3D12
 2023-12-03  0:30 UTC  (4+ messages) - mbox.gz / Atom
` [FFmpeg-devel] [PATCH v10 2/9] avcodec: add D3D12VA hardware accelerated H264 decoding

[FFmpeg-devel] [PATCH v3 0/3] consider chroma subsampling for bwdif (including CUDA and Vulkan)
 2023-12-02 22:02 UTC  (5+ messages) - mbox.gz / Atom
  ` [FFmpeg-devel] [PATCH v3 2/3] avfilter/vf_bwdif_cuda: consider chroma subsampling when enforcing minimum dimensions
  ` [FFmpeg-devel] [PATCH v3 3/3] avfilter/vf_bwdif_vulkan: "
  ` [FFmpeg-devel] [PATCH v3 1/3] avfilter/vf_bwdif: "

page:  |  | latest

Git Inbox Mirror of the ffmpeg-devel mailing list - see https://ffmpeg.org/mailman/listinfo/ffmpeg-devel

This inbox may be cloned and mirrored by anyone:

	git clone --mirror https://master.gitmailbox.com/ffmpegdev/0 ffmpegdev/git/0.git

	# If you have public-inbox 1.1+ installed, you may
	# initialize and index your mirror using the following commands:
	public-inbox-init -V2 ffmpegdev ffmpegdev/ https://master.gitmailbox.com/ffmpegdev \
		ffmpegdev@gitmailbox.com
	public-inbox-index ffmpegdev

Example config snippet for mirrors.


AGPL code for this site: git clone https://public-inbox.org/public-inbox.git