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 3C8B1429E4 for ; Mon, 11 Apr 2022 13:47:08 +0000 (UTC) Received: from [127.0.1.1] (localhost [127.0.0.1]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTP id 2321B68B26C; Mon, 11 Apr 2022 16:47:06 +0300 (EEST) Received: from mail-wr1-f51.google.com (mail-wr1-f51.google.com [209.85.221.51]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTPS id 5096D68B24D for ; Mon, 11 Apr 2022 16:47:00 +0300 (EEST) Received: by mail-wr1-f51.google.com with SMTP id k22so4550480wrd.2 for ; Mon, 11 Apr 2022 06:47:00 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20210112; h=mime-version:references:in-reply-to:from:date:message-id:subject:to; bh=dK2fLHiI9C2Pudm4qKsvZYdXY4IysL1BLo6szyj7lec=; b=AeOO04nGwWXjb6NAtKJeX1XC+3AvGsm2//4D4VhM8N+iXDu2tMzovqnAot1dG5IXBI Ta4LDKB83S6icvNrNB/UiSveEcJnoU2EvgFTYTZpmadBtcwiDPkL69klJm+Om6NUjzW4 VKT11nsPzK7DrsCsXzTIyZVmrOpqDbncF/7TQ4s7G144hFHaE4mAVpR2qzKRvrXqO7L3 CT+qbPtrbeWNkrijID4/m+xtgbSWqWtLbQW4onYJUhdGeRJFnhM91araUmWZDMbln6PV vAFwQBeCRcHLQSy/1md1qhOPo1ybc2Z8ef6yIaAMv5rkv+9pFk3o5W5DrN1nZ3nes/Kb mnRQ== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=x-gm-message-state:mime-version:references:in-reply-to:from:date :message-id:subject:to; bh=dK2fLHiI9C2Pudm4qKsvZYdXY4IysL1BLo6szyj7lec=; b=IPO5jiX51LnJDV8LRqpVKR46dIS/q+VWjxIr4iqS/pV0pUEgXVoLXZr5tpHjQBE+M4 DvsyG1IAcqpFibNorgSz2OhwYITcnIZS7yFEFvSMJ2L0wc/VivtWuPNtYjKnUfuVkjp5 BvtPt2XEgSNEpnLH8UuBlgwgluWOoLDJONFmERFOISaoXq91uE4i9r9BkLX6eOGcs9O6 KhreOCK57I/2WhgM8jeJbsCSccRju7Mf1E9zCiZRvIFlP73O/ElsmnZklG4B6Vz0y9PG IbVgjx2krGxj2uxXqlOrrKwWFB8ogQ6TPya+CqiE5tBeFYjZOboD+lydGgUkPPlM/zIn QJVA== X-Gm-Message-State: AOAM5311TYba+2lqaoxYB+B05zvmGu9b6yQGnSmvxcBtC663OTQcVaHA 1hNg/VL1uONSSPGj3dES17oEggkYim/1sT8334OPLtxc X-Google-Smtp-Source: ABdhPJxdBFQvY/YCcLWjRvZMn2hJxpoA+aDq+5F5Tsyl6hkf2dHNP9zWlS2cmXnXT6zYR5IE2i8YXRp5HaOBm1Ndtj8= X-Received: by 2002:a5d:4311:0:b0:205:f26b:fb98 with SMTP id h17-20020a5d4311000000b00205f26bfb98mr25560163wrq.202.1649684818752; Mon, 11 Apr 2022 06:46:58 -0700 (PDT) MIME-Version: 1.0 References: <20220406120056.10537-1-markg85@gmail.com> <20220406120056.10537-2-markg85@gmail.com> <20220410144127.GD2829255@pb2> In-Reply-To: <20220410144127.GD2829255@pb2> From: Mark Gaiser Date: Mon, 11 Apr 2022 15:46:45 +0200 Message-ID: To: FFmpeg development discussions and patches X-Content-Filtered-By: Mailman/MimeDel 2.1.29 Subject: Re: [FFmpeg-devel] [PATCH v13 1/1] avformat: Add IPFS protocol support. 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: On Sun, Apr 10, 2022 at 4:41 PM Michael Niedermayer wrote: > On Wed, Apr 06, 2022 at 02:00:56PM +0200, Mark Gaiser wrote: > [...] > > > + if (stat_ret < 0) { > > > + av_log(h, AV_LOG_INFO, "Unable to find IPFS folder. We > tried:\n"); > > + av_log(h, AV_LOG_INFO, "- $IPFS_PATH, which was empty.\n"); > > + av_log(h, AV_LOG_INFO, "- $HOME/.ipfs (full uri: %s) which > doesn't exist.\n", ipfs_full_data_folder); > > The 3 av_log() can also be combined > > If nothing else is found then ill change that myself and apply in a day or > 2 > That would be awesome!! I'm looking forward to that very much. > > thx > > [...] > -- > Michael GnuPG fingerprint: 9FF2128B147EF6730BADF133611EC787040B0FAB > > Awnsering whenever a program halts or runs forever is > On a turing machine, in general impossible (turings halting problem). > On any real computer, always possible as a real computer has a finite > number > of states N, and will either halt in less than N cycles or never halt. > _______________________________________________ > 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". > _______________________________________________ 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".