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 88B2F46811 for ; Thu, 20 Jul 2023 20:36:26 +0000 (UTC) Received: from [127.0.1.1] (localhost [127.0.0.1]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTP id 9B04D68C688; Thu, 20 Jul 2023 23:34:47 +0300 (EEST) Received: from mail-oo1-f41.google.com (mail-oo1-f41.google.com [209.85.161.41]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTPS id 66FB868C644 for ; Thu, 20 Jul 2023 23:34:36 +0300 (EEST) Received: by mail-oo1-f41.google.com with SMTP id 006d021491bc7-558a79941c6so790870eaf.3 for ; Thu, 20 Jul 2023 13:34:36 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20221208; t=1689885274; x=1690490074; 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=rbcsgQW8kiFy8z0foSgbaSA363oHH0cuYj4uBIwT0v4=; b=OVXUiF8zqJzOty2qORYinu4bFNBYQWPIufRMQM76Jn8u79CDtvQpfgYqScHuL0bgo1 lvF2cyPQc0i5NVJfnugJ7ubI7AFr+3U6hhFat49+QMq0pbJq7nqM3ft+yxs1ntRUNyP/ vj0hbSmhVCWkKkQr4Xi/hckihRHunhZ33HoZQmW/w4e9GIgZJK0X95j1WnVbxIyZZDZC YQrzKK7/7RNZxzSrsbveUYKzQrrF32EZb1izYI7flKkVC4RYWHcl9TBtJNrdJ1UAMZTP JcFwGEz05/UmGd1JJhsamDoTphbI9tLzWxtotbxw1LT0qrDJQQylvk0uke3B+I/IQi9c xJpg== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20221208; t=1689885274; x=1690490074; 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=rbcsgQW8kiFy8z0foSgbaSA363oHH0cuYj4uBIwT0v4=; b=E61/9IfPwml3MlZvVXSsphIORkBZjkV+hOZzm6UvKDMxhtD93rx9SvaslcQ4qy2V9l 4lb/PJMk3yg+LiZeQqlXPM68n9h3MdL+2YK3JxiyyAS+0MS/KA8kGnOPXxw4A/wYxPg3 +/9Yd8/pXzcyePwIeg6EzbNovPpC5r+/NkQlvL9NF6E6tESgAI2a7TDYK88xWXnSmdM6 3Y3Jp/9+EeoLtGJ9Bz2MJRu7iF+c8hvpLuRAEvxuomQR5Ke7+raMCtotYKLjkcDYz/Tv E3Iqwo1Ux9h+ZKFelFxNXjMIpMiTf7PLdYbYjUwk7Kx/eQvMc4PZqJwU+hwVG4Zlk251 MyTQ== X-Gm-Message-State: ABy/qLZ8RhRiEfEs8Xh2oGDfnVqbr1YZ7vyqKaaOd6sIm0bQYHZuZFPx n5blyRD44SgUxywcQeW7Sc2EPaxGxiA= X-Google-Smtp-Source: APBJJlHr2YoQOFxUnhu2DwXWJ2VUpyg7uBKgpdzV6w/zky/JcOOufJi3uRlDmOdRJaLqSPaX1m088A== X-Received: by 2002:a4a:4993:0:b0:566:f5bb:7d40 with SMTP id z141-20020a4a4993000000b00566f5bb7d40mr3082364ooa.6.1689885274677; Thu, 20 Jul 2023 13:34:34 -0700 (PDT) Received: from localhost.localdomain (host197.190-225-105.telecom.net.ar. [190.225.105.197]) by smtp.gmail.com with ESMTPSA id m24-20020a0568301e7800b006b95e17fcc7sm800094otr.49.2023.07.20.13.34.33 for (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Thu, 20 Jul 2023 13:34:34 -0700 (PDT) From: James Almer To: ffmpeg-devel@ffmpeg.org Date: Thu, 20 Jul 2023 17:34:12 -0300 Message-ID: <20230720203415.41757-10-jamrial@gmail.com> X-Mailer: git-send-email 2.41.0 In-Reply-To: <20230720203415.41757-1-jamrial@gmail.com> References: <20230720203415.41757-1-jamrial@gmail.com> MIME-Version: 1.0 Subject: [FFmpeg-devel] [PATCH 10/13] 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 c123511027..e902ba0f6b 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".