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 131C34791F for ; Wed, 27 Sep 2023 13:14:49 +0000 (UTC) Received: from [127.0.1.1] (localhost [127.0.0.1]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTP id BCD6E68CB38; Wed, 27 Sep 2023 16:13:24 +0300 (EEST) Received: from mail-pl1-f178.google.com (mail-pl1-f178.google.com [209.85.214.178]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTPS id A339168CB24 for ; Wed, 27 Sep 2023 16:13:19 +0300 (EEST) Received: by mail-pl1-f178.google.com with SMTP id d9443c01a7336-1bf6ea270b2so84355775ad.0 for ; Wed, 27 Sep 2023 06:13:19 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20230601; t=1695820397; x=1696425197; darn=ffmpeg.org; h=content-transfer-encoding:mime-version:references:in-reply-to :message-id:date:subject:to:from:from:to:cc:subject:date:message-id :reply-to; bh=2HA//p4EYIQ7ls1mGM7MsNLp5mapkmcavm+KaNvR/Ks=; b=b5FxO5CNIfOqEqjGeQUQ4361ZbFgNgUKW98yLC0nB6cBUBYSK3E78e8Ja4APrZ97+K gG5kikHJV3KxNfQWRg2YJsFNLr0HlegkMkCWOGLXR7duD42dxBvMlYyxP+AKP1THj6TB gSVBtFWLAp9OafghA3Wiv26M1HBtx3b+sU36pa0COvTkCSTJ7vIjZWUqxMRupkTH+iCX AJKKbDIkrHivM34L23WKTr7T2kzt8y9Nj7GgGjY2u7liE8suwoQD2YtASGicPvWssIIV hpV9cq49hO0E+/tpxekH+K2nXCcb7hOZj/zY5nG/12gvRy78k7Yk+9OfdWshexclbzdZ qEqg== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20230601; t=1695820397; x=1696425197; h=content-transfer-encoding:mime-version:references:in-reply-to :message-id:date:subject:to:from:x-gm-message-state:from:to:cc :subject:date:message-id:reply-to; bh=2HA//p4EYIQ7ls1mGM7MsNLp5mapkmcavm+KaNvR/Ks=; b=tjc9iDVoi4Il55DHuLjxIKtXlrspYVyTcv+kAPKuFQefp/UR/aprrLM6S6IPjlFMGD NxlgFvQV0Ok4tehtb6ovAMG8A5X3Agl+hiv84Pl0Bsnxoq0J4JaAPYBptSjoN//IaMoX UcVdtMOERRh4mAuC9F6EgRC3IOdgT44OQx6ZJxXLVMC8t8jCJjRC/noPuQcx+c2uyqT8 Qq0Xrves8qcaT/2PxQ2QpEzav9iJ3qZEzUQm48i9Z/Sx0Dmyv14uqn/YLmO+lm0C/Wrp n13fTdvV8bvn22GPNVSPIuvXdjY4cYuGiGsCWrvCZ4uVEldYOgOQObQcbaLye4KnJMHn THdA== X-Gm-Message-State: AOJu0YxCA6OAwAAShYrQFKbJiDLpOwU7VU2GAJrK4bBABbCUyXzJIA0n 3mhi9J1rmj+hw/ee2xzqHWEWOKQSAbc= X-Google-Smtp-Source: AGHT+IFePIrOfgqfgKRjJN2Wlz5fRSy0DbBuqTtCQ/RkstZ4s0MBJnAYM82ZwmfSv4IVnUOk+HY+Ew== X-Received: by 2002:a17:902:e846:b0:1b6:bced:1dc2 with SMTP id t6-20020a170902e84600b001b6bced1dc2mr2081103plg.0.1695820397240; Wed, 27 Sep 2023 06:13:17 -0700 (PDT) Received: from localhost.localdomain (host197.190-225-105.telecom.net.ar. [190.225.105.197]) by smtp.gmail.com with ESMTPSA id v10-20020a1709029a0a00b001b53953f306sm13050600plp.178.2023.09.27.06.13.16 for (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Wed, 27 Sep 2023 06:13:16 -0700 (PDT) From: James Almer To: ffmpeg-devel@ffmpeg.org Date: Wed, 27 Sep 2023 10:12:42 -0300 Message-ID: <20230927131242.1950-12-jamrial@gmail.com> X-Mailer: git-send-email 2.42.0 In-Reply-To: <20230927131242.1950-1-jamrial@gmail.com> References: <20230927131242.1950-1-jamrial@gmail.com> MIME-Version: 1.0 Subject: [FFmpeg-devel] [PATCH 11/11] fftools/ffplay: stop injecting stream side data in packets 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 is no longer needed as the side data is available for decoders in the AVCodecContext. Signed-off-by: James Almer --- fftools/ffplay.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/fftools/ffplay.c b/fftools/ffplay.c index e29b0ad0f9..87e04226c9 100644 --- a/fftools/ffplay.c +++ b/fftools/ffplay.c @@ -2794,8 +2794,6 @@ static int read_thread(void *arg) if (genpts) ic->flags |= AVFMT_FLAG_GENPTS; - av_format_inject_global_side_data(ic); - if (find_stream_info) { AVDictionary **opts; int orig_nb_streams = ic->nb_streams; -- 2.42.0 _______________________________________________ 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".