Git Inbox Mirror of the ffmpeg-devel mailing list - see https://ffmpeg.org/mailman/listinfo/ffmpeg-devel
 help / color / mirror / Atom feed
[FFmpeg-devel] [FFmpeg-cvslog] fftools/ffmpeg: convert to a threaded architecture
 2023-12-14  9:18 UTC  (7+ messages) - mbox.gz / Atom

[FFmpeg-devel] [PATCH] fftools/ffmpeg_sched: actually initialize/destroy schedule_lock
 2023-12-14  9:17 UTC  - mbox.gz / Atom

[FFmpeg-devel] [PATCH] avcodec/libjxldec: emit proper PTS to decoded AVFrame
 2023-12-14  8:28 UTC  (2+ messages) - mbox.gz / Atom

[FFmpeg-devel] [PATCH 1/7] avutil/tests/imgutils: factorize basic tests to new function
 2023-12-14  8:03 UTC  (12+ messages) - mbox.gz / Atom
` [FFmpeg-devel] [PATCH v2 "
  ` [FFmpeg-devel] [PATCH v2 7/7] avcodec: add AV_CODEC_FLAG_CLEAR

[FFmpeg-devel] [RFC] fftools/ffmpeg and libavdevice/sdl issue
 2023-12-14  7:48 UTC  (13+ messages) - mbox.gz / Atom
  ` [FFmpeg-devel] Mailinglist conduct [was: [RFC] fftools/ffmpeg and libavdevice/sdl issue]

[FFmpeg-devel] [PATCH 0/5] avfilter: Add fsync filter
 2023-12-14  5:23 UTC  (17+ messages) - mbox.gz / Atom
` [FFmpeg-devel] [PATCH 1/5] fftools/ffmpeg: split loop for parsing and validation of -stats_* specifiers
` [FFmpeg-devel] [PATCH 2/5] fftools/ffmpeg: move parsing of -stats_* specifiers to lavu/parseutils
` [FFmpeg-devel] [PATCH 3/5] reindent after last commit
` [FFmpeg-devel] [PATCH 4/5] avfilter: Add fsync filter
` [FFmpeg-devel] [PATCH 5/5] fate: Add fsync filter tests

[FFmpeg-devel] [PATCH v2 00/15] YUV colorspace filter negotiation
 2023-12-14  3:09 UTC  (17+ messages) - mbox.gz / Atom
` [FFmpeg-devel] [PATCH v2 01/15] avfilter/formats: document ff_default_query_formats
` [FFmpeg-devel] [PATCH v2 02/15] avfilter: always call ff_default_query_formats
` [FFmpeg-devel] [PATCH v2 03/15] avfilter: add negotiation API for color space/range
` [FFmpeg-devel] [PATCH v2 04/15] fftools/ffmpeg_filter: don't clear buffersrc params
` [FFmpeg-devel] [PATCH v2 05/15] avfilter/buffersrc: add color_space/range parameters
` [FFmpeg-devel] [PATCH v2 06/15] fftools/ffmpeg_filter: configure buffersrc with csp/range
` [FFmpeg-devel] [PATCH v2 07/15] vf_scale: use colorspace negotiation API
` [FFmpeg-devel] [PATCH v2 08/15] avfilter/vf_zscale: remove unused variables
` [FFmpeg-devel] [PATCH v2 09/15] avfilter/vf_zscale: switch to colorspace negotiation API
` [FFmpeg-devel] [PATCH v2 10/15] avfilter/vf_libplacebo: don't force dovi frames to bt.2020-ncl
` [FFmpeg-devel] [PATCH v2 11/15] avfilter/vf_libplacebo: switch to colorspace negotiation API
` [FFmpeg-devel] [PATCH v2 12/15] avfilter/buffersink: add color space/range accessors
` [FFmpeg-devel] [PATCH v2 13/15] avfilter/vf_format: re-use AVFilterFormats for pix_fmt parsing
` [FFmpeg-devel] [PATCH v2 14/15] avfilter/vf_format: add color_ranges/spaces
` [FFmpeg-devel] [PATCH v2 15/15] avfilter/vf_format: allow empty pix_fmts list

[FFmpeg-devel] [PATCH 1/4] libavfilter/vf_dnn_detect: Fix an incorrect expression
 2023-12-14  2:49 UTC  (4+ messages) - mbox.gz / Atom
` [FFmpeg-devel] [PATCH 2/4] libavfilter/vf_dnn_detect: Add NULL pointer check
` [FFmpeg-devel] [PATCH 3/4] libavfilter/vf_dnn_detect: Fix uninitialized variables error
` [FFmpeg-devel] [PATCH 4/4] libavfilter/vf_dnn_detect: Set used pointer to NULL

[FFmpeg-devel] [PATCH v2 1/1] avcodec/libjxlenc: Add libjxl_animated encoder
 2023-12-13 20:53 UTC  - mbox.gz / Atom

[FFmpeg-devel] [PATCH v2 0/1] avcodec/libjxlenc: Add libjxl_animated encoder
 2023-12-13 20:53 UTC  - mbox.gz / Atom

[FFmpeg-devel] [PATCH] fate: Allow running multiple rounds of tests with differing settings
 2023-12-13 20:45 UTC  (3+ messages) - mbox.gz / Atom

[FFmpeg-devel] [PATCH] [WIP] [RFC] dvdvideo: initial contribution (DVD demuxer)
 2023-12-13 20:45 UTC  (2+ messages) - mbox.gz / Atom

[FFmpeg-devel] [RFC/PATCH] bitpacked_dec: Optimization for bitpacked_dec decoder performance
 2023-12-13 19:58 UTC  (2+ messages) - mbox.gz / Atom
` [FFmpeg-devel] [PATCH] avcodec/bitpacked_dec: optimize bitpacked_decode_yuv422p10

[FFmpeg-devel] [PATCH 01/12] fftools/ffmpeg_filter: move FilterGraph.graph to FilterGraphThread
 2023-12-13 19:30 UTC  (12+ messages) - mbox.gz / Atom
` [FFmpeg-devel] [PATCH 02/12] fftools/ffmpeg: replace InputStream.file_index by a pointer
` [FFmpeg-devel] [PATCH 03/12] fftools/ffmpeg: replace OutputStream.file_index "
` [FFmpeg-devel] [PATCH 04/12] fftools/ffmpeg: move InputStream.discard to private data
` [FFmpeg-devel] [PATCH 05/12] fftools/ffmpeg: move InputStream.codec_desc "
` [FFmpeg-devel] [PATCH 06/12] fftools/ffmpeg: drop unused InputFile.eof_reached
` [FFmpeg-devel] [PATCH 07/12] fftools/ffmpeg_demux: move InputFile.readrate to private data
` [FFmpeg-devel] [PATCH 08/12] fftools/ffmpeg_mux: move OutputStream.sq_idx_mux "
` [FFmpeg-devel] [PATCH 09/12] fftools/ffmpeg: drop OutputFile.sq_encode
` [FFmpeg-devel] [PATCH 10/12] fftools/ffmpeg_sched: move trailing_dts() higher up
` [FFmpeg-devel] [PATCH 11/12] fftools/ffmpeg: update the reported timestamp at the end
` [FFmpeg-devel] [PATCH 12/12] fftools/ffmpeg_sched: track dts+duration as last_dts

[FFmpeg-devel] [PATCH 1/2] avcodec/mjpegdec: use memset to clear alpha
 2023-12-13 18:26 UTC  (2+ messages) - mbox.gz / Atom
` [FFmpeg-devel] [PATCH 2/2] avcodec/mjpegdec: avoid indirection when accessing avctx

[FFmpeg-devel] [PATCH 1/3] avcodec/libjxlenc: Move JxlBasicInfo to LibJxlEncodeContext
 2023-12-13 18:12 UTC  (3+ messages) - mbox.gz / Atom

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

[FFmpeg-devel] [PATCH] configure: check VTPixelTransferSessionCreate for scale_vt
 2023-12-13 13:08 UTC  - mbox.gz / Atom

[FFmpeg-devel] [RFC PATCH 00/25] YUVJ removal + filter negotiation
 2023-12-13 11:38 UTC  (9+ messages) - mbox.gz / Atom
` [FFmpeg-devel] [PATCH 13/25] avfilter/buffersink: add color space/range accessors
` [FFmpeg-devel] [PATCH 14/25] avfilter/vf_format: re-use AVFilterList for pix_fmt parsing
` [FFmpeg-devel] [PATCH 15/25] avfilter/vf_format: add color_ranges/spaces
` [FFmpeg-devel] [PATCH 16/25] avfilter/vf_format: allow empty pix_fmts list

[FFmpeg-devel] [PATCH] Add new vf_tiltandshift filter
 2023-12-13 10:06 UTC  (3+ messages) - mbox.gz / Atom

[FFmpeg-devel] [PATCH] gdigrab: Allow capturing a window by its handle
 2023-12-13 10:03 UTC  (7+ messages) - mbox.gz / Atom
    ` [FFmpeg-devel] [PATCH v2] "

[FFmpeg-devel] [PATCH] avfilter/vf_showinfo: add udu_sei_as_ascii option
 2023-12-13  3:46 UTC  - mbox.gz / Atom

[FFmpeg-devel] Misc ProRes frame header conformity fixes
 2023-12-12 23:16 UTC  (8+ messages) - mbox.gz / Atom
` [FFmpeg-devel] [PATCH 1/5] avcodec/proresenc_anatoliy: use a compatible bitstream version
` [FFmpeg-devel] [PATCH 2/5] avcodec/proresenc_kostya: "
` [FFmpeg-devel] [PATCH 3/5] avcodec/proresenc_kostya: do not write into alpha reserved bitfields
` [FFmpeg-devel] [PATCH 4/5] avcodec/proresenc_anatoliy: "
` [FFmpeg-devel] [PATCH 5/5] avcodec/proresenc_anatoliy: do not write into chroma "

[FFmpeg-devel] [PATCH 1/2] checkasm/lpc: test compute_autocorr
 2023-12-12 21:05 UTC  (3+ messages) - mbox.gz / Atom
` [FFmpeg-devel] [PATCH 2/2] lavc/lpc: R-V V compute_autocorr

[FFmpeg-devel] [PATCH 2/3] avcodec/libjxlenc: Move image initialization code into libjxl_encode_init_image
 2023-12-12 20:19 UTC  (2+ messages) - mbox.gz / Atom

[FFmpeg-devel] [PATCH] avcodec/pngdec: improve handling of bad cICP range tags
 2023-12-12 19:41 UTC  - mbox.gz / Atom

[FFmpeg-devel] [PATCH v2 6/7] avutil/imgutils: add new function av_image_fill_color()
 2023-12-12 18:45 UTC  (4+ messages) - mbox.gz / Atom
` [FFmpeg-devel] [PATCH v3 "

[FFmpeg-devel] [PATCH v7 0/7] webp: add support for animated WebP decoding
 2023-12-12 12:14 UTC  (5+ messages) - mbox.gz / Atom
` [FFmpeg-devel] [PATCH v7 3/7] avcodec/webp_parser: parse each frame into one packet

[FFmpeg-devel] [PATCH 1/3] fftools/ffmpeg: merge DemuxPktData into FrameData
 2023-12-12 12:09 UTC  (3+ messages) - mbox.gz / Atom
` [FFmpeg-devel] [PATCH 2/3] fftools/ffmpeg: attach wallclock timing information to packets and frames
` [FFmpeg-devel] [PATCH 3/3] fftools/ffmpeg_mux: print latency information in -debug_ts muxing output

[FFmpeg-devel] [PATCH v6 0/8] avformat: introduce AVStreamGroup
 2023-12-12 11:46 UTC  (14+ 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] swr/swresample: avoid reapplication of firstpts
 2023-12-12 11:20 UTC  - mbox.gz / Atom

[FFmpeg-devel] Initial tickering at unifying ProRes encoder
 2023-12-12  8:16 UTC  (18+ messages) - mbox.gz / Atom
` [FFmpeg-devel] [PATCH 01/35] avcodec/proresenc_kostya: remove an unnecessary parenthesis level in MAKE_CODE() macro
` [FFmpeg-devel] [PATCH 02/35] avcodec/proresenc_kostya: remove unused plane factor variables
` [FFmpeg-devel] [PATCH 03/35] avcodec/proresenc_kostya: remove redundant codebook assignments
` [FFmpeg-devel] [PATCH 04/35] avcodec/proresenc_anatoliy: move run/lev to codebook LUT to shared proresdata
` [FFmpeg-devel] [PATCH 05/35] avcodec/proresenc_kostya: remove one LUT indirection for run/level to codebook mapping
` [FFmpeg-devel] [PATCH 07/35] avcodec/proresenc_anatoliy: move DC codebook LUT to shared proresdata
` [FFmpeg-devel] [PATCH 33/35] avcodec/proresenc_anatoliy: execute AC run/level FFMIN() at assignment
` [FFmpeg-devel] [PATCH 34/35] avcodec/proresenc_anatoliy: make a few cosmetics in encode_acs()
` [FFmpeg-devel] [PATCH 35/35] avcodec/proresenc_kostya: "

[FFmpeg-devel] [PATCH 1/3] swscale: don't assign range converters for float
 2023-12-12  7:54 UTC  (4+ messages) - mbox.gz / Atom

[FFmpeg-devel] [PATCH v3 0/3] Initial support for fragmented TTML muxing
 2023-12-12  7:32 UTC  (4+ messages) - mbox.gz / Atom
` [FFmpeg-devel] [PATCH v3 1/3] tests/fate-run: add support for specifying the final encode muxer in `transcode`
` [FFmpeg-devel] [PATCH v3 2/3] avcodec/avpacket: add functionality to prepend to AVPacketLists
` [FFmpeg-devel] [PATCH v3 3/3] avformat/movenc: add support for fragmented TTML muxing

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

[FFmpeg-devel] [PATCH] doc/filters: add example for idet filter
 2023-12-12  0:19 UTC  (3+ messages) - mbox.gz / Atom

[FFmpeg-devel] [PATCH] avformat/options_table, doc/formats: clarify meaning of igndts as per definition in avformat.h
 2023-12-12  0:15 UTC  (2+ messages) - mbox.gz / Atom

[FFmpeg-devel] [PATCH] doc/ffprobe: add a useful one-liner example to get essential input information as JSON
 2023-12-12  0:01 UTC  (2+ messages) - mbox.gz / Atom

[FFmpeg-devel] [PATCH v2] doc/filters: add example for idet filter
 2023-12-11 23:51 UTC  (3+ messages) - mbox.gz / Atom
` [FFmpeg-devel] [PATCH v3] "

[FFmpeg-devel] [PATCH] examples/transcode: fix log message
 2023-12-11 23:38 UTC  (2+ messages) - mbox.gz / Atom

[FFmpeg-devel] [POC][PATCHSET] Add qrencodesrc source
 2023-12-11 23:34 UTC  (5+ messages) - mbox.gz / Atom
` [FFmpeg-devel] [PATCH 2/2] lavfi: add "

[FFmpeg-devel] [PATCH] doc/bitstream_filters: add filter_units practical examples for removing closed captions
 2023-12-11 23:29 UTC  (5+ messages) - mbox.gz / Atom
` [FFmpeg-devel] [PATCH v2] "

[FFmpeg-devel] [PATCH 10 bit support v5 1/3] avcodec/amfenc: Fixes the color information in the output
 2023-12-11 21:21 UTC  (6+ messages) - mbox.gz / Atom

[FFmpeg-devel] [PATCH] lavc/ac3: add R-V Zbb extract_exponents
 2023-12-11 20:51 UTC  (4+ messages) - mbox.gz / Atom

[FFmpeg-devel] [PATCH] checkasm/lpc: test compute_autocorr
 2023-12-11 20:49 UTC  (2+ messages) - mbox.gz / Atom

[FFmpeg-devel] [PATCH] ffmpeg_opt: inform user about -b:a and -b:v instead of legacy form
 2023-12-11 18:44 UTC  (2+ messages) - mbox.gz / Atom
` [FFmpeg-devel] [PATCH v2] ffmpeg_opt: clarify that -ab is deprecated

[FFmpeg-devel] [PATCH] lavd/avfoundation: Use correct preprocessing directive
 2023-12-11 17:41 UTC  (4+ messages) - mbox.gz / Atom

[FFmpeg-devel] [PATCH 3/3] avcodec/libjxlenc: Add libjxl_animated encoder
 2023-12-11 17:05 UTC  - mbox.gz / Atom

[FFmpeg-devel] [PATCH 0/3] avcodec/libjxlenc: Add libjxl_animated encoder
 2023-12-11 17:05 UTC  - mbox.gz / Atom

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

[FFmpeg-devel] [PATCH] avdevice/audiotoolbox: silence warning with new api
 2023-12-11 15:40 UTC  (3+ messages) - mbox.gz / Atom

[FFmpeg-devel] [PATCH] avdevice/avfoundation: replace deprecated AVCaptureDevice
 2023-12-11 14:54 UTC  (3+ messages) - mbox.gz / Atom

[FFmpeg-devel] [PATCH 1/2] avcodec/libjxldec: produce rgbf32 and rgbaf32 frames
 2023-12-11 12:02 UTC  (2+ messages) - mbox.gz / Atom
` [FFmpeg-devel] [PATCH 2/2] avcodec/libjxlenc: accept "

[FFmpeg-devel] [PATCH v4] avcodec/pngdec: read colorspace info when decoding with AVDISCARD_ALL
 2023-12-11 11:54 UTC  (5+ messages) - mbox.gz / Atom

[FFmpeg-devel] [PATCH] lavc/lpc: R-V V apply_welch_window
 2023-12-11 10:03 UTC  (5+ messages) - mbox.gz / Atom

[FFmpeg-devel] [PATCH v3] ffmpeg CLI multithreading
 2023-12-11  9:06 UTC  (5+ messages) - mbox.gz / Atom

[FFmpeg-devel] [PATCH] doc/ffmpeg: fix -copy_ts typo, should be -copyts
 2023-12-11  5:39 UTC  (2+ messages) - 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