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 EE46E4018F for ; Thu, 3 Nov 2022 21:03:02 +0000 (UTC) Received: from [127.0.1.1] (localhost [127.0.0.1]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTP id 3CEBA68BFF0; Thu, 3 Nov 2022 23:03:00 +0200 (EET) Received: from mail-pj1-f51.google.com (mail-pj1-f51.google.com [209.85.216.51]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTPS id 4E0F068BF97 for ; Thu, 3 Nov 2022 23:02:54 +0200 (EET) Received: by mail-pj1-f51.google.com with SMTP id h14so2813526pjv.4 for ; Thu, 03 Nov 2022 14:02:54 -0700 (PDT) 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=wq+AzA+8izhnPocPlGb0Iv1VVqym+3XV8g9vXcXBn13auDM8NIUpBK0pCj4d8FwIV1 Vd2a9nYWjHJLw3K87k5wmSFtkk+BqDOpH7xQMOvInIo1JM+4Q+pHf2FkE7qijZfFTVal OjwqCRbru6jPZP2o4MPvRZY1ss0PzjPVJSTveSaLlISwYIGMqUzEK9bzDvOQFVyk6wBP KzF9e+2AKj/QCNeWDmNwO829UWTaI1E5iJkNkUHVRZ4J7TCLVaO7jvDatTog7ga9nvnB L1yzFxQ/j39H1BKDNYHZQaC8DSK8dN3qMQrY2YiSpRU5ty95+t25w6RJl+woput9C8Lg YzBQ== X-Gm-Message-State: ACrzQf2jPrKt3hqFCfZpI1BG7LC1Qajglch/IhLJPDn0y1xvpjBUaQZX kjto0ZEQl83HNgf5l4VZ8W14RtMV5ThNEA== X-Google-Smtp-Source: AMsMyM5gkUq6KGueAgngCER1MPILRga6YnTSiw94SiS/KUCCCA9OsESio4Pfneqcl8bfs81+U5tdig== X-Received: by 2002:a17:90a:db93:b0:214:1671:a106 with SMTP id h19-20020a17090adb9300b002141671a106mr15055128pjv.4.1667509372031; Thu, 03 Nov 2022 14:02:52 -0700 (PDT) Received: from localhost (76-14-89-2.sf-cable.astound.net. [76.14.89.2]) by smtp.gmail.com with ESMTPSA id w4-20020a626204000000b0056bc9294e1asm1219219pfb.24.2022.11.03.14.02.50 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Thu, 03 Nov 2022 14:02:51 -0700 (PDT) Received: by localhost (sSMTP sendmail emulation); Thu, 03 Nov 2022 14:02:48 -0700 From: pal@sandflow.com To: ffmpeg-devel@ffmpeg.org Date: Thu, 3 Nov 2022 14:02:45 -0700 Message-Id: <20221103210246.31845-1-pal@sandflow.com> X-Mailer: git-send-email 2.25.1 MIME-Version: 1.0 Subject: [FFmpeg-devel] [PATCH 1/2] 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".