Git Inbox Mirror of the ffmpeg-devel mailing list - see https://ffmpeg.org/mailman/listinfo/ffmpeg-devel
 help / color / mirror / Atom feed
From: Nicolas Gaullier <nicolas.gaullier@cji.paris>
To: ffmpeg-devel@ffmpeg.org
Cc: Nicolas Gaullier <nicolas.gaullier@cji.paris>
Subject: [FFmpeg-devel] [PATCH v2 00/20] fate: fix several dependencies
Date: Mon, 23 Jun 2025 19:41:32 +0200
Message-ID: <20250623174239.624027-1-nicolas.gaullier@cji.paris> (raw)

For remembering
https://ffmpeg.org/pipermail/ffmpeg-devel/2024-October/335422.html

This v2 is a "full rebase", which means
some problems have been fixed in the while (not many),
some others are new.

Nicolas Gaullier (20):
  tests/Makefile: make easier to check for multiple dependencies
  fate/all: add missing dependencies for extradata bsf
  fate/demux: fix multiple dependencies
  fate/all: switch-fix mov muxer dependency to mp4 muxer dependency
  fate/mov: fix multiple dependencies
  fate/gapless: fix multiple dependencies
  fate/lavf-container: fix multiple dependencies
  fate/vorbis: fix multiple dependencies
  fate/aac: fix multiple dependencies
  fate/audio: fix multiple dependencies
  fate/ac3: fix multiple dependencies
  fate/cover-art: fix multiple dependencies
  fate/hlsenc: fix multiple dependencies
  fate/mpeg4: fix multiple dependencies
  fate/pcm: fix multiple dependencies
  fate/hevc: fix multiple dependencies
  fate/all: fix multiple dependencies
  fate/all: add missing file protocol dependencies
  fate/all: add missing crc/framecrc/md5/framemd5/pipe dependencies
  libavcodec/tests: fix gitignore hashtable

 libavcodec/tests/.gitignore   |   1 +
 tests/Makefile                |  20 ++++---
 tests/fate/aac.mak            |  14 ++---
 tests/fate/ac3.mak            |  10 ++--
 tests/fate/acodec.mak         |   4 +-
 tests/fate/adpcm.mak          |  38 ++++++-------
 tests/fate/alac.mak           |   2 +-
 tests/fate/als.mak            |   3 +-
 tests/fate/amrnb.mak          |   2 +-
 tests/fate/amrwb.mak          |   2 +-
 tests/fate/api.mak            |   2 +-
 tests/fate/apng.mak           |   2 +-
 tests/fate/atrac.mak          |   6 +-
 tests/fate/audio.mak          |  32 +++++------
 tests/fate/caf.mak            |   2 +-
 tests/fate/cbs.mak            |   6 +-
 tests/fate/concatdec.mak      |   2 +-
 tests/fate/cover-art.mak      |  24 ++++----
 tests/fate/demux.mak          | 104 +++++++++++++++++-----------------
 tests/fate/dpcm.mak           |   4 +-
 tests/fate/enc_external.mak   |   6 +-
 tests/fate/ffmpeg.mak         |  10 ++--
 tests/fate/fifo-muxer.mak     |   2 +-
 tests/fate/filter-audio.mak   |  24 ++++----
 tests/fate/filter-video.mak   |  22 +++----
 tests/fate/fits.mak           |   4 +-
 tests/fate/flac.mak           |   2 +-
 tests/fate/flvenc.mak         |   2 +-
 tests/fate/gapless.mak        |  78 ++++++++++++-------------
 tests/fate/gif.mak            |   2 +-
 tests/fate/h264.mak           |  14 +++--
 tests/fate/hevc.mak           |  10 ++--
 tests/fate/hlsenc.mak         |  20 ++++---
 tests/fate/image.mak          |   6 +-
 tests/fate/imf.mak            |   3 +-
 tests/fate/indeo.mak          |  18 +++---
 tests/fate/lavf-container.mak |  32 +++++------
 tests/fate/lavf-video.mak     |   2 +-
 tests/fate/libavformat.mak    |   2 +-
 tests/fate/libswresample.mak  |   2 +-
 tests/fate/lossless-audio.mak |   8 +--
 tests/fate/matroska.mak       |  31 +++++-----
 tests/fate/microsoft.mak      |   4 +-
 tests/fate/monkeysaudio.mak   |   3 +-
 tests/fate/mov.mak            |  52 +++++++++--------
 tests/fate/mp3.mak            |   2 +-
 tests/fate/mpc.mak            |   8 +--
 tests/fate/mpeg4.mak          |  11 ++--
 tests/fate/mpegps.mak         |   2 +-
 tests/fate/ogg-flac.mak       |   2 +-
 tests/fate/oma.mak            |   2 +-
 tests/fate/pcm.mak            |  19 ++++---
 tests/fate/pixfmt.mak         |   1 +
 tests/fate/qoa.mak            |   6 +-
 tests/fate/real.mak           |  16 +++---
 tests/fate/seek.mak           |   8 +--
 tests/fate/segment.mak        |   6 +-
 tests/fate/subtitles.mak      |   7 ++-
 tests/fate/vcodec.mak         |   4 +-
 tests/fate/video.mak          |   4 +-
 tests/fate/voice.mak          |  16 +++---
 tests/fate/vorbis.mak         |  24 ++++----
 tests/fate/vpx.mak            |   4 +-
 tests/fate/vqf.mak            |   4 +-
 tests/fate/wavpack.mak        |   2 +-
 tests/fate/wma.mak            |  16 +++---
 tests/fate/xvid.mak           |   2 +-
 67 files changed, 415 insertions(+), 390 deletions(-)

-- 
2.47.2

_______________________________________________
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".

             reply	other threads:[~2025-06-23 17:43 UTC|newest]

Thread overview: 21+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-06-23 17:41 Nicolas Gaullier [this message]
2025-06-23 17:41 ` [FFmpeg-devel] [PATCH v2 01/20] tests/Makefile: make easier to check for multiple dependencies Nicolas Gaullier
2025-06-23 17:41 ` [FFmpeg-devel] [PATCH v2 02/20] fate/all: add missing dependencies for extradata bsf Nicolas Gaullier
2025-06-23 17:41 ` [FFmpeg-devel] [PATCH v2 03/20] fate/demux: fix multiple dependencies Nicolas Gaullier
2025-06-23 17:41 ` [FFmpeg-devel] [PATCH v2 04/20] fate/all: switch-fix mov muxer dependency to mp4 muxer dependency Nicolas Gaullier
2025-06-23 17:41 ` [FFmpeg-devel] [PATCH v2 05/20] fate/mov: fix multiple dependencies Nicolas Gaullier
2025-06-23 17:41 ` [FFmpeg-devel] [PATCH v2 06/20] fate/gapless: " Nicolas Gaullier
2025-06-23 17:41 ` [FFmpeg-devel] [PATCH v2 07/20] fate/lavf-container: " Nicolas Gaullier
2025-06-23 17:41 ` [FFmpeg-devel] [PATCH v2 08/20] fate/vorbis: " Nicolas Gaullier
2025-06-23 17:41 ` [FFmpeg-devel] [PATCH v2 09/20] fate/aac: " Nicolas Gaullier
2025-06-23 17:41 ` [FFmpeg-devel] [PATCH v2 10/20] fate/audio: " Nicolas Gaullier
2025-06-23 17:41 ` [FFmpeg-devel] [PATCH v2 11/20] fate/ac3: " Nicolas Gaullier
2025-06-23 17:41 ` [FFmpeg-devel] [PATCH v2 12/20] fate/cover-art: " Nicolas Gaullier
2025-06-23 17:41 ` [FFmpeg-devel] [PATCH v2 13/20] fate/hlsenc: " Nicolas Gaullier
2025-06-23 17:41 ` [FFmpeg-devel] [PATCH v2 14/20] fate/mpeg4: " Nicolas Gaullier
2025-06-23 17:41 ` [FFmpeg-devel] [PATCH v2 15/20] fate/pcm: " Nicolas Gaullier
2025-06-23 17:41 ` [FFmpeg-devel] [PATCH v2 16/20] fate/hevc: " Nicolas Gaullier
2025-06-23 17:41 ` [FFmpeg-devel] [PATCH v2 17/20] fate/all: " Nicolas Gaullier
2025-06-23 17:41 ` [FFmpeg-devel] [PATCH v2 18/20] fate/all: add missing file protocol dependencies Nicolas Gaullier
2025-06-23 17:41 ` [FFmpeg-devel] [PATCH v2 19/20] fate/all: add missing crc/framecrc/md5/framemd5/pipe dependencies Nicolas Gaullier
2025-06-23 17:41 ` [FFmpeg-devel] [PATCH v2 20/20] libavcodec/tests: fix gitignore hashtable Nicolas Gaullier

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20250623174239.624027-1-nicolas.gaullier@cji.paris \
    --to=nicolas.gaullier@cji.paris \
    --cc=ffmpeg-devel@ffmpeg.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link

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