From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from ffbox0-bg.mplayerhq.hu (ffbox0-bg.ffmpeg.org [79.124.17.100]) by master.gitmailbox.com (Postfix) with ESMTP id 47C28485EF for ; Mon, 11 Dec 2023 15:07:37 +0000 (UTC) Received: from [127.0.1.1] (localhost [127.0.0.1]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTP id D7AD868D17F; Mon, 11 Dec 2023 17:07:34 +0200 (EET) Received: from shout01.mail.de (shout01.mail.de [62.201.172.24]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTPS id EAA4068D121 for ; Mon, 11 Dec 2023 17:07:27 +0200 (EET) Received: from postfix01.mail.de (postfix01.bt.mail.de [10.0.121.125]) by shout01.mail.de (Postfix) with ESMTP id 7422D240E23 for ; Mon, 11 Dec 2023 16:07:27 +0100 (CET) Received: from smtp01.mail.de (smtp02.bt.mail.de [10.0.121.212]) by postfix01.mail.de (Postfix) with ESMTP id 5D6DC8010F for ; Mon, 11 Dec 2023 16:07:27 +0100 (CET) Received: from [127.0.0.1] (localhost [127.0.0.1]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp01.mail.de (Postfix) with ESMTPSA id 9CD77240CCF for ; Mon, 11 Dec 2023 16:07:26 +0100 (CET) To: ffmpeg-devel@ffmpeg.org Date: Mon, 11 Dec 2023 16:07:20 +0100 Message-Id: <20231211150725.46473-1-thilo.borgmann@mail.de> MIME-Version: 1.0 X-purgate: clean X-purgate: This mail is considered clean (visit http://www.eleven.de for further information) X-purgate-type: clean X-purgate-Ad: Categorized by eleven eXpurgate (R) http://www.eleven.de X-purgate: This mail is considered clean (visit http://www.eleven.de for further information) X-purgate: clean X-purgate-size: 1915 X-purgate-ID: 154282::1702307247-9252C878-D880BED0/0/0 Subject: [FFmpeg-devel] [PATCH 0/5] avfilter: Add fsync filter X-BeenThere: ffmpeg-devel@ffmpeg.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: FFmpeg development discussions and patches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , From: Thilo Borgmann via ffmpeg-devel Reply-To: FFmpeg development discussions and patches Cc: Thilo Borgmann Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Errors-To: ffmpeg-devel-bounces@ffmpeg.org Sender: "ffmpeg-devel" Archived-At: List-Archive: List-Post: Synchronize video frames with an external mapping from a file. Follows up on the idea in https://lists.ffmpeg.org/pipermail/ffmpeg-devel/2023-January/305986.html implemented as a filter. Not storing the frame map in a probably huge string but buffering piece-wise. Thilo Borgmann (5): fftools/ffmpeg: split loop for parsing and validation of -stats_* specifiers fftools/ffmpeg: move parsing of -stats_* specifiers to lavu/parseutils reindent after last commit avfilter: Add fsync filter fate: Add fsync filter tests Changelog | 1 + doc/filters.texi | 52 +++++ fftools/ffmpeg.h | 33 +-- fftools/ffmpeg_enc.c | 3 +- fftools/ffmpeg_mux_init.c | 152 ++----------- libavfilter/Makefile | 1 + libavfilter/allfilters.c | 1 + libavfilter/vf_fsync.c | 376 +++++++++++++++++++++++++++++++ libavformat/version.h | 2 +- libavutil/parseutils.c | 176 +++++++++++++++ libavutil/parseutils.h | 102 +++++++++ libavutil/version.h | 2 +- tests/Makefile | 6 +- tests/fate/filter-video.mak | 8 + tests/filtergraphs/fsync-down | 2 + tests/filtergraphs/fsync-up | 2 + tests/maps/fsync-down | 7 + tests/maps/fsync-up | 57 +++++ tests/ref/fate/filter-fsync-down | 12 + tests/ref/fate/filter-fsync-up | 62 +++++ 20 files changed, 891 insertions(+), 166 deletions(-) create mode 100644 libavfilter/vf_fsync.c create mode 100644 tests/filtergraphs/fsync-down create mode 100644 tests/filtergraphs/fsync-up create mode 100644 tests/maps/fsync-down create mode 100644 tests/maps/fsync-up create mode 100644 tests/ref/fate/filter-fsync-down create mode 100644 tests/ref/fate/filter-fsync-up -- 2.37.1 (Apple Git-137.1) _______________________________________________ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above, or email ffmpeg-devel-request@ffmpeg.org with subject "unsubscribe".