From: Anton Khirnov <anton@khirnov.net> To: ffmpeg-devel@ffmpeg.org Subject: [FFmpeg-devel] [PATCH 01/18] tests/fate/mov: add a test for dv audio demuxed through dv demuxer Date: Wed, 24 Aug 2022 10:43:01 +0200 Message-ID: <20220824084318.333-1-anton@khirnov.net> (raw) --- tests/fate/mov.mak | 3 +++ tests/ref/fate/mov-dvaudio | 31 +++++++++++++++++++++++++++++++ 2 files changed, 34 insertions(+) create mode 100644 tests/ref/fate/mov-dvaudio diff --git a/tests/fate/mov.mak b/tests/fate/mov.mak index 8a7218a215..9e8bb729a6 100644 --- a/tests/fate/mov.mak +++ b/tests/fate/mov.mak @@ -17,6 +17,7 @@ FATE_MOV = fate-mov-3elist \ fate-mov-bbi-elst-starts-b \ fate-mov-neg-firstpts-discard-frames \ fate-mov-stream-shorter-than-movie \ + fate-mov-dvaudio \ # FIXME: Uncomment these two lines once the test files are uploaded to the fate # server. # fate-mov-avif-demux-still-image-1-item \ @@ -104,6 +105,8 @@ fate-mov-neg-firstpts-discard-frames: CMD = framemd5 -flags +bitexact -i $(TARGE # Makes sure that no frame is dropped/duplicated with fps filter due to start_time / duration miscalculations. fate-mov-stream-shorter-than-movie: CMD = framemd5 -flags +bitexact -i $(TARGET_SAMPLES)/mov/mov_stream_shorter_than_movie.mov -vf fps=fps=24 -an +fate-mov-dvaudio: CMD = framecrc -i $(TARGET_SAMPLES)/mov/qt_dv_pal_test_cut.mov -c copy -map 0:a + fate-mov-aac-2048-priming: CMD = run ffprobe$(PROGSSUF)$(EXESUF) -show_packets -print_format compact $(TARGET_SAMPLES)/mov/aac-2048-priming.mov fate-mov-zombie: CMD = run ffprobe$(PROGSSUF)$(EXESUF) -show_streams -show_packets -show_frames -bitexact -print_format compact $(TARGET_SAMPLES)/mov/white_zombie_scrunch-part.mov diff --git a/tests/ref/fate/mov-dvaudio b/tests/ref/fate/mov-dvaudio new file mode 100644 index 0000000000..13e551c722 --- /dev/null +++ b/tests/ref/fate/mov-dvaudio @@ -0,0 +1,31 @@ +#tb 0: 1/48000 +#media_type 0: audio +#codec_id 0: pcm_s16le +#sample_rate 0: 48000 +#channel_layout_name 0: stereo +0, -720, -720, 1920, 7680, 0xdb43ddfd, S=1, 10 +0, 1200, 1200, 1920, 7680, 0xcd872ca8 +0, 3120, 3120, 1920, 7680, 0xa1800c21 +0, 5040, 5040, 1920, 7680, 0x87fee57a +0, 6960, 6960, 1920, 7680, 0x2e926842 +0, 8880, 8880, 1920, 7680, 0xaf141f81 +0, 10800, 10800, 1920, 7680, 0xf0bc6ad8 +0, 12720, 12720, 1920, 7680, 0x18139585 +0, 14640, 14640, 1920, 7680, 0xadf3e99e +0, 16560, 16560, 1920, 7680, 0xb18e02e3 +0, 18480, 18480, 1920, 7680, 0x4d8e9e72 +0, 20400, 20400, 1920, 7680, 0x27f3fd22 +0, 22320, 22320, 1920, 7680, 0xf896b2c0 +0, 24240, 24240, 1920, 7680, 0xf707d734 +0, 26160, 26160, 1920, 7680, 0xc3d4bf6a +0, 28080, 28080, 1920, 7680, 0xaf4f92f0 +0, 30000, 30000, 1920, 7680, 0xf72ea49d +0, 31920, 31920, 1920, 7680, 0xbd975338 +0, 33840, 33840, 1920, 7680, 0x50ab26db +0, 35760, 35760, 1920, 7680, 0x2a70b14f +0, 37680, 37680, 1920, 7680, 0x32e3ce37 +0, 39600, 39600, 1920, 7680, 0x7f5b54ec +0, 41520, 41520, 1920, 7680, 0x2cd5478f +0, 43440, 43440, 1920, 7680, 0x7dda4151 +0, 45360, 45360, 1920, 7680, 0x09b4886d +0, 47280, 47280, 1920, 7680, 0x4824062e -- 2.35.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".
next reply other threads:[~2022-08-24 8:44 UTC|newest] Thread overview: 45+ messages / expand[flat|nested] mbox.gz Atom feed top 2022-08-24 8:43 Anton Khirnov [this message] 2022-08-24 8:43 ` [FFmpeg-devel] [PATCH 02/18] lavf/dv: remove DVMuxContext declaration from dv.h Anton Khirnov 2022-08-24 11:55 ` Andreas Rheinhardt 2022-08-24 8:43 ` [FFmpeg-devel] [PATCH 03/18] lavf/dv: always provide avpriv_dv_* symbols Anton Khirnov 2022-08-24 16:25 ` Andreas Rheinhardt 2022-08-25 9:47 ` Anton Khirnov 2022-08-24 8:43 ` [FFmpeg-devel] [PATCH 04/18] lavc/dvdec: drop the only use of DVVideoContext.avctx Anton Khirnov 2022-08-24 12:24 ` Andreas Rheinhardt 2022-08-24 8:43 ` [FFmpeg-devel] [PATCH 05/18] lavc/dv: remove ff_dvvideo_init() Anton Khirnov 2022-08-24 12:27 ` Andreas Rheinhardt 2022-08-25 10:10 ` [FFmpeg-devel] [PATCH] " Anton Khirnov 2022-08-25 9:48 ` [FFmpeg-devel] [PATCH 05/18] " Anton Khirnov 2022-08-25 9:55 ` Anton Khirnov 2022-08-24 8:43 ` [FFmpeg-devel] [PATCH 06/18] lavc/dv: do not pass DVVideoContext to ff_dv_init_dynamic_tables() Anton Khirnov 2022-08-24 12:28 ` Andreas Rheinhardt 2022-08-24 8:43 ` [FFmpeg-devel] [PATCH 07/18] lavc/dv: do not pass DVVideoContext to dv_calculate_mb_xy() Anton Khirnov 2022-08-24 12:57 ` Andreas Rheinhardt 2022-08-24 8:43 ` [FFmpeg-devel] [PATCH 08/18] lavc/dvdec: stop using DVVideoContext Anton Khirnov 2022-08-24 12:33 ` Andreas Rheinhardt 2022-08-24 8:43 ` [FFmpeg-devel] [PATCH 09/18] lavc/dvenc: " Anton Khirnov 2022-08-24 12:36 ` Andreas Rheinhardt 2022-08-24 8:43 ` [FFmpeg-devel] [PATCH 10/18] lavc/dv.h: move encoder/decoder-specific code to a new header Anton Khirnov 2022-08-24 12:52 ` Andreas Rheinhardt 2022-08-24 8:43 ` [FFmpeg-devel] [PATCH 11/18] lavc/dv: rename constants to follow our naming conventions Anton Khirnov 2022-08-24 12:38 ` Andreas Rheinhardt 2022-08-24 8:43 ` [FFmpeg-devel] [PATCH 12/18] lavf/dv: make returning the video packet optional Anton Khirnov 2022-08-24 16:03 ` Andreas Rheinhardt 2022-08-31 2:39 ` Anton Khirnov 2022-08-24 8:43 ` [FFmpeg-devel] [PATCH 13/18] lavf/dv: return a meaningful error code from avpriv_dv_produce_packet() Anton Khirnov 2022-08-24 13:07 ` Andreas Rheinhardt 2022-08-31 2:48 ` [FFmpeg-devel] [PATCH] " Anton Khirnov 2022-08-24 8:43 ` [FFmpeg-devel] [PATCH 14/18] lavf/dv: forward errors from avformat_new_stream() Anton Khirnov 2022-08-24 8:43 ` [FFmpeg-devel] [PATCH 15/18] lavf/dv: set non-changing AVStream fields only once Anton Khirnov 2022-08-24 13:13 ` Andreas Rheinhardt 2022-08-24 8:43 ` [FFmpeg-devel] [PATCH 16/18] lavf/dv: set audio bitrate only at stream creation Anton Khirnov 2022-08-24 13:13 ` Andreas Rheinhardt 2022-08-24 14:33 ` Andreas Rheinhardt 2022-08-25 10:23 ` Anton Khirnov 2022-08-24 8:43 ` [FFmpeg-devel] [PATCH 17/18] lavf/dv: do not update AVCodecParameters.sample_rate while demuxing Anton Khirnov 2022-08-24 14:20 ` Andreas Rheinhardt 2022-08-31 3:11 ` Anton Khirnov 2022-08-24 8:43 ` [FFmpeg-devel] [PATCH 18/18] lavf/dv: do not continuously set stream timebase Anton Khirnov 2022-08-24 14:42 ` Andreas Rheinhardt 2022-08-25 19:04 ` Marton Balint 2022-08-24 8:50 ` [FFmpeg-devel] [PATCH 01/18] tests/fate/mov: add a test for dv audio demuxed through dv demuxer Anton Khirnov
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=20220824084318.333-1-anton@khirnov.net \ --to=anton@khirnov.net \ --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