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 v9 0/6] Support enhanced flv in FFmpeg
 2023-06-01  6:07 UTC  (7+ messages) - mbox.gz / Atom
` [FFmpeg-devel] [PATCH v10 "

[FFmpeg-devel] [PATCH 1/2] avcodec/lcldec: Make PNG filter addressing match the code afterwards
 2023-06-01  0:28 UTC  (3+ messages) - mbox.gz / Atom
` [FFmpeg-devel] [PATCH 2/2] tools/target_dec_fuzzer: Adjust threshold for QPEG

[FFmpeg-devel] [PATCH 01/23] fftools/ffmpeg_enc: move nb_frames{dup, drop} globals into OutputStream
 2023-05-31 21:15 UTC  (25+ messages) - mbox.gz / Atom
` [FFmpeg-devel] [PATCH 02/23] fftools/ffmpeg_mux: set stream duration after the timebase is certainly known
` [FFmpeg-devel] [PATCH 03/23] fftools/ffmpeg_filter: drop a write-only variable
` [FFmpeg-devel] [PATCH 04/23] fftools/ffmpeg_filter: drop a block disabled since 2012
` [FFmpeg-devel] [PATCH 05/23] fftools/ffmpeg_demux: do not set AVCodecContext.framerate
` [FFmpeg-devel] [PATCH 06/23] fftools/ffmpeg_enc: avoid breaking exactly integer timestamps in vsync code
` [FFmpeg-devel] [PATCH 07/23] fftools/ffmpeg_mux_init: do not overwrite OutputStream.frame_rate for streamcopy
` [FFmpeg-devel] [PATCH 08/23] fftools/ffmpeg_enc: merge two adjacent video-specific blocks
` [FFmpeg-devel] [PATCH 09/23] fftools/ffmpeg_mux_init: only process -enc_time_base if the stream is encoded
` [FFmpeg-devel] [PATCH 10/23] fftools/ffmpeg: handle -enc_time_base -1 during stream creation
` [FFmpeg-devel] [PATCH 11/23] fftools/ffmpeg_enc: inline init_encoder_time_base() into its callers
` [FFmpeg-devel] [PATCH 12/23] fftools/ffmpeg_enc: do not guess frame durations from output framerate
` [FFmpeg-devel] [PATCH 13/23] fftools/ffmpeg_mux_init: do not overwrite OutputStream.frame_rate for encoding
` [FFmpeg-devel] [PATCH 14/23] fftools/ffmpeg: convert timestamps inside the muxer
` [FFmpeg-devel] [PATCH 15/23] fftools/ffmpeg: factor out attaching FrameData to a frame
` [FFmpeg-devel] [PATCH 16/23] fftools/ffmpeg: attach filter framerate to frames
` [FFmpeg-devel] [PATCH 17/23] fftools/ffmpeg_enc: stop using OutputStream.initialized
` [FFmpeg-devel] [PATCH 18/23] fftools/ffmpeg: simplify handling input -t for streamcopy
` [FFmpeg-devel] [PATCH 19/23] fftools/ffmpeg: stop explicitly closing output streams on input EOF
` [FFmpeg-devel] [PATCH 20/23] fftools/ffmpeg_mux: use a dedicated packet for BSF output
` [FFmpeg-devel] [PATCH 21/23] fftools/ffmpeg_mux: simplify calling of_output_packet()
` [FFmpeg-devel] [PATCH 22/23] fftools/ffmpeg_enc: use a private AVPacket instance for encoding
` [FFmpeg-devel] [PATCH 23/23] fftools/ffmpeg_mux: make OutputStream.pkt private

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

[FFmpeg-devel] [PATCH] avformat/rtcenc: Add WHIP muxer support for subsecond latency streaming
 2023-05-31 20:46 UTC  (4+ messages) - mbox.gz / Atom

[FFmpeg-devel] [PATCH v2 1/5] configure: aarch64: Support assembling the dotprod and i8mm arch extensions
 2023-05-31 19:37 UTC  (7+ messages) - mbox.gz / Atom
` [FFmpeg-devel] [PATCH v2 2/5] aarch64: Add cpu flags for the dotprod and i8mm extensions
` [FFmpeg-devel] [PATCH v2 3/5] aarch64: Add Linux runtime cpu feature detection using getauxval(AT_HWCAP)
` [FFmpeg-devel] [PATCH v2 4/5] aarch64: Add Apple runtime detection of dotprod and i8mm using sysctl
` [FFmpeg-devel] [PATCH v2 5/5] aarch64: Add Windows runtime detection of the dotprod instructions

[FFmpeg-devel] [PATCH] Web/Index: add post for new Vulkan decoding support
 2023-05-31 19:14 UTC  (3+ messages) - mbox.gz / Atom

[FFmpeg-devel] [PATCH 1/3] doc/examples/transcode: set packet timebase for decoding
 2023-05-31 19:02 UTC  (7+ messages) - mbox.gz / Atom
` [FFmpeg-devel] [PATCH 2/3] doc/examples/transcode: stop using decoder's AVCodecContext.time_base
` [FFmpeg-devel] [PATCH 3/3] doc/examples/transcode: convert timestamps between filtering and encoding

[FFmpeg-devel] [PATCH 01/24] fftools/ffmpeg_mux_init: merge ost_add_from_filter() to ost_add()
 2023-05-31 17:02 UTC  (27+ messages) - mbox.gz / Atom
` [FFmpeg-devel] [PATCH 02/24] fftools/ffmpeg: add logging for creating output streams
` [FFmpeg-devel] [PATCH 03/24] fftools/ffmpeg_filter: use a dedicated variable for marking simple filtergraphs
` [FFmpeg-devel] [PATCH 04/24] fftools/ffmpeg_filter: always pass graph description to fg_create()
` [FFmpeg-devel] [PATCH 05/24] fftools/ffmpeg_filter: store just the link label in OutputFilter
` [FFmpeg-devel] [PATCH 06/24] fftools/ffmpeg_filter: decouple allocating InputFilter and binding it to InputStream
` [FFmpeg-devel] [PATCH 07/24] fftools/ffmpeg_filter: move some functions higher up
` [FFmpeg-devel] [PATCH 08/24] fftools/ffmpeg_filter: create Input/OutputFilters together with FilterGraph
` [FFmpeg-devel] [PATCH 09/24] fftools/ffmpeg_filter: factor out binding an output stream to OutputFilter
` [FFmpeg-devel] [PATCH 10/24] fftools/ffmpeg_mux_init: move OutputFilter setup code to ffmpeg_filter
` [FFmpeg-devel] [PATCH 11/24] fftools/ffmpeg_filter: try to configure filtergraphs earlier
` [FFmpeg-devel] [PATCH 12/24] fftools/ffmpeg: constify AVSubtitle parameters as appropriate
` [FFmpeg-devel] [PATCH 13/24] fftools/ffmpeg_dec: move sub2video submission to ffmpeg_filter
` [FFmpeg-devel] [PATCH 14/24] fftools/ffmpeg_filter: move sub2video subtitle queue to InputFilterPriv
` [FFmpeg-devel] [PATCH 15/24] fftools/ffmpeg: tweak sub2video_heartbeat() arguments
` [FFmpeg-devel] [PATCH 16/24] fftools/ffmpeg: rework setting sub2video parameters
    ` [FFmpeg-devel] [PATCH] "
` [FFmpeg-devel] [PATCH 17/24] fftools/ffmpeg: move sub2video handling to ffmpeg_filter
` [FFmpeg-devel] [PATCH 18/24] fftools/ffmpeg_enc: stop configuring filters from encoder flush
` [FFmpeg-devel] [PATCH 19/24] fftools/ffmpeg_filter: drop unreachable code
` [FFmpeg-devel] [PATCH 20/24] fftools/ffmpeg_filter: make ifilter_has_all_input_formats() static
` [FFmpeg-devel] [PATCH 21/24] fftools/ffmpeg_filter: make InputStream.filter private
` [FFmpeg-devel] [PATCH 22/24] fftools/ffmpeg_filter: constify the argument of filtergraph_is_simple()
` [FFmpeg-devel] [PATCH 23/24] fftools/ffmpeg_mux: flush bsfs immediately on exceeding recoding time
` [FFmpeg-devel] [PATCH 24/24] fftools/ffmpeg_filter: do not flush encoders on parameter change

[FFmpeg-devel] [PATCH 1/4] configure: aarch64: Support assembling the dotprod and i8mm arch extensions
 2023-05-31 16:29 UTC  (10+ messages) - mbox.gz / Atom
` [FFmpeg-devel] [PATCH 3/4] aarch64: Add linux runtime cpu feature detection using getauxval(AT_HWCAP)

[FFmpeg-devel] [PATCH 1/5] lavfi/avfilter: export process_options()
 2023-05-31 14:39 UTC  (4+ messages) - mbox.gz / Atom
` [FFmpeg-devel] [PATCH 4/5] lavfi/graphparser: reimplement avfilter_graph_parse* using new API

[FFmpeg-devel] [PATCH v23 01/10] avcodec/evc: MPEG-5 EVC codec registration
 2023-05-31  4:47 UTC  (3+ messages) - mbox.gz / Atom

[FFmpeg-devel] [PATCH] avformat/oggparseflac: use the GetByteContext API
 2023-05-30 22:50 UTC  - mbox.gz / Atom

[FFmpeg-devel] [PATCH v3] decklink: Convert to using avpriv_packet_list functions
 2023-05-30 22:23 UTC  (3+ messages) - mbox.gz / Atom

[FFmpeg-devel] [PATCH] avformat/oggparseflac: check init_get_bits' result
 2023-05-30 21:28 UTC  (2+ messages) - mbox.gz / Atom

[FFmpeg-devel] [PATCH v2] avformat/imf: clean-up logging * remove log to NULL * remove extraneous logging
 2023-05-30 16:07 UTC  (2+ messages) - mbox.gz / Atom

[FFmpeg-devel] [PATCH v5] lavc/h264chroma: RISC-V V add motion compensation for 8x8 chroma blocks
 2023-05-30 15:16 UTC  (4+ messages) - mbox.gz / Atom

[FFmpeg-devel] [PATCH] avfilter/vf_colorspace: fix message for missing/incorrect colorspace
 2023-05-30 13:06 UTC  (2+ messages) - mbox.gz / Atom

[FFmpeg-devel] [PATCH] libavfilter: add vf_xfade_vulkan
 2023-05-30 12:30 UTC  (4+ messages) - mbox.gz / Atom
` [FFmpeg-devel] [PATCH v2] "

[FFmpeg-devel] [PATCH v2] avcodec/cbs_vp8: Add support for VP8 codec bitstream READ methods
 2023-05-30  8:01 UTC  (3+ messages) - mbox.gz / Atom

[FFmpeg-devel] [PATCH v3] avcodec/cbs_vp8: Add support for VP8 codec bitstream READ methods
 2023-05-30  7:59 UTC  - mbox.gz / Atom

[FFmpeg-devel] [PATCH] avformat/hlsenc: fix CODECS attribute of H.264
 2023-05-30  5:28 UTC  (8+ messages) - mbox.gz / Atom

[FFmpeg-devel] [PATCH 1/5] avcodec/h264_mp4toannexb_bsf: refactor start_code_size handling
 2023-05-30  3:00 UTC  (4+ messages) - mbox.gz / Atom

[FFmpeg-devel] [PATCH v1 1/3] lavfi/vaapi: Add function to get surface ID from AVFrame
 2023-05-30  0:29 UTC  (3+ messages) - mbox.gz / Atom
` [FFmpeg-devel] [PATCH v1 2/3] lavfi/vaapi: Add some debug message
` [FFmpeg-devel] [PATCH v1 3/3] lavfi/{denoise, procamp, scale, sharpness}_vaapi: Add passthrough mode

[FFmpeg-devel] [PATCH] lavfi: add noise_vulkan filter
 2023-05-29 19:14 UTC  - mbox.gz / Atom

[FFmpeg-devel] [PATCH] Optimization: support for libx264's mb_info
 2023-05-29 17:56 UTC  (4+ messages) - mbox.gz / Atom

[FFmpeg-devel] [BUGGY EXAMPLE] doc/examples/transcode: does not work
 2023-05-29 14:20 UTC  - mbox.gz / Atom

[FFmpeg-devel] [PATCH v23 05/10] avcodec/evc_encoder: Provided support for EVC encoder
 2023-05-29 13:10 UTC  (2+ messages) - mbox.gz / Atom

[FFmpeg-devel] [PATCH v23 04/10] avformat/evc_demuxer: Added demuxer to handle reading EVC video files
 2023-05-29 13:07 UTC  (2+ messages) - mbox.gz / Atom

[FFmpeg-devel] [PATCH v23 02/10] avcodec/evc_parser: Added parser implementation for EVC format
 2023-05-29 12:48 UTC  (2+ messages) - mbox.gz / Atom

[FFmpeg-devel] [Internet][PATCH 1/6] avcodec/cbs: add API to discard units by AVDiscard
 2023-05-29 12:32 UTC  - mbox.gz / Atom

[FFmpeg-devel] [PATCH] lavfi/vf_libplacebo: require v5.278 for importing
 2023-05-29 10:59 UTC  - mbox.gz / Atom

[FFmpeg-devel] [PATCH v22 02/10] avcodec/evc_parser: Added parser implementation for EVC format
 2023-05-29  9:02 UTC  (5+ messages) - mbox.gz / Atom

[FFmpeg-devel] [PATCH] vulkan_decode: do not align the image dimensions
 2023-05-29  3:13 UTC  (3+ messages) - mbox.gz / Atom

[FFmpeg-devel] [PATCH] vulkan: replace usage of %lu with %"SIZE_SPECIFIER"
 2023-05-29  1:33 UTC  (3+ messages) - mbox.gz / Atom

[FFmpeg-devel] [PATCH] vulkan_decode: check if yuv_sampler exists before freeing it
 2023-05-29  1:32 UTC  (3+ messages) - mbox.gz / Atom

[FFmpeg-devel] [PATCH] doc/filtering: document some Vulkan filters
 2023-05-28 23:38 UTC  (4+ messages) - mbox.gz / Atom

[FFmpeg-devel] [PATCH] lavu/tx: stop using av_log(NULL, )
 2023-05-28 23:16 UTC  (9+ messages) - mbox.gz / Atom
      ` [FFmpeg-devel] [PATCH 99/99] Vulkan patchset - complete

[FFmpeg-devel] [PATCH 1/6] Move bessel_i0() from swresample/resample to avutil/mathematics
 2023-05-28 21:15 UTC  (2+ messages) - mbox.gz / Atom

[FFmpeg-devel] [PATCH 1/5] avformat/mov: We do not support creation times of 300 billion years ago
 2023-05-28 21:03 UTC  (3+ messages) - mbox.gz / Atom

[FFmpeg-devel] [PATCH] lavc/aarch64: new optimization for 8-bit hevc_pel_uni_w_pixels, qpel_uni_w_h, qpel_uni_w_v, qpel_uni_w_hv and qpel_h
 2023-05-28  6:26 UTC  (12+ messages) - mbox.gz / Atom

[FFmpeg-devel] [PATCH] avfilter/af_aresample: switch to activate
 2023-05-27 15:56 UTC  (4+ messages) - mbox.gz / Atom

[FFmpeg-devel] [PATCH] avfilter/af_apad: switch to activate
 2023-05-27 15:51 UTC  (5+ messages) - mbox.gz / Atom

[FFmpeg-devel] [PATCH] nellymoser: user float literals for table
 2023-05-27 13:15 UTC  (4+ messages) - mbox.gz / Atom

[FFmpeg-devel] [PATCH] fate: add adpcm_ima_cunning tests
 2023-05-27 11:40 UTC  (2+ messages) - mbox.gz / Atom

[FFmpeg-devel] [PATCH v4 0/2] Animated JPEG XL Support
 2023-05-26 20:55 UTC  (3+ messages) - mbox.gz / Atom
` [FFmpeg-devel] [PATCH v4 1/2] avcodec/libjxldec: add animated decode support
` [FFmpeg-devel] [PATCH v4 2/2] avformat/jpegxl_anim_dec: add animated JPEG XL demuxer

[FFmpeg-devel] [PATCH 1/3] avutil/dict: add av_dict_pop
 2023-05-26 20:51 UTC  (8+ messages) - mbox.gz / Atom

[FFmpeg-devel] [PATCH 55/97] Vulkan patchset part 2 - hwcontext rewrite and filtering
 2023-05-26 20:50 UTC  (7+ messages) - mbox.gz / Atom

[FFmpeg-devel] [PATCH] fftools/ffmpeg_dec: abort if avcodec_send_packet() returns EAGAIN
 2023-05-26 19:57 UTC  (3+ messages) - mbox.gz / Atom

[FFmpeg-devel] drawtext filter
 2023-05-26 12:19 UTC  (17+ messages) - mbox.gz / Atom

[FFmpeg-devel] [PATCH] avcodec/videotoolboxenc: add CBP/CHP profile
 2023-05-26 11:37 UTC  (2+ messages) - mbox.gz / Atom
` [FFmpeg-devel] =?gb18030?b?u9i4tKO6W1BBVENIXSBhdmNvZGVjL3ZpZGVv?= =?gb18030?q?toolboxenc=3A_add_CBP/CHP_profile?=

[FFmpeg-devel] [PATCH] configure: Stop undeffing __STRICT_ANSI__ for mingw/cygwin targets
 2023-05-26 10:48 UTC  - mbox.gz / Atom

[FFmpeg-devel] [PATCH v23 10/10] avcodec/evc: Changes in MAINTAINERS file
 2023-05-26 10:34 UTC  - mbox.gz / Atom

[FFmpeg-devel] [PATCH v23 09/10] avcodec/evc: Changes in Changelog file
 2023-05-26 10:33 UTC  - mbox.gz / Atom

[FFmpeg-devel] [PATCH v23 08/10] avformat/mov_demuxer: Extended MOV demuxer to handle EVC video content
 2023-05-26 10:33 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