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 A53E240D0D for ; Mon, 28 Aug 2023 12:38:01 +0000 (UTC) Received: from [127.0.1.1] (localhost [127.0.0.1]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTP id E7B4568C6CE; Mon, 28 Aug 2023 15:36:58 +0300 (EEST) Received: from mail-ot1-f50.google.com (mail-ot1-f50.google.com [209.85.210.50]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTPS id 199B568C683 for ; Mon, 28 Aug 2023 15:36:56 +0300 (EEST) Received: by mail-ot1-f50.google.com with SMTP id 46e09a7af769-6bdc2f95f10so2491513a34.1 for ; Mon, 28 Aug 2023 05:36:55 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20221208; t=1693226214; x=1693831014; 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=46uW5mFi4rdFz/+ZDbKoTTFHlAJkYo39TWns1ZdzaaE=; b=sCq89+Til4Rn3+LsNyqRdJiQo9wNxBti6KVr33gxN6yOUfYiJoMPkXnqMFdAOHuloK GGm2HRDhFb6r/vgSw1FER3/lp/7b/L35B82q7YXfpHmzgi4JrxOmMuId+N6g2Od8YYzJ zs+iFZBHDI1oNItelItMtzNiwUCRgOzTgSup2LJtyOS5qkqenpa2bMmV9lPyiDcldyCW qYGiGsUGmpSZ7/zieW6uW68brgxDy6yj783UHqjhtYvT9Ms/tZoxiKFL0sXlycASx5/Q jf8POAqMIg/Y2jWVoYKD2c/tIxp8WFp90oufHfneEIg1PmFnrlpzqzAog+9B2ELZTIYK tV/Q== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20221208; t=1693226214; x=1693831014; 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=46uW5mFi4rdFz/+ZDbKoTTFHlAJkYo39TWns1ZdzaaE=; b=SJ83UIhRfBi2k8BmN8Xf+CVGIGKcTQmLFFAgh+w3nmrh+GJbofinwvrXNXdH3+YRYg yHDdNzOkLn1RVnxjIyN5PYJfPpHOd7m9sCnaKcRSDurTcvfNPMyZxvE+AGbThA0Mr5/P FtT1Jbp45Oj1nFK0G/FjDR65u8m64+dWOkZ+UYxN0RbEiyr2GnLEHIMGZ3AYBK599GRx 95fuGxw+4U1C/HN0Y8kzX9LC6mUIVMYeHfQyJB24TrV62U4h/393GeyBajs15DGbX0bS nGDCHgzcfLis2e3yAZif/u8oti81HkDhnw9O9sLpAEYp4oFGDAsH8aUHsftxqHQDj2WA SZDg== X-Gm-Message-State: AOJu0Yx9g2Lld26XxEJ3cDiN1nZkF8nn5I+e4cOn7ShQMA3Dr5WfPOSk ucbSVhA7Quac+C7sLIBnTrkB+DyknrY= X-Google-Smtp-Source: AGHT+IGPsCh8xOYM9u77G2kpiFKJcc075m4b7HXXGrdS5ax7ei7pQXVQMS8EawAS6MLulZHGDZ0q6Q== X-Received: by 2002:a9d:5c07:0:b0:6af:7760:f2d0 with SMTP id o7-20020a9d5c07000000b006af7760f2d0mr12831349otk.32.1693226214327; Mon, 28 Aug 2023 05:36:54 -0700 (PDT) Received: from localhost.localdomain (host197.190-225-105.telecom.net.ar. [190.225.105.197]) by smtp.gmail.com with ESMTPSA id b15-20020a056830104f00b006b9a98b9659sm3404615otp.19.2023.08.28.05.36.53 for (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Mon, 28 Aug 2023 05:36:54 -0700 (PDT) From: James Almer To: ffmpeg-devel@ffmpeg.org Date: Mon, 28 Aug 2023 09:35:02 -0300 Message-ID: <20230828123617.57535-11-jamrial@gmail.com> X-Mailer: git-send-email 2.41.0 In-Reply-To: <20230828123617.57535-1-jamrial@gmail.com> References: <20230828123617.57535-1-jamrial@gmail.com> MIME-Version: 1.0 Subject: [FFmpeg-devel] [PATCH 10/12] 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 299d7b16d9..2aebab6f92 100644 --- a/fftools/ffplay.c +++ b/fftools/ffplay.c @@ -2781,8 +2781,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.41.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".