Git Inbox Mirror of the ffmpeg-devel mailing list - see https://ffmpeg.org/mailman/listinfo/ffmpeg-devel
 help / color / mirror / Atom feed
From: quietvoid <tcchlisop0@gmail.com>
To: FFmpeg development discussions and patches <ffmpeg-devel@ffmpeg.org>
Subject: Re: [FFmpeg-devel] [PATCH v11 5/5] fate/matroska: Add tests for reading/writing BlockAdditionMapping elements
Date: Sat, 1 Jan 2022 11:54:24 -0500
Message-ID: <CA+Nhy-AgRaJo-29AhnzG9Xsj1NDgfmg5_kSWmpB5_9+aG5eJJQ@mail.gmail.com> (raw)
In-Reply-To: <AM7PR03MB6660859AC72A85D9541078388F479@AM7PR03MB6660.eurprd03.prod.outlook.com>

On Sat, Jan 1, 2022 at 2:57 AM Andreas Rheinhardt
<andreas.rheinhardt@outlook.com> wrote:
>
> quietvoid:
> > Tests the parsing and writing of AVDOVIDecoderConfigurationRecord,
> > when it is present as a Dolby Vision configuration block addition mapping.
> >
> > Signed-off-by: quietvoid <tcChlisop0@gmail.com>
> > ---
> > The required regression test file is available here: https://0x0.st/-hWK.mkv
> > Should be moved to fate-suite/mkv/dovi-p5.mkv
> >
> > It is a blank frame encoded with x265.
> > ---
> >  tests/fate/matroska.mak                      |   9 +
> >  tests/ref/fate/matroska-dovi-config-profile5 |  13 ++
> >  tests/ref/fate/matroska-dovi-write-config    | 223 +++++++++++++++++++
> >  3 files changed, 245 insertions(+)
> >  create mode 100644 tests/ref/fate/matroska-dovi-config-profile5
> >  create mode 100644 tests/ref/fate/matroska-dovi-write-config
> >
> > diff --git a/tests/fate/matroska.mak b/tests/fate/matroska.mak
> > index e117a0f6a6..ec2a0607b2 100644
> > --- a/tests/fate/matroska.mak
> > +++ b/tests/fate/matroska.mak
> > @@ -138,6 +138,15 @@ FATE_MATROSKA_FFMPEG_FFPROBE-$(call ALLYES, FILE_PROTOCOL WEBVTT_DEMUXER  \
> >                                 += fate-webm-webvtt-remux
> >  fate-webm-webvtt-remux: CMD = transcode webvtt $(TARGET_SAMPLES)/sub/WebVTT_capability_tester.vtt webm "-map 0 -map 0 -map 0 -map 0 -c:s copy -disposition:0 original+descriptions+hearing_impaired -disposition:1 lyrics+default+metadata -disposition:2 comment+forced -disposition:3 karaoke+captions+dub" "-map 0:0 -map 0:1 -c copy" "" "-show_entries stream_disposition:stream=index,codec_name:packet=stream_index,pts:packet_side_data_list -show_data_hash CRC32"
> >
> > +FATE_MATROSKA_FFMPEG_FFPROBE-$(call ALLYES, MATROSKA_DEMUXER) += fate-matroska-dovi-config-profile5
>
> This should be FATE_MATROSKA_FFPROBE, not FATE_MATROSKA_FFMPEG_FFPROBE.
> And actually, you need the file protocol; if you don't check for it,
> you can just use FATE_MATROSKA_FFPROBE-$(CONFIG_MATROSKA_DEMUXER).
>
> > +fate-matroska-dovi-config-profile5: CMD = run ffprobe$(PROGSSUF)$(EXESUF) -show_entries stream_side_data_list -select_streams v -v 0 $(TARGET_SAMPLES)/mkv/dovi-p5.mkv
> > +
> > +FATE_MATROSKA_FFMPEG_FFPROBE-$(call ALLYES, FILE_PROTOCOL PIPE_PROTOCOL \
> > +                                            MOV_DEMUXER MATROSKA_MUXER \
> > +                                            FRAMECRC_MUXER) \
>
> You will need the MATROSKA_DEMUXER, too; after all, the created file is
> read and demuxed.

Thanks again. Fixed along with the other comments (for the other patches).
v12: https://ffmpeg.org/pipermail/ffmpeg-devel/2022-January/290630.html

> > +                               += fate-matroska-dovi-write-config
> > +fate-matroska-dovi-write-config: CMD = transcode mov $(TARGET_SAMPLES)/hevc/dv84.mov matroska "-c:v copy" "-map 0 -c copy" "" "-show_entries stream_side_data_list -select_streams v -v 0"
> > +
> >  FATE_SAMPLES_AVCONV += $(FATE_MATROSKA-yes)
> >  FATE_SAMPLES_FFPROBE += $(FATE_MATROSKA_FFPROBE-yes)
> >  FATE_SAMPLES_FFMPEG_FFPROBE += $(FATE_MATROSKA_FFMPEG_FFPROBE-yes)
> _______________________________________________
> 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".
_______________________________________________
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:[~2022-01-01 16:54 UTC|newest]

Thread overview: 9+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-01-01  4:16 [FFmpeg-devel] [PATCH v11 0/5] Add support for Matroska " quietvoid
2022-01-01  4:16 ` [FFmpeg-devel] [PATCH v11 1/5] avformat/dovi_isom: Implement Dolby Vision configuration parsing/writing quietvoid
2022-01-01  4:16 ` [FFmpeg-devel] [PATCH v11 2/5] avformat/matroska{dec, enc}: Parse BlockAdditionMapping elements quietvoid
2022-01-01  4:16 ` [FFmpeg-devel] [PATCH v11 3/5] avformat/mov: Refactor mov_read_dvcc_dvvc to use ff_isom_parse_dvcc_dvvc quietvoid
2022-01-01  7:30   ` Andreas Rheinhardt
2022-01-01  4:16 ` [FFmpeg-devel] [PATCH v11 4/5] avformat/movenc: Refactor mov_write_dvcc_dvvc_tag to use ff_isom_put_dvcc_dvvc quietvoid
2022-01-01  4:16 ` [FFmpeg-devel] [PATCH v11 5/5] fate/matroska: Add tests for reading/writing BlockAdditionMapping elements quietvoid
2022-01-01  7:57   ` Andreas Rheinhardt
2022-01-01 16:54     ` quietvoid [this message]

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=CA+Nhy-AgRaJo-29AhnzG9Xsj1NDgfmg5_kSWmpB5_9+aG5eJJQ@mail.gmail.com \
    --to=tcchlisop0@gmail.com \
    --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