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 8939E42785 for ; Fri, 7 Jan 2022 04:49:38 +0000 (UTC) Received: from [127.0.1.1] (localhost [127.0.0.1]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTP id 8526E68AA6A; Fri, 7 Jan 2022 06:49:35 +0200 (EET) Received: from mail-pg1-f169.google.com (mail-pg1-f169.google.com [209.85.215.169]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTPS id 20D5368092F for ; Fri, 7 Jan 2022 06:49:29 +0200 (EET) Received: by mail-pg1-f169.google.com with SMTP id s1so4475655pga.5 for ; Thu, 06 Jan 2022 20:49:29 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20210112; h=message-id:from:date:subject:fcc:content-transfer-encoding :mime-version:to:cc; bh=+CGtIeFlbfeezSJT5mLMYuQqpX3a4ikXEQ4pa4xBwwM=; b=eQ4TxZDwWftajxRoBePbqHuAyQAkxy/I3QX6PI1fHf9iBL+kspvGND4HEllumDdUxB 0jmvk0EO9rIhC6UOkCeIGKejdnGJcy3f6oV5W2WhIOSQpwhkRNSmHsmLeowqEn/BOVbS /y6IwUdPEmmjD2JBCQOLIriqPZs0ytLWe12Q0s7g/xUmDQitLpweQxkP+IqVWTwnN2Co LSnotwhcqdMw+bRltTD0APO6BgwkgggXFUVvmHTv834xi86hYLUE9HpOVfw3ezi7hbm3 JvAj9EuMozgMg7Srixq9ecu3N8QNmpxpC/HcxC9PS38m2yScfnRy0nKwBkF86GIVsjBO cLJg== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=x-gm-message-state:message-id:from:date:subject:fcc :content-transfer-encoding:mime-version:to:cc; bh=+CGtIeFlbfeezSJT5mLMYuQqpX3a4ikXEQ4pa4xBwwM=; b=ey5q/o3qkBq578PZXzDkQHZgKJUAEBdA0iH29jBx8KYUI4qMiWWkcT4ZuDh2Qjgoiy NLXE5yizmr7X64AAgXzo2EIkfALloc0hk93XDRWpBAtqL0AXQG9UeMplIhopu5PBZTll I363Iouuq6HAnHEC1FsRLsHIoZEt8VU0OVtNtGJNAKYTZkc5xrsFe/9ORwwpLCsA6yJi 3PLQ3Brafhst7spnX0mkFdQSTEsDK8bGRWZkB7pYtcbbJsTYTrpjBorGI6MXkB8BY9sS 5ETfqbj9t/5/XilbWLJChMFeIXHfvZMb9rEy0HkakRHyBZ956iVF+LxWaZeBHC0WtDG2 3m8A== X-Gm-Message-State: AOAM533MF7IRLUmqf6YJ/iSNwyit+kvcXL+ILXZPuvd9G5Jde++epDo5 uUIDc6Dfj2WnoJm/+7ADhaW/7oJ+kkynow== X-Google-Smtp-Source: ABdhPJwgroX6xlBk4CuNerNdvl39BSCuY4IyuQKODBH6XJhPF5o+KByp7kQuK7ULsuYqjkqylo7yXQ== X-Received: by 2002:a63:5906:: with SMTP id n6mr54627363pgb.586.1641530967296; Thu, 06 Jan 2022 20:49:27 -0800 (PST) Received: from [127.0.0.1] (master.gitmailbox.com. [34.83.118.50]) by smtp.gmail.com with ESMTPSA id y18sm3677434pfn.202.2022.01.06.20.49.26 (version=TLS1_2 cipher=ECDHE-ECDSA-AES128-GCM-SHA256 bits=128/128); Thu, 06 Jan 2022 20:49:26 -0800 (PST) Message-Id: From: ffmpegagent Date: Fri, 07 Jan 2022 04:49:22 +0000 Fcc: Sent MIME-Version: 1.0 To: ffmpeg-devel@ffmpeg.org Subject: [FFmpeg-devel] [PATCH 0/4] avcodec/dvbsubdec, dvdsubdec: don't dump images to disk based on DEBUG define 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: softworkz 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: It's annoying and unexpected, but still useful at times (as I've realized just recently). This is a follow-up to the earlier submission here: https://www.mail-archive.com/ffmpeg-devel@ffmpeg.org/msg128080.html There has been a comment from Anton, questioning whether the dump-feature is useful. Meanwhile I came to the conclusion that it can be useful in-fact. It just shouldn't happen automatically when DEBUG is defined. That's what these patches do. I also added fixes for the fopen() call. softworkz (4): avcodec/dvbsubdec: don't dump images to disk based on DEBUG define avcodec/dvbsubdec: fix writing ppm avcodec/dvdsubdec: don't dump images to disk based on DEBUG define avcodec/dvdsubdec: fix writing ppm libavcodec/dvbsubdec.c | 20 +++++++++++++------- libavcodec/dvdsubdec.c | 11 ++++++++--- 2 files changed, 21 insertions(+), 10 deletions(-) base-commit: 242ed971cb005157488b9a21942d9fb4be4d0347 Published-As: https://github.com/ffstaging/FFmpeg/releases/tag/pr-ffstaging-17%2Fsoftworkz%2Fsubmit_dvb_subs-v1 Fetch-It-Via: git fetch https://github.com/ffstaging/FFmpeg pr-ffstaging-17/softworkz/submit_dvb_subs-v1 Pull-Request: https://github.com/ffstaging/FFmpeg/pull/17 -- ffmpeg-codebot _______________________________________________ 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".