[FFmpeg-devel] [PATCH 0/4] Fix FFmpeg compilation without DCE
2022-11-03 12:55 UTC (11+ messages) - mbox.gz / Atom
` [FFmpeg-devel] [PATCH 1/4] all: Replace if (ARCH_FOO) checks by #if ARCH_FOO, part 2
` [FFmpeg-devel] [PATCH 2/4] all: Replace if (CONFIG_FOO) checks by #if CONFIG_FOO
` [FFmpeg-devel] [PATCH 3/4] all: Guard if (INLINE*) checks with #if HAVE_INLINE_ASM
` [FFmpeg-devel] [PATCH 4/4] all: Guard if (EXTERNAL*) checks with #if HAVE_X86ASM
[FFmpeg-devel] [PATCH v2 00/10] Add support for H266/VVC
2022-11-03 12:51 UTC (9+ messages) - mbox.gz / Atom
` [FFmpeg-devel] [PATCH v2 03/10] avcodec: add bitstream parser "
` [FFmpeg-devel] [PATCH v2 08/10] avcodec: add external encoder libvvenc "
[FFmpeg-devel] [PATCH] avfilter: add backgroundkey video filter
2022-11-03 12:49 UTC (5+ messages) - mbox.gz / Atom
[FFmpeg-devel] [PATCH] avcodec/libx265: fix build error
2022-11-03 12:32 UTC (2+ messages) - mbox.gz / Atom
[FFmpeg-devel] [PATCH v3 00/10] Add support for H266/VVC
2022-11-03 12:21 UTC (11+ messages) - mbox.gz / Atom
` [FFmpeg-devel] [PATCH v3 01/10] avcodec: add enum types "
` [FFmpeg-devel] [PATCH v3 02/10] avcodec: add cbs "
` [FFmpeg-devel] [PATCH v3 03/10] avcodec: add bitstream parser "
` [FFmpeg-devel] [PATCH v3 04/10] avcodec: add MP4 to annexb support "
` [FFmpeg-devel] [PATCH v3 05/10] avformat: add demuxer and probe "
` [FFmpeg-devel] [PATCH v3 06/10] avformat: add muxer "
` [FFmpeg-devel] [PATCH v3 07/10] avcodec: add external decoder libvvdec "
` [FFmpeg-devel] [PATCH v3 08/10] avcodec: add external encoder libvvenc "
` [FFmpeg-devel] [PATCH v3 09/10] avformat: add ts stream types "
` [FFmpeg-devel] [PATCH v3 10/10] avcodec: increase minor version "
[FFmpeg-devel] [PATCH 0/2] QSV Overlay Filter: Copy side data from input to output frame
2022-11-03 11:41 UTC (10+ messages) - mbox.gz / Atom
` [FFmpeg-devel] [PATCH 2/2] avcodec/vpp_qsv: "
` [FFmpeg-devel] [PATCH v2 0/2] QSV Overlay Filter: "
` [FFmpeg-devel] [PATCH v2 1/2] avutil/frame: Add av_frame_copy_side_data() and av_frame_remove_all_side_data()
` [FFmpeg-devel] [PATCH v2 2/2] avfilter/vpp_qsv: Copy side-data from input to output frame
[FFmpeg-devel] [PATCH] avdevice/gdigrab: Allow capturing a window by its handle
2022-11-03 10:56 UTC - mbox.gz / Atom
[FFmpeg-devel] [PATCH 0/2] Print filter input/output formats in help output
2022-11-03 9:58 UTC (3+ messages) - mbox.gz / Atom
` [FFmpeg-devel] [PATCH 1/2] avfilter/avfilter: add avfilter_print_config_formats()
[FFmpeg-devel] [PATCH v2 1/2] ffmpeg: shift start time correction to ffmpeg_opt
2022-11-03 9:27 UTC (6+ messages) - mbox.gz / Atom
` [FFmpeg-devel] [PATCH v2 2/2] ffmpeg: fix implementation of updated input start time
[FFmpeg-devel] [PATCH v3 0/4] swscale rgbaf32 input/output support
2022-11-03 4:00 UTC (5+ messages) - mbox.gz / Atom
` [FFmpeg-devel] [PATCH v3 1/4] swscale/input: add rgbaf32 input support
` [FFmpeg-devel] [PATCH v3 2/4] avfilter/vf_hflip: add support for packed rgb float formats
` [FFmpeg-devel] [PATCH v3 3/4] avfilter/vf_transpose: "
` [FFmpeg-devel] [PATCH v3 4/4] swscale/output: add rgbaf32 output support
[FFmpeg-devel] [PATCH] lavc/libaribb24: add default_profile option
2022-11-03 3:19 UTC - mbox.gz / Atom
[FFmpeg-devel] [PATCH 01/19] avcodec/vc1: Don't check for AVCodecContext.codec
2022-11-03 2:57 UTC (24+ messages) - mbox.gz / Atom
` [FFmpeg-devel] [PATCH 02/19] avcodec/vc1: Remove always-false check
` [FFmpeg-devel] [PATCH 03/19] avcodec/vc1: Don't check for errors for complete VLC
` [FFmpeg-devel] [PATCH 04/19] avcodec/vc1: Don't use VLC to read bfraction
` [FFmpeg-devel] [PATCH 05/19] avcodec/vc1_parser: Set parse_only only once
` [FFmpeg-devel] [PATCH 06/19] avcodec/vc1_parser: Don't call ff_vc1_init_common()
` [FFmpeg-devel] [PATCH 07/19] avcodec/vc1: Move setting res_fasttx-IDCT functions to vc1dec.c
` [FFmpeg-devel] [PATCH 08/19] avcodec/vc1data: Remove duplicate defines
` [FFmpeg-devel] [PATCH 09/19] avcodec/vc1data: Remove declarations of inexistent arrays
` [FFmpeg-devel] [PATCH 10/19] avcodec/vc1data: Move VLC codes/lengths tables to a header
` [FFmpeg-devel] [PATCH 11/19] avcodec/vc1: Move ff_vc1_init_common() to vc1dec.c
` [FFmpeg-devel] [PATCH 12/19] avcodec/vc1_block: Don't duplicate #defines
` [FFmpeg-devel] [PATCH 13/19] avcodec/msmpeg4dec: Factor initializing VLCs shared with VC-1 out
` [FFmpeg-devel] [PATCH 14/19] avcodec/vc1dec: Don't open and close decoder during init
` [FFmpeg-devel] [PATCH 15/19] avcodec/vc1dec: Factor (re)initializing code out
` [FFmpeg-devel] [PATCH 16/19] avcodec/vc1dec: Return early upon error
` [FFmpeg-devel] [PATCH 17/19] avcodec/msmpeg4data: Move data shared between msmpeg4 and VC-1 out
` [FFmpeg-devel] [PATCH 18/19] avcodec/vc1dec: Split VC-1 decoders from msmpeg4
` [FFmpeg-devel] [PATCH 19/19] avcodec/vc1_block: Remove redundant write
` [FFmpeg-devel] [PATCH 20/24] avcodec/mpegvideo_dec: Don't use MotionEstContext as scratch space
` [FFmpeg-devel] [PATCH 21/24] avcodec/vc1dec: Remove VC-1 decoders->H.263 decoder dependency
` [FFmpeg-devel] [PATCH 22/24] avcodec/h263dec: Move initializing qpel DSP context to mpeg4videodec.c
` [FFmpeg-devel] [PATCH 23/24] avcodec/mpegvideo_enc: Move initializing QpelDSPCtx to mpeg4videoenc.c
` [FFmpeg-devel] [PATCH 24/24] avcodec/motion_est: Remove unused field
[FFmpeg-devel] [PATCH] avcodec/av1_vaapi: fixed a decoding corruption issue
2022-11-03 2:21 UTC (4+ messages) - mbox.gz / Atom
` [FFmpeg-devel] [PATCH v3] "
[FFmpeg-devel] [PATCH 1/2] swscale/output: Bias 16bps output calculations to improve non overflowing range
2022-11-02 22:55 UTC (9+ messages) - mbox.gz / Atom
` [FFmpeg-devel] [PATCH 2/2] swscale/output: Bias 16bps output calculations to improve non overflowing range for GBRP16/GBRPF32
[FFmpeg-devel] [PATCH v2 0/4] swscale rgbaf32 input/output support
2022-11-02 21:46 UTC (8+ messages) - mbox.gz / Atom
` [FFmpeg-devel] [PATCH v2 1/4] swscale/input: add rgbaf32 input support
` [FFmpeg-devel] [PATCH v2 2/4] avfilter/vf_hflip: add support for packed rgb float formats
` [FFmpeg-devel] [PATCH v2 3/4] avfilter/vf_transpose: "
` [FFmpeg-devel] [PATCH v2 4/4] swscale/output: add rgbaf32 output support
[FFmpeg-devel] [PATCH] avcodec/nvenc: add AV1 encoding support
2022-11-02 20:51 UTC (4+ messages) - mbox.gz / Atom
` [FFmpeg-devel] [PATCH v2] "
[FFmpeg-devel] [PATCH] Avoid possible integer overflow in yuv420 to rgba64 templates by saturating
2022-11-02 19:05 UTC (4+ messages) - mbox.gz / Atom
` [FFmpeg-devel] [PATCH] sws_scale: Use av_sat_add32 in yuv2rgba64 template
[FFmpeg-devel] [PATCH] lavfi/vf_dnn_processing.c: Fix missing AV_PIX_FMT_GRAY8
2022-11-02 15:07 UTC - mbox.gz / Atom
[FFmpeg-devel] [PATCH] configure: add pkg-config check for chromaprint
2022-11-02 13:10 UTC - mbox.gz / Atom
[FFmpeg-devel] [PATCH] libavcodec/qsvenc: Add skip_frame support to qsvenc
2022-11-02 8:11 UTC - mbox.gz / Atom
[FFmpeg-devel] libavformat/mux.c: check AVFMT_NOTIMESTAMPS flags
2022-11-02 6:46 UTC (2+ messages) - mbox.gz / Atom
[FFmpeg-devel] [PATCH 1/2] libavcodec/qsvenc_hevc: add tier option
2022-11-01 17:58 UTC (2+ messages) - mbox.gz / Atom
` [FFmpeg-devel] [PATCH 2/2] doc/encoders: add doc of the tier option for hevc_qsv
[FFmpeg-devel] [PATCH 1/2] libavcodec/qsvenc_hevc: add tier option
2022-11-01 17:57 UTC - mbox.gz / Atom
[FFmpeg-devel] [PATCH] avfilter/src_movie: support unknown channel layouts
2022-11-01 15:25 UTC (5+ messages) - mbox.gz / Atom
[FFmpeg-devel] [PATCH 0/3] sw_scale: Provide neon implementation for hscale
2022-11-01 13:26 UTC (2+ messages) - mbox.gz / Atom
[FFmpeg-devel] [PATCH] Revert "avfilter/vf_palette(gen|use): support palettes with alpha"
2022-11-01 10:18 UTC (18+ messages) - mbox.gz / Atom
[FFmpeg-devel] [RFC]lavc/tiff: Support dng cropping
2022-11-01 10:15 UTC (5+ messages) - mbox.gz / Atom
[FFmpeg-devel] [PATCH] libx265: support ATSC A/53 captions
2022-11-01 7:42 UTC (3+ messages) - mbox.gz / Atom
[FFmpeg-devel] [PATCH v6] libavfilter/x86/vf_convolution: add sobel filter optimization and unit test with intel AVX512 VNNI
2022-11-01 6:33 UTC (2+ messages) - mbox.gz / Atom
[FFmpeg-devel] [PATCH v2] avcodec/tiff: add read support for compressed rgb floating point formats
2022-11-01 3:17 UTC (5+ messages) - mbox.gz / Atom
[FFmpeg-devel] [PATCH] avcodec/av1: fixed an vaapi decoding corruption issue
2022-11-01 1:50 UTC (2+ messages) - mbox.gz / Atom
[FFmpeg-devel] [PATCH] avcodec/atrac3plus: reorder channels to match the output layout
2022-11-01 0:06 UTC (8+ messages) - mbox.gz / Atom
` [FFmpeg-devel] [PATCH v2] "
` [FFmpeg-devel] [PATCH v3] "
[FFmpeg-devel] [PATCH] libavcodec/flacenc: Enable sample rates > 655350 Hz
2022-10-31 21:25 UTC (4+ messages) - mbox.gz / Atom
[FFmpeg-devel] [PATCH 1/6 v3] avcodec/aacdec: fix parsing streams with channel configuration 11
2022-10-31 21:18 UTC (6+ messages) - mbox.gz / Atom
` [FFmpeg-devel] [PATCH 2/6 v3] avutil/channel_layout: add a 7.1(top) channel layout
` [FFmpeg-devel] [PATCH 3/6] swresample/rematrix: support mixing top front left/right channels
` [FFmpeg-devel] [PATCH 4/6 v3] avcodec/aacdec: add support for channel configuration 14
` [FFmpeg-devel] [PATCH 5/6] avcodec/aacdec: don't force a layout when a channel position is unknown
` [FFmpeg-devel] [PATCH 6/6] avcodec/aacdec: refactor the channel layout derivation code
[FFmpeg-devel] FFmpeg 5.0
2022-10-31 17:51 UTC (9+ messages) - mbox.gz / Atom
[FFmpeg-devel] [PATCH] avcodec/libaomdec: fix pix_fmt w/AVCOL_SPC_RGB
2022-10-31 17:24 UTC (3+ messages) - mbox.gz / Atom
[FFmpeg-devel] [PATCH 0/1] Add "no packet timeout" to mpegts
2022-10-31 12:55 UTC (5+ messages) - mbox.gz / Atom
` [FFmpeg-devel] [PATCH 1/1] Add "no packet" timeout option for mpegts
` [FFmpeg-devel] [PATCH] avformat/mpegts: Add "no packet" timeout option
[FFmpeg-devel] [PATCH] avcodec/v210enc: add new function for avx2 avx512 avx512icl
2022-10-31 12:52 UTC (2+ messages) - mbox.gz / Atom
[FFmpeg-devel] [PATCH] doc/examples: Add qsv_transcode example
2022-10-31 7:22 UTC - mbox.gz / Atom
[FFmpeg-devel] [PATCH 00/11] Fixes and Enhancements for VAAPI Overlay
2022-10-31 6:20 UTC (18+ messages) - mbox.gz / Atom
` [FFmpeg-devel] [PATCH 01/11] avfilter/overlay_vaapi: use FILTER_SINGLE_PIXFMT
` [FFmpeg-devel] [PATCH 09/11] avfilter/overlay_vaapi: enable expressions for overlay parameters
` [FFmpeg-devel] [PATCH v2 00/11] Fixes and Enhancements for VAAPI Overlay
` [FFmpeg-devel] [PATCH v2 01/11] avfilter/overlay_vaapi: use FILTER_SINGLE_PIXFMT
` [FFmpeg-devel] [PATCH v2 02/11] avfilter/overlay_vaapi: build filter params just once
` [FFmpeg-devel] [PATCH v2 03/11] avfilter/overlay_vaapi: remove double framesync init
` [FFmpeg-devel] [PATCH v2 04/11] avfilter/overlay_vaapi: handle secondary null input
` [FFmpeg-devel] [PATCH v2 05/11] avfilter/overlay_vaapi: reformat options
` [FFmpeg-devel] [PATCH v2 06/11] avfilter/overlay_vaapi: remove redundant .get_buffer assignments
` [FFmpeg-devel] [PATCH v2 07/11] avfilter/overlay_vaapi: add framesync options
` [FFmpeg-devel] [PATCH v2 08/11] avfilter/overlay_vaapi: precalculate blend_state, enable pixel alpha
` [FFmpeg-devel] [PATCH v2 09/11] avfilter/overlay_vaapi: enable expressions for overlay parameters
` [FFmpeg-devel] [PATCH v2 10/11] doc/filters.texi: remove incorrect statement
` [FFmpeg-devel] [PATCH v2 11/11] doc/filters.texi: update overlay_vaapi documentation
[FFmpeg-devel] [PATCH 0/4] swscale rgbaf32 input/output support
2022-10-30 23:14 UTC (4+ messages) - mbox.gz / Atom
[FFmpeg-devel] [PATCH] avcodec/libsvtav1: Add support for multipass encoding
2022-10-30 22:20 UTC (3+ messages) - mbox.gz / Atom
[FFmpeg-devel] [PATCH] avfilter: add ambisonic decoder filter
2022-10-30 19:59 UTC (11+ messages) - mbox.gz / Atom
[FFmpeg-devel] [PATCH] aacdec: convert to lavu/tx and support fixed-point 960-sample decoding
2022-10-30 19:39 UTC (2+ messages) - mbox.gz / Atom
[FFmpeg-devel] [PATCH v2 1/2] avcodec/metasound_data: Move data shared with twinvq into a new file
2022-10-27 15:36 UTC (2+ messages) - mbox.gz / Atom
` [FFmpeg-devel] [PATCH v2 2/2] avcodec/metasound_data: Include data into metasound.c directly
page: next (older) | prev (newer) | 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