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 75E2D425DB for ; Sun, 24 Apr 2022 10:14:33 +0000 (UTC) Received: from [127.0.1.1] (localhost [127.0.0.1]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTP id 7BBB168B0A8; Sun, 24 Apr 2022 13:14:30 +0300 (EEST) Received: from out0.migadu.com (out0.migadu.com [94.23.1.103]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTPS id 430B8680725 for ; Sun, 24 Apr 2022 13:14:23 +0300 (EEST) X-Report-Abuse: Please report any abuse attempt to abuse@migadu.com and include these headers. From: Zane van Iperen To: ffmpeg-devel@ffmpeg.org Date: Sun, 24 Apr 2022 20:14:02 +1000 Message-Id: <20220424101409.95486-1-zane@zanevaniperen.com> MIME-Version: 1.0 X-Migadu-Flow: FLOW_OUT X-Migadu-Auth-User: cadance.vs49688.net Subject: [FFmpeg-devel] [PATCH v2 0/7] Add UUID functionality to libavutil 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 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 patchset adds functions for handling UUIDs to libavutil, under the av_uuid_* prefix, and refactors the various ad-hoc handling to use it. This was proposed in [1]. This is _heavily_ based off libuuid with various parts of the code simplified to remove unnecessary functionality (e.g. generation, and v1 UUIDs). v2: - Removed unnecessary license header in libavutil/uuid.h - Cosmetic fixes [1]: https://ffmpeg.org/pipermail/ffmpeg-devel/2022-January/291917.html Pierre-Anthony Lemieux (6): avutil/tests/uuid: add uuid tests avformat/mov: refactor to use avutil/uuid avformat/smoothstreamingenc: refactor to use avutil/uuid avcodec/cbs_sei: refactor to use avutil/uuid avformat/imf: refactor to use avutil/uuid avfilter/showinfo: refactor to use avutil/uuid Zane van Iperen (1): avutil/uuid: add utility library for manipulating UUIDs as specified in RFC 4122 libavcodec/cbs_sei.h | 3 +- libavcodec/vaapi_encode_h264.c | 8 +- libavfilter/vf_showinfo.c | 17 +--- libavformat/imf.h | 18 +--- libavformat/imf_cpl.c | 60 +++++------- libavformat/imfdec.c | 34 +++---- libavformat/mov.c | 25 ++--- libavformat/movenc.c | 9 +- libavformat/smoothstreamingenc.c | 7 +- libavformat/tests/imf.c | 18 ++-- libavutil/Makefile | 3 + libavutil/tests/.gitignore | 1 + libavutil/tests/uuid.c | 139 +++++++++++++++++++++++++++ libavutil/uuid.c | 155 +++++++++++++++++++++++++++++++ libavutil/uuid.h | 137 +++++++++++++++++++++++++++ tests/fate/libavutil.mak | 5 + 16 files changed, 525 insertions(+), 114 deletions(-) create mode 100644 libavutil/tests/uuid.c create mode 100644 libavutil/uuid.c create mode 100644 libavutil/uuid.h -- 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".