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 ED86F450DA for ; Thu, 5 Jan 2023 23:30:03 +0000 (UTC) Received: from [127.0.1.1] (localhost [127.0.0.1]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTP id 5ACD068BDCA; Fri, 6 Jan 2023 01:30:00 +0200 (EET) Received: from mail-pf1-f177.google.com (mail-pf1-f177.google.com [209.85.210.177]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTPS id 901CE68BD53 for ; Fri, 6 Jan 2023 01:29:53 +0200 (EET) Received: by mail-pf1-f177.google.com with SMTP id a30so10884508pfr.6 for ; Thu, 05 Jan 2023 15:29:53 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=content-transfer-encoding:mime-version:message-id:date:subject:cc :to:from:x-gm-message-state:from:to:cc:subject:date:message-id :reply-to; bh=b0yg0SU2UI+h1pDT062wiyQ7wgV6ObfXviRiUfaNV7o=; b=t8WQCwCD3EobbwUkhH+cbQtm58DmOXh0wXi27Fr9J/CO9Zo/PVrRKsc0ypWGl7zq69 2JVoeCxz/6xoRIC6OSxL+x4yrT7xpZ25ODSx+ERD32VG3MyZGI/qVclgBJtJpwBATzQm fioR+ubPLJykizcY7V83w20aPN9qTFxldIQZqvnC/I19EvpQb9d+T7zX+iVtTHFlLdSm clcE205BIQHWZ/+pkTkwlf59cWYfv0KB+08JNWi8F+z8t3FtJbipj5rog9XHP9P0yIs1 Yza9nvKiDD1pbPkgPgCqhoFRwGMtT17lbza2ZsBysTTJ/wea3SBzMoe+51rpkoVom0hW WOfQ== X-Gm-Message-State: AFqh2kr4kPC+OXTwRGtxhnc/A92KvHVu7xvPmgXQFx7RXqb2NVh66JX8 usIrCyGiJs96BhhbVmbyd2S/N0MfI1F+pA== X-Google-Smtp-Source: AMrXdXu3SV0gxhbppp8HztK5nF8D4HN1gckrddSMPerHh+AOyw+mPxE6tzT29AJCiFJ0S7VvGw2yIg== X-Received: by 2002:a05:6a00:1816:b0:583:2a52:6ae3 with SMTP id y22-20020a056a00181600b005832a526ae3mr4776898pfa.6.1672961391542; Thu, 05 Jan 2023 15:29:51 -0800 (PST) Received: from localhost (76-14-89-2.sf-cable.astound.net. [76.14.89.2]) by smtp.gmail.com with ESMTPSA id i27-20020aa796fb000000b00581a5fd4fa7sm15794511pfq.212.2023.01.05.15.29.49 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Thu, 05 Jan 2023 15:29:51 -0800 (PST) Received: by localhost (sSMTP sendmail emulation); Thu, 05 Jan 2023 15:29:48 -0800 From: pal@sandflow.com To: ffmpeg-devel@ffmpeg.org Date: Thu, 5 Jan 2023 15:29:44 -0800 Message-Id: <20230105232946.21950-1-pal@sandflow.com> X-Mailer: git-send-email 2.25.1 MIME-Version: 1.0 Subject: [FFmpeg-devel] [PATCH v2 1/3] avformat/imfdec: remove the experimental flag 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 --- libavformat/imfdec.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavformat/imfdec.c b/libavformat/imfdec.c index 03de9ce151..a92686e93b 100644 --- a/libavformat/imfdec.c +++ b/libavformat/imfdec.c @@ -1018,7 +1018,7 @@ static const AVClass imf_class = { const AVInputFormat ff_imf_demuxer = { .name = "imf", .long_name = NULL_IF_CONFIG_SMALL("IMF (Interoperable Master Format)"), - .flags = AVFMT_EXPERIMENTAL | AVFMT_NO_BYTE_SEEK, + .flags = AVFMT_NO_BYTE_SEEK, .flags_internal = FF_FMT_INIT_CLEANUP, .priv_class = &imf_class, .priv_data_size = sizeof(IMFContext), -- 2.25.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".