From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-pf1-f180.google.com (mail-pf1-f180.google.com [209.85.210.180]) by master.gitmailbox.com (Postfix) with ESMTPS id 8B55A4071E for ; Wed, 22 Dec 2021 15:32:49 +0000 (UTC) Received: by mail-pf1-f180.google.com with SMTP id 205so2747258pfu.0 for ; Wed, 22 Dec 2021 07:32:49 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20210112; h=message-id:from:date:subject:fcc:content-transfer-encoding :mime-version:to:cc; bh=Dzukw6d7gpWLWV1mWrSBFpNDc9lca8OCrKqWNgX4418=; b=LXfgMeklID10ElHCNVhAv33f5NFzyF89gPcNEAxU+60j9H0aVC3HNvLD4OFNOxjzJv XbMUpqC6dqf6I4BF3CwCJ+wEjdH8L1NFVMiExQqosW1P5clJNL6weHmoBqZaKMpMZpvN ZVSSQ89wysrWpON7XDqcEqCqKyKgCYg6keLueUS3x3JgwiaRRVQN85f8RGTtGwuU091C tiXs/8W0EDt1ZAI0dxtXBswQPZmMf7RyUZf/Siu1tKYbjNc9wLgl8cOOr2UQ4NOk/oVW I1qR8rEwEIu131yQy9MLYQoie5n5SAJ++9Rre1WAnd3skKqJ1KG21HJNoUpHFlQK3hNH AT+g== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=x-gm-message-state:message-id:from:date:subject:fcc :content-transfer-encoding:mime-version:to:cc; bh=Dzukw6d7gpWLWV1mWrSBFpNDc9lca8OCrKqWNgX4418=; b=ElhVLAv8VNlWrVeNmAe+hhSEVA5vf+wcVPGGy2nQAQW41raWZTnA0jeDYez19UlO0g WdMp6gQNFM/7AWPfysWwex+75pyrXalO0G728NtSwJ7Wdsu4f3TtZcmCVqPT4qbdEUB3 5CajB4zahdMgW5iG+Bd78leWQ+dK5UbVSrSMlfO70OZAkc7Il1m2qXX+AUdt6WX0XQrR 4n7rR1M8mwhokGaMhgkWZXlL238r/b2HIkXdsc+FpeuyPLpXZkeEGyJ4om2+SZoMxDLL yULeuMaag5PTCVg3kaOhrL5HOYhEdmEP2xnnS1qbHrGFV//4waykbAILVzZOSX8Vobk9 p21w== X-Gm-Message-State: AOAM532XnQ9W3pWtajy70R+UPK/xOGH4s/9/VCflGvB+RLPCA73B8t/O eVXjDcIa8zXP/8jhMsDtDIAJj+gD/VtphsLh X-Google-Smtp-Source: ABdhPJwybw84BI1OfthPj030xlmcvheJy6p7BSZXyv9u0uYOsbBAQ4/OK6LSVAhJKf10LH+ZEYiLtQ== X-Received: by 2002:a63:83c1:: with SMTP id h184mr2966976pge.361.1640183588729; Wed, 22 Dec 2021 06:33:08 -0800 (PST) Received: from [127.0.0.1] (master.gitmailbox.com. [34.83.118.50]) by smtp.gmail.com with ESMTPSA id 10sm2833236pfm.56.2021.12.22.06.33.08 (version=TLS1_2 cipher=ECDHE-ECDSA-AES128-GCM-SHA256 bits=128/128); Wed, 22 Dec 2021 06:33:08 -0800 (PST) Message-Id: From: ffmpegagent Date: Wed, 22 Dec 2021 14:32:56 +0000 Subject: [PATCH 00/11] libavformat/asfdec: Fix variable types and add checks for unsupported values Fcc: Sent Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit MIME-Version: 1.0 To: ffmpegdev@gitmailbox.com Cc: softworkz Archived-At: List-Archive: List-Post: Fix variable types and add checks for unsupported values and fix other issues. softworkz (11): libavformat/asf: fix handling of byte array length values libavformat/asfdec: fix get_value return type and add checks for libavformat/asfdec: fix type of value_len libavformat/asfdec: fixing get_tag libavformat/asfdec: implement parsing of GUID values libavformat/asfdec: remove unused parameters libavformat/asfdec: fix macro definition and use libavformat/asfdec: remove variable redefinition in inner scope libavformat/asfdec: ensure variables are initialized libavformat/asfdec: fix parameter type in asf_read_stream_propertie() libavformat/asfdec: fix variable types and add checks for unsupported values libavformat/asf.c | 12 +- libavformat/asf.h | 2 +- libavformat/asfdec_f.c | 349 ++++++++++++++++++++++++++--------------- 3 files changed, 232 insertions(+), 131 deletions(-) base-commit: 15cfb4eee316a1d6a0764f4460409f0258fd94cb Published-As: https://github.com/ffstaging/FFmpeg/releases/tag/pr-ffstaging-11%2Fsoftworkz%2Fmaster-upstream_asf-v1 Fetch-It-Via: git fetch https://github.com/ffstaging/FFmpeg pr-ffstaging-11/softworkz/master-upstream_asf-v1 Pull-Request: https://github.com/ffstaging/FFmpeg/pull/11 -- gitgitgadget