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 6D1724105F for ; Sun, 2 Jan 2022 23:48:25 +0000 (UTC) Received: from [127.0.1.1] (localhost [127.0.0.1]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTP id E9B9C687992; Mon, 3 Jan 2022 01:48:22 +0200 (EET) Received: from mail-pj1-f46.google.com (mail-pj1-f46.google.com [209.85.216.46]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTPS id 2883868A7FD for ; Mon, 3 Jan 2022 01:48:16 +0200 (EET) Received: by mail-pj1-f46.google.com with SMTP id c9-20020a17090a1d0900b001b2b54bd6c5so14403467pjd.1 for ; Sun, 02 Jan 2022 15:48:16 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=x-gm-message-state:from:to:cc:subject:date:message-id:mime-version :content-transfer-encoding; bh=VvXLL+U6x7KX3hYd1435ugSl5yWm3cVBh7/SLoyh5Ig=; b=1xsjloBrx4rVJM+Ca/WaNJ3YEzYMoPxzEpqEFoX2rEumaEXXc4nPtY9cYdD4XecTzW 3fGHQ2Ox5ZOozOKkm4ZStkCjeRemvDcc1LTRIkFcq5LIsID5IeoecFNBAJLzoFsIGose H+yQFcy2iJ5i++6aNcLbpc317nYXrBzyq+LQfV1ElJWNGhGQIHHFqfFmp4fOCCG/Li4e jvbMfENDncg2JAj2ZcIydckbffrpwvyM2xDUHWw0uGRib+sti7na86qsJP5X5RgVOtel ULU15TjTlTVL8Th90Dyts/a1Kyp9NZszDvV9mzICvW29j3zzZiUHWqVHl+FzYRBztieo Os/Q== X-Gm-Message-State: AOAM532Vo12ioAZydOBCTZqmwKtm0CYYsD3bPaXh8onX2VI041x9Eq8i y9K95Q5pYy07UfuAQlAMHS4abbFj2gU= X-Google-Smtp-Source: ABdhPJxbkEuffycAiOgavCJDOPOC1kq9f9rVTUDthu6q6DGt/Iv1haTHHi4NrVKG5sKreXhnlimY1g== X-Received: by 2002:a17:90b:4d92:: with SMTP id oj18mr53220261pjb.226.1641167294050; Sun, 02 Jan 2022 15:48:14 -0800 (PST) Received: from localhost (76-14-89-2.sf-cable.astound.net. [76.14.89.2]) by smtp.gmail.com with ESMTPSA id j1sm7434344pfc.49.2022.01.02.15.48.12 (version=TLS1_2 cipher=ECDHE-ECDSA-CHACHA20-POLY1305 bits=256/256); Sun, 02 Jan 2022 15:48:13 -0800 (PST) Received: by localhost (sSMTP sendmail emulation); Sun, 02 Jan 2022 15:47:54 -0800 From: pal@sandflow.com To: ffmpeg-devel@ffmpeg.org Date: Sun, 2 Jan 2022 15:47:53 -0800 Message-Id: <20220102234753.6855-1-pal@sandflow.com> X-Mailer: git-send-email 2.34.1.windows.1 MIME-Version: 1.0 Subject: [FFmpeg-devel] [PATCH v3] avformat/imf: add IMF CPL with repeated resources to FATE 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: , Reply-To: FFmpeg development discussions and patches Cc: Pierre-Anthony Lemieux 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: From: Pierre-Anthony Lemieux Signed-off-by: Pierre-Anthony Lemieux --- Notes: The `fate-imf-cpl-with-repeat` target requires following files (<256 kB) to placed under $(TARGET_SAMPLES)/imf/countdown/: http://ffmpeg-imf-samples-public.s3-website-us-west-1.amazonaws.com/countdown/ASSETMAP.xml http://ffmpeg-imf-samples-public.s3-website-us-west-1.amazonaws.com/countdown/CPL_f5095caa-f204-4e1c-8a84-7af48c7ae16b.xml http://ffmpeg-imf-samples-public.s3-website-us-west-1.amazonaws.com/countdown/PKL_4671220f-c87a-4660-bf2a-6ef848791a2c.xml http://ffmpeg-imf-samples-public.s3-website-us-west-1.amazonaws.com/countdown/frame-counter.mxf tests/Makefile | 1 + tests/fate/imf.mak | 6 ++++ tests/ref/fate/imf-cpl-with-repeat | 46 ++++++++++++++++++++++++++++++ 3 files changed, 53 insertions(+) create mode 100644 tests/fate/imf.mak create mode 100644 tests/ref/fate/imf-cpl-with-repeat diff --git a/tests/Makefile b/tests/Makefile index 87807ed31f..c4c31ae871 100644 --- a/tests/Makefile +++ b/tests/Makefile @@ -153,6 +153,7 @@ include $(SRC_PATH)/tests/fate/hlsenc.mak include $(SRC_PATH)/tests/fate/hw.mak include $(SRC_PATH)/tests/fate/id3v2.mak include $(SRC_PATH)/tests/fate/image.mak +include $(SRC_PATH)/tests/fate/imf.mak include $(SRC_PATH)/tests/fate/indeo.mak include $(SRC_PATH)/tests/fate/libavcodec.mak include $(SRC_PATH)/tests/fate/libavdevice.mak diff --git a/tests/fate/imf.mak b/tests/fate/imf.mak new file mode 100644 index 0000000000..e2c35bef82 --- /dev/null +++ b/tests/fate/imf.mak @@ -0,0 +1,6 @@ +FATE_IMF += fate-imf-cpl-with-repeat +fate-imf-cpl-with-repeat: CMD = framecrc -i $(TARGET_SAMPLES)/imf/countdown/CPL_f5095caa-f204-4e1c-8a84-7af48c7ae16b.xml -c:v copy + +FATE_SAMPLES_AVCONV-$(call ALLYES, IMF_DEMUXER MXF_DEMUXER) += $(FATE_IMF) + +fate-imf: $(FATE_IMF) diff --git a/tests/ref/fate/imf-cpl-with-repeat b/tests/ref/fate/imf-cpl-with-repeat new file mode 100644 index 0000000000..38092d542c --- /dev/null +++ b/tests/ref/fate/imf-cpl-with-repeat @@ -0,0 +1,46 @@ +#tb 0: 1/24 +#media_type 0: video +#codec_id 0: jpeg2000 +#dimensions 0: 1920x1080 +#sar 0: 0/1 +0, 0, 0, 1, 5034, 0x29a972c1 +0, 1, 1, 1, 7214, 0x704fb452 +0, 2, 2, 1, 8496, 0xee9d2692 +0, 3, 3, 1, 4917, 0xd35c1a2f +0, 4, 4, 1, 8803, 0xdc01ad91 +0, 5, 5, 1, 8426, 0xacc4413a +0, 6, 6, 1, 9626, 0x46865f1e +0, 7, 7, 1, 7409, 0xa21efc69 +0, 8, 8, 1, 7409, 0xa21efc69 +0, 9, 9, 1, 7409, 0xa21efc69 +0, 10, 10, 1, 7409, 0xa21efc69 +0, 11, 11, 1, 7409, 0xa21efc69 +0, 12, 12, 1, 7409, 0xa21efc69 +0, 13, 13, 1, 7409, 0xa21efc69 +0, 14, 14, 1, 7409, 0xa21efc69 +0, 15, 15, 1, 7409, 0xa21efc69 +0, 16, 16, 1, 7409, 0xa21efc69 +0, 17, 17, 1, 7409, 0xa21efc69 +0, 18, 18, 1, 7409, 0xa21efc69 +0, 19, 19, 1, 7409, 0xa21efc69 +0, 20, 20, 1, 7409, 0xa21efc69 +0, 21, 21, 1, 7409, 0xa21efc69 +0, 22, 22, 1, 7409, 0xa21efc69 +0, 23, 23, 1, 7409, 0xa21efc69 +0, 24, 24, 1, 7409, 0xa21efc69 +0, 25, 25, 1, 7409, 0xa21efc69 +0, 26, 26, 1, 7409, 0xa21efc69 +0, 27, 27, 1, 7409, 0xa21efc69 +0, 28, 28, 1, 7409, 0xa21efc69 +0, 29, 29, 1, 7409, 0xa21efc69 +0, 30, 30, 1, 7409, 0xa21efc69 +0, 30, 31, 1, 8426, 0xacc4413a +0, 30, 32, 1, 9626, 0x46865f1e +0, 30, 33, 1, 5412, 0xf4884a91 +0, 30, 34, 1, 9129, 0xbdb77fb3 +0, 30, 35, 1, 10009, 0xac8a3ec5 +0, 30, 36, 1, 7204, 0x4e239746 +0, 30, 37, 1, 9413, 0x27620541 +0, 30, 38, 1, 10725, 0x2feb9589 +0, 30, 39, 1, 7101, 0x62159f85 +0, 30, 40, 1, 10984, 0xa2eb2e49 -- 2.17.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".