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 1/4] tests/checkasm: cosmetics, one object per line in Makefile
 2024-06-07 14:05 UTC  (4+ messages) - mbox.gz / Atom
` [FFmpeg-devel] [PATCH 2/4] checkasm: add tests for {lum, chr}ConvertRange
` [FFmpeg-devel] [PATCH 3/4] swscale/x86: add sse4 "
` [FFmpeg-devel] [PATCH 4/4] swscale/aarch64: add neon "

[FFmpeg-devel] [PATCH v3 2/4] avutil/timer: Add clock_gettime as a fallback of AV_READ_TIME
 2024-06-07 13:44 UTC  (3+ messages) - mbox.gz / Atom
` [FFmpeg-devel] [PATCH v3 3/4] tests/checkasm: Fix build error when enable linux perf on Android
` [FFmpeg-devel] [PATCH v3 4/4] swscale/aarch64: Add rgb24 to yuv implementation

[FFmpeg-devel] [PATCH v3 1/4] avutil/aarch64: Skip define AV_READ_TIME for apple
 2024-06-07 13:44 UTC  - mbox.gz / Atom

[FFmpeg-devel] [PATCH 01/39] lavc/hevcdec: do not free SliceHeader arrays in pic_arrays_free()
 2024-06-07 13:01 UTC  (39+ messages) - mbox.gz / Atom
` [FFmpeg-devel] [PATCH 02/39] lavc/hevcdec: simplify condition
` [FFmpeg-devel] [PATCH 03/39] lavc/hevcdec: drop a redundant assignment in hevc_decode_frame()
` [FFmpeg-devel] [PATCH 04/39] lavc/hevc_ps: make PPS hold a reference to its SPS
` [FFmpeg-devel] [PATCH 05/39] lavc/hevc_ps: make SPS hold a reference to its VPS
` [FFmpeg-devel] [PATCH 06/39] lavc/hevc/parser: stop using HEVCParamSets.[psv]ps
` [FFmpeg-devel] [PATCH 07/39] lavc/hevc/mvs: stop accessing parameter sets through HEVCParamSets
` [FFmpeg-devel] [PATCH 08/39] lavc/hevc/filter: "
` [FFmpeg-devel] [PATCH 09/39] lavc/hevc/cabac: "
` [FFmpeg-devel] [PATCH 10/39] lavc/hevc/pred: "
` [FFmpeg-devel] [PATCH 11/39] lavc/hevcdec: "
` [FFmpeg-devel] [PATCH 12/39] lavc/hevcdec: move active PPS from HEVCParamSets to HEVCContext
` [FFmpeg-devel] [PATCH 13/39] lavc/hevcdec: drop an always-zero variable
` [FFmpeg-devel] [PATCH 14/39] lavc/hevcdec: only ignore INVALIDDATA in decode_nal_unit()
` [FFmpeg-devel] [PATCH 15/39] lavc/hevcdec: pass SliceHeader explicitly to pred_weight_table()
` [FFmpeg-devel] [PATCH 16/39] lavc/hevcdec: do not pass HEVCContext to decode_lt_rps()
` [FFmpeg-devel] [PATCH 17/39] lavc/hevcdec: move pocTid0 computation to hevc_frame_start()
` [FFmpeg-devel] [PATCH 18/39] lavc/hevcdec: only call export_stream_params_from_sei() once per frame
` [FFmpeg-devel] [PATCH 19/39] lavc/hevcdec: do not pass HEVCContext to ff_hevc_frame_nb_refs()
` [FFmpeg-devel] [PATCH 20/39] lavc/hevcdec: only set no_rasl_output_flag for IRAP frames
` [FFmpeg-devel] [PATCH 21/39] lavc/hevcdec: output RASL frames based on the value of no_rasl_output_flag
` [FFmpeg-devel] [PATCH 22/39] lavc/hevc/cabac: do not infer WPP use based on HEVCContext.threads_number
` [FFmpeg-devel] [PATCH 23/39] lavc/hevcdec: drop redundant HEVCContext.threads_{type, number}
` [FFmpeg-devel] [PATCH 24/39] lavc/hevcdec: store slice header POC in SliceHeader
` [FFmpeg-devel] [PATCH 25/39] lavc/hevcdec: move a slice segment sanity check to hls_slice_header()
` [FFmpeg-devel] [PATCH 26/39] lavc/hevcdec: move slice decoding dispatch to its own function
` [FFmpeg-devel] [PATCH 27/39] lavc/hevcdec: move per-slice local_ctx setup out of hls_slice_header()
` [FFmpeg-devel] [PATCH 28/39] lavc/hevcdec: move calling hwaccel start_frame to hevc_frame_start()
` [FFmpeg-devel] [PATCH 29/39] lavc/hevcdec: move calling hwaccel decode_slice to decode_slice_data()
` [FFmpeg-devel] [PATCH 30/39] lavc/hevcdec: move constructing slice RPL "
` [FFmpeg-devel] [PATCH 31/39] lavc/hevcdec: set active PPS/SPS in hevc_frame_start()
` [FFmpeg-devel] [PATCH 32/39] lavc/hevcdec: move sequence increment/IDR handling to hevc_frame_start()
` [FFmpeg-devel] [PATCH 33/39] lavc/hevcdec: move setting slice_initialized out of hls_slice_header()
` [FFmpeg-devel] [PATCH 34/39] lavc/hevcdec: move the check for multiple frames in a packet
` [FFmpeg-devel] [PATCH 35/39] lavc/hevcdec: drop a redundant multiple-frame-per-packet check
` [FFmpeg-devel] [PATCH 36/39] lavc/hevcdec: factor decoding a slice NALU out of decode_nal_unit()
` [FFmpeg-devel] [PATCH 37/39] lavc/hevcdec: move some frame-end code to hevc_frame_end()
` [FFmpeg-devel] [PATCH 38/39] lavc/hevcdec: do not unref current frame on frame_end() failure
` [FFmpeg-devel] [PATCH 39/39] lavc/hevcdec: constify source frame in hevc_ref_frame()

[FFmpeg-devel] [PATCH 01/17] avcodec/dxva2: Initialize dxva_size and check it
 2024-06-07 12:00 UTC  (3+ messages) - mbox.gz / Atom
` [FFmpeg-devel] [PATCH 08/17] avcodec/vp8: Check mutex init

[FFmpeg-devel] [PATCH] avfilter: add sdlvsink for video display
 2024-06-07 11:54 UTC  (9+ messages) - mbox.gz / Atom

[FFmpeg-devel] [PATCH v2 2/4] avutil/timer: Add clock_gettime as a fallback of AV_READ_TIME
 2024-06-07 11:41 UTC  (13+ messages) - mbox.gz / Atom
` [FFmpeg-devel] [PATCH v2 3/4] tests/checkasm: Fix build error when enable linux perf on Android
` [FFmpeg-devel] [PATCH v2 4/4] swscale/aarch64: Add rgb24 to yuv implementation

[FFmpeg-devel] [PATCH v3 1/6] lavf/tls_mbedtls: handle more error codes for
 2024-06-07 11:30 UTC  (2+ messages) - mbox.gz / Atom

[FFmpeg-devel] [PATCH] libavfilter/signature_lookup: fix jaccard distance
 2024-06-07 10:19 UTC  (3+ messages) - mbox.gz / Atom

[FFmpeg-devel] [PATCH] aarch64: Use cntvct_el0 as timer register on Android
 2024-06-07 10:00 UTC  (3+ messages) - mbox.gz / Atom

[FFmpeg-devel] [PATCH v2 1/4] avutil/aarch64: Skip define AV_READ_TIME for apple
 2024-06-07  9:10 UTC  (2+ messages) - mbox.gz / Atom

[FFmpeg-devel] [PATCH] avformat/mpegts: correctly skip TP_extra_header in m2ts
 2024-06-07  7:59 UTC  (3+ messages) - mbox.gz / Atom

[FFmpeg-devel] [PATCH 1/2] swscale/x86/input: add AVX2 optimized RGB32 to YUV functions
 2024-06-07  7:24 UTC  (6+ messages) - mbox.gz / Atom
` [FFmpeg-devel] [PATCH 2/2] swscale/x86/input: add AVX2 optimized uyvytoyuv422

[FFmpeg-devel] [PATCH 1/5] avformat/mov: Check requested_sample before using it
 2024-06-07  0:32 UTC  (5+ messages) - mbox.gz / Atom
` [FFmpeg-devel] [PATCH 2/5] avformat/mpeg: Check len in mpegps_probe()
` [FFmpeg-devel] [PATCH 3/5] avformat/mxfdec: Check container_ul->desc before use
` [FFmpeg-devel] [PATCH 4/5] avformat/mxfenc: Remove dead code
` [FFmpeg-devel] [PATCH 5/5] avformat/rdt: Check pkt_len

[FFmpeg-devel] [PATCH] avcodec/jpeg2000dec: fix tilepart processing
 2024-06-07  0:25 UTC  - mbox.gz / Atom

[FFmpeg-devel] [PATCH] lavc/flacdsp: fix sign extension in R-V V wasted33
 2024-06-06 19:22 UTC  - mbox.gz / Atom

[FFmpeg-devel] [PATCH 1/3] sws/input: R-V V 32-bit RGB to Y
 2024-06-06 18:26 UTC  (3+ messages) - mbox.gz / Atom
` [FFmpeg-devel] [PATCH 2/3] sws/input: R-V V 32-bit RGB to UV
` [FFmpeg-devel] [PATCH 3/3] sws/input: R-V V 32-bit RGB to halved UV

[FFmpeg-devel] [PATCH v2 3/3] tests/checkasm/vvc_alf: change alf step size to 8
 2024-06-06 18:24 UTC  (3+ messages) - mbox.gz / Atom
    ` [FFmpeg-devel] 回复: "

[FFmpeg-devel] [PATCH v9] avcodec: add farbfeld encoder, decoder and demuxer
 2024-06-06 18:15 UTC  - mbox.gz / Atom

[FFmpeg-devel] [RFC] flac_wasted32 vector implementation for VSX on ppc64le
 2024-06-06 16:51 UTC  (3+ messages) - mbox.gz / Atom

[FFmpeg-devel] [PATCH] lavc/flacdsp: R-V Zvbb wasted33
 2024-06-06 16:04 UTC  - mbox.gz / Atom

[FFmpeg-devel] [PATCH] lavu/opt: Mention that AVOptions is not reentrant
 2024-06-06 16:02 UTC  (13+ messages) - mbox.gz / Atom
      ` [FFmpeg-devel] [PATCH v2] lavu/opt: Discuss AV_OPT_FLAG_RUNTIME_PARAM more explicitly

[FFmpeg-devel] [PATCH] aacdec_usac: correctly set and use the layout map
 2024-06-06 15:54 UTC  (2+ messages) - mbox.gz / Atom

[FFmpeg-devel] [PATCH] swscale/x86/rgb2rgb: replace shuffle_bytes_2103_mmxext with an SSE2 version
 2024-06-06 15:45 UTC  (4+ messages) - mbox.gz / Atom
` [FFmpeg-devel] [PATCH] swscale/x86/rgb2rgb: add SSE2 shuffle_bytes functions

[FFmpeg-devel] [PATCH 1/7] avcodec/hevc/Makefile: Move rules for lavc/* files to lavc/Makefile
 2024-06-06 13:26 UTC  (8+ messages) - mbox.gz / Atom
` [FFmpeg-devel] [PATCH 4/7] avformat/vvc: Fix crash on allocation failure, avoid allocations
` [FFmpeg-devel] [PATCH 5/7] avformat/vvc: Reindent after the previous commit
` [FFmpeg-devel] [PATCH 6/7] avformat/evc: Fix format specifiers
` [FFmpeg-devel] [PATCH 7/7] avcodec/cbs_h266_syntax_template: Use correct format specifier

[FFmpeg-devel] [PATCH v13 01/15] avcodec/vaapi_encode: introduce a base layer for vaapi encode
 2024-06-06 13:12 UTC  (6+ messages) - mbox.gz / Atom
` [FFmpeg-devel] [PATCH v13 15/15] avcodec/hw_base_encode: avoid getting FFHWBaseEncodeContext from avctx

[FFmpeg-devel] [PATCH v8] avcodec: add farbfeld encoder, decoder and demuxer
 2024-06-06 11:27 UTC  (2+ messages) - mbox.gz / Atom

[FFmpeg-devel] [PATCH v2 1/2] lavc/vvc: Use sps_chroma_qp_table return code
 2024-06-06 10:17 UTC  (5+ messages) - mbox.gz / Atom
` [FFmpeg-devel] [PATCH v2 2/2] lavc/vvc: Prevent overflow in chroma QP derivation

[FFmpeg-devel] [PATCH v3] lavc/vvc: Prevent overflow in chroma QP derivation
 2024-06-06 10:16 UTC  - mbox.gz / Atom

[FFmpeg-devel] [RFC] STF 2025
 2024-06-06 10:04 UTC  (18+ messages) - mbox.gz / Atom

[FFmpeg-devel] [PATCH] avfilter/trim: flag trim filter as metadata only
 2024-06-06  9:41 UTC  (3+ messages) - mbox.gz / Atom

[FFmpeg-devel] [PATCH v7] avcodec: add farbfeld encoder, decoder and demuxer
 2024-06-06  9:10 UTC  (2+ messages) - mbox.gz / Atom

[FFmpeg-devel] [PATCH 1/4] aacdec_usac: respect tns_on_lr flag
 2024-06-06  5:12 UTC  (4+ messages) - mbox.gz / Atom
` [FFmpeg-devel] [PATCH 2/4] aacdec_usac: do not continue parsing bitstream on core_mode == 1
` [FFmpeg-devel] [PATCH 3/4] aacdec_usac: decouple TNS active from TNS data present flag
` [FFmpeg-devel] [PATCH 4/4] aacdec_usac: skip coeff decoding if the number to be decoded is 0

[FFmpeg-devel] [PATCH] Allow enabling SVC in libaomenc
 2024-06-05 22:43 UTC  (2+ messages) - mbox.gz / Atom

[FFmpeg-devel] [PATCH 1/4] swscale/x86/rgb2rgb_template: Remove unnecessary SFENCE
 2024-06-05 21:39 UTC  (4+ messages) - mbox.gz / Atom
` [FFmpeg-devel] [PATCH 2/4] swscale/x86/rgb2rgb: Don't unnecessarily check for inline ASM
` [FFmpeg-devel] [PATCH 3/4] swscale/x86/rgb2rgb_template: Remove unused uyvytoyv12
` [FFmpeg-devel] [PATCH 4/4] swscale/x86/rgb2rgb: Detemplatize

[FFmpeg-devel] [PATCH] avcodec/dovi_rpudec: replace brittle struct copying code
 2024-06-05 21:24 UTC  (4+ messages) - mbox.gz / Atom

[FFmpeg-devel] [PATCH] checkasm/sw_rgb: test rgb32/bgr32 to yuv
 2024-06-05 21:13 UTC  (6+ messages) - mbox.gz / Atom
` [FFmpeg-devel] [PATCH] checkasm/sw_rgb: test rgb32/rgb32_1 "

[FFmpeg-devel] [PATCH 00/16] NVidia Tegra hardware decoding backend
 2024-06-05 20:50 UTC  (7+ messages) - mbox.gz / Atom
` [FFmpeg-devel] [PATCH 05/16] avutil: add common code for nvtegra
` [FFmpeg-devel] [PATCH 06/16] avutil: add nvtegra hwcontext
` [FFmpeg-devel] [PATCH 07/16] hwcontext_nvtegra: add dynamic frequency scaling routines

[FFmpeg-devel] [PATCH v5 1/2] configure, lavu, lavc, lavfi: Remove libva 1.x support
 2024-06-05 20:13 UTC  (2+ messages) - mbox.gz / Atom
` [FFmpeg-devel] [PATCH v5 2/2] hwcontext_vaapi: Deprecate quirks

[FFmpeg-devel] [PATCH] tests/checkasm/sw_rgb: Be more strict about clobbering MMX state
 2024-06-05 20:12 UTC  (2+ messages) - mbox.gz / Atom

[FFmpeg-devel] [PATCH v3 1/3] lavc/h265_profile_level: Expand profile compatibility checking
 2024-06-05 19:59 UTC  (3+ messages) - mbox.gz / Atom
` [FFmpeg-devel] [PATCH v3 2/3] lavc: Add test for H.265 profile handling
` [FFmpeg-devel] [PATCH v3 3/3] lavc/vaapi_hevc: Don't require exact profiles

[FFmpeg-devel] [PATCH v5 0/1] Add support for H266/VVC encoding
 2024-06-05 19:51 UTC  (2+ messages) - mbox.gz / Atom
` [FFmpeg-devel] [PATCH v5 1/1] avcodec: add external enc libvvenc for H266/VVC

[FFmpeg-devel] [PATCH] checkasm: disable unaligned access emulation
 2024-06-05 19:46 UTC  (2+ messages) - mbox.gz / Atom

[FFmpeg-devel] [PATCH] lavc/vp8dsp: R-V V vp8_idct_add
 2024-06-05 19:45 UTC  - mbox.gz / Atom

[FFmpeg-devel] [PATCH v7 1/2] lavu/hashtable: create generic robin hood hash table
 2024-06-05 18:37 UTC  (2+ messages) - mbox.gz / Atom
` [FFmpeg-devel] [PATCH v7 2/2] lavc/dxvenc: migrate DXT1 encoder to lavu hashtable

[FFmpeg-devel] FFMPEG support for x265 vbv-end and vbv-end-fr-adj
 2024-06-05 18:19 UTC  (3+ messages) - mbox.gz / Atom

[FFmpeg-devel] [PATCH] libswscale/x86/yuv_2_rgb: fix some comments
 2024-06-05 17:42 UTC  (2+ messages) - mbox.gz / Atom

[FFmpeg-devel] [PATCH] libavcodec/libxvid: code cleanup (replace magic numbers)
 2024-06-05 17:41 UTC  (4+ messages) - mbox.gz / Atom

[FFmpeg-devel] [PATCH] avcodec/mpegvideo_enc: give magic number a name
 2024-06-05 17:41 UTC  (3+ messages) - mbox.gz / Atom

[FFmpeg-devel] [PATCH] libswscale/x86/yuv2rgb: Add missing EMMS
 2024-06-05 17:35 UTC  - mbox.gz / Atom

[FFmpeg-devel] [PATCH 1/5] checkasm/sw_rgb: test rgb24 to yuv
 2024-06-05 17:34 UTC  (6+ messages) - mbox.gz / Atom
  ` [FFmpeg-devel] [PATCH v2 1/5] checkasm/sw_rgb: test rgb24/bgr24 "

[FFmpeg-devel] [PATCHv3 1/3] sws/input: R-V V rgb24ToY & bgr24ToY
 2024-06-05 16:36 UTC  (3+ messages) - mbox.gz / Atom
` [FFmpeg-devel] [PATCH 2/3] sws/input: R-V V rgb24ToUV and bgr24ToUV
` [FFmpeg-devel] [PATCH 3/3] sws/input: R-V V rgb24ToUV_half and bgr24ToUV_half

[FFmpeg-devel] [PATCH 1/4] mpeg4audio: rename AOT_USAC_NOSBR to AOT_USAC
 2024-06-05 16:18 UTC  (10+ messages) - mbox.gz / Atom
` [FFmpeg-devel] [PATCH 2/4] mpeg4audio: explicitly define each AOT
` [FFmpeg-devel] [PATCH 3/4] aac: define a new profile for USAC
` [FFmpeg-devel] [PATCH 4/4] lavc: bump minor and add APIchanges entry for new USAC profile

[FFmpeg-devel] [PATCH v6] avcodec: add farbfeld encoder
 2024-06-05 13:22 UTC  (7+ messages) - mbox.gz / Atom

[FFmpeg-devel] [PATCH] aacdec: increase MAX_ELEM_ID to 64
 2024-06-05 13:11 UTC  - mbox.gz / Atom

[FFmpeg-devel] [PATCH 1/3] doc: Explain what "context" means
 2024-06-05 12:51 UTC  (8+ messages) - mbox.gz / Atom
` [FFmpeg-devel] [PATCH v6 0/4] "
  ` [FFmpeg-devel] [PATCH v6 2/4] lavu: Clarify relationship between AVClass, AVOption and context
  ` [FFmpeg-devel] [PATCH v6 3/4] all: Link to "context" from all public contexts with documentation

[FFmpeg-devel] [PATCH 1/2] avcodec/dnxhdenc: Move PutBitContext from ctx to stack
 2024-06-05 12:25 UTC  (2+ messages) - mbox.gz / Atom
` [FFmpeg-devel] [PATCH 2/2] avcodec/dnxhdenc: Simplify padding

[FFmpeg-devel] [PATCH v2] movenc: Add an option for hiding fragments at the end
 2024-06-05 11:47 UTC  - mbox.gz / Atom

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