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 D9CC940F17 for ; Sat, 1 Jan 2022 16:52:07 +0000 (UTC) Received: from [127.0.1.1] (localhost [127.0.0.1]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTP id 478A968B112; Sat, 1 Jan 2022 18:52:04 +0200 (EET) Received: from mail-ed1-f41.google.com (mail-ed1-f41.google.com [209.85.208.41]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTPS id 6F9DC68B0DC for ; Sat, 1 Jan 2022 18:51:58 +0200 (EET) Received: by mail-ed1-f41.google.com with SMTP id j6so119044801edw.12 for ; Sat, 01 Jan 2022 08:51:58 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20210112; h=from:to:cc:subject:date:message-id:mime-version :content-transfer-encoding; bh=Ne77/G1LHfLmbno7ezzzfHoBRmb/iGn2vgXrOMRqVgQ=; b=TyYYk6l+lFGZIYyPyj7bJFO8HxcYaZn+v8BamKB13JQnyhxaOy9yi+ZPRuFCghe9zI nQ7IvN5OJBJ7Hx0bVeb3eYZfJeUKq0ya40mvxjBqG9F+pOfol8jyQxzlU+UzklJbu5Mv P3EOHL6o+85bXH5jsK5CU6w+CHM8wVrHubwW84wttNJ3K4kZc5PipnEtBLIp1b0roaMd BtNmXop2/G3NFb6uDR41n5Sz9rZIxkdNKyaNG1+UeGCHki5mWrJmnXM76SV8edLvK1Oy f9h2Mb3GJSLeRukgNq1u1piRHzyryIujTfF31oWn2RamPgJ4Y6Fwxe8LcDtaozSV/E9b ASiA== 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=Ne77/G1LHfLmbno7ezzzfHoBRmb/iGn2vgXrOMRqVgQ=; b=7GMNn7fpUTvF7KG2EymaFg6TpAkVsYg42dLyLi5y6zd/EtFcPt7EgMhVQHU8TvZ4t8 U4QqmUcsx1OmVCJVASMLJ3xOTrUewYnfgZJ4NCq53BT0o54xVRbkYIsZtnsiUSM65Muw o83Jd5pCoMuzpR6ckQTIMMcqWg1s49LTnQ83XqgFyIbajq9zAcXj51nGdUXzqLMH2Kn6 5gGQq5TwxZZZJJqblsWKJymXe8l8l+pjEPiusRFlYaxa9xkSoSUf2y42x52QJFEyy4mz xcQVFWHOCxV7+IbFD51c6HdhXkJKm2Hx2CzdZ5ckAfQRQ+Lev6USmP+IJfpWk3GkRmrL 1iUQ== X-Gm-Message-State: AOAM5327D7uppjm6gMz5eDU/96n4g0kFNyN/nXBReW0ipeoQ2/C3rr09 jQQ8hyIyXS9wFU+1825W0Htsa7S11kQFgQ== X-Google-Smtp-Source: ABdhPJzNlL1Q3i1Fq9sJ2v842GSII8dZUBrzyAou4dwreTt35QJIuta+6Nh4A2Tq5D0iT5wV1rH0Kg== X-Received: by 2002:a17:907:6ea2:: with SMTP id sh34mr32593218ejc.509.1641055917637; Sat, 01 Jan 2022 08:51:57 -0800 (PST) Received: from nark.. ([2a01:4f8:162:73cc::2]) by smtp.gmail.com with ESMTPSA id gn8sm9280298ejc.23.2022.01.01.08.51.57 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Sat, 01 Jan 2022 08:51:57 -0800 (PST) From: quietvoid X-Google-Original-From: quietvoid To: ffmpeg-devel@ffmpeg.org Date: Sat, 1 Jan 2022 17:51:48 +0100 Message-Id: <20220101165153.440729-1-tcChlisop0@gmail.com> X-Mailer: git-send-email 2.34.1 MIME-Version: 1.0 Subject: [FFmpeg-devel] [PATCH v12 0/5] Add support for Matroska BlockAdditionMapping elements 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: quietvoid 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: This patch set adds support for reading/writing the Matroska BlockAdditionMapping elements, as well as for reading/writing dvcC/dvvC blocks in Matroska. Created utility functions to read/write Dolby Vision boxes for ISOM. This was done to avoid duplicating the code, as the Matroska blocks and MOV boxes follow the same specification, defined by Dolby. Refactored the reading/writing in mov/movenc to use the new dovi_isom functions. v11: https://ffmpeg.org/pipermail/ffmpeg-devel/2022-January/290611.html Changes since v11: - mov/movenc: Added dovi_isom linked object in Makefile for MOV DEMUXER/MUXER. - fate/matroska: Fixed ffprobe test set name and requirements. As suggested here: https://ffmpeg.org/pipermail/ffmpeg-devel/2022-January/290621.html quietvoid (5): avformat/dovi_isom: Implement Dolby Vision configuration parsing/writing avformat/matroska{dec, enc}: Parse BlockAdditionMapping elements avformat/mov: Refactor mov_read_dvcc_dvvc to use ff_isom_parse_dvcc_dvvc avformat/movenc: Refactor mov_write_dvcc_dvvc_tag to use ff_isom_put_dvcc_dvvc fate/matroska: Add tests for reading/writing BlockAdditionMapping elements libavformat/Makefile | 9 +- libavformat/dovi_isom.c | 118 ++++++++++ libavformat/dovi_isom.h | 35 +++ libavformat/matroska.h | 9 + libavformat/matroskadec.c | 58 ++++- libavformat/matroskaenc.c | 37 +++ libavformat/mov.c | 50 +---- libavformat/movenc.c | 24 +- tests/fate/matroska.mak | 9 + tests/ref/fate/matroska-dovi-config-profile5 | 13 ++ tests/ref/fate/matroska-dovi-write-config | 223 +++++++++++++++++++ 11 files changed, 519 insertions(+), 66 deletions(-) create mode 100644 libavformat/dovi_isom.c create mode 100644 libavformat/dovi_isom.h create mode 100644 tests/ref/fate/matroska-dovi-config-profile5 create mode 100644 tests/ref/fate/matroska-dovi-write-config -- 2.34.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".