From patchwork Wed Jan 31 21:01:16 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Laurent Pinchart X-Patchwork-Id: 10194807 X-Patchwork-Delegate: geert@linux-m68k.org Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork.web.codeaurora.org (Postfix) with ESMTP id DD09360380 for ; Wed, 31 Jan 2018 21:01:04 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id DCCD628857 for ; Wed, 31 Jan 2018 21:01:04 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id D02F828872; Wed, 31 Jan 2018 21:01:04 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on pdx-wl-mail.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-7.0 required=2.0 tests=BAYES_00,DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, RCVD_IN_DNSWL_HI autolearn=ham version=3.3.1 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 9075128857 for ; Wed, 31 Jan 2018 21:01:04 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752747AbeAaVBB (ORCPT ); Wed, 31 Jan 2018 16:01:01 -0500 Received: from galahad.ideasonboard.com ([185.26.127.97]:50428 "EHLO galahad.ideasonboard.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752500AbeAaVBA (ORCPT ); Wed, 31 Jan 2018 16:01:00 -0500 Received: from localhost.localdomain (unknown [IPv6:2a02:a03f:52fb:2b00:ac86:2f77:64c9:83c0]) by galahad.ideasonboard.com (Postfix) with ESMTPSA id 45D0E20226; Wed, 31 Jan 2018 21:59:47 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com; s=mail; t=1517432387; bh=2MjBT8VjT5s9u8IYe0L9MHmsgequOsNUWmpaUeTI8WQ=; h=From:To:Cc:Subject:Date:From; b=ReLdq5miUGdBuhr4EF2w39eJO+Z6d+N6gEQoKDQS5xKtIoT020rWJSUNyv4DI8itF fw7FLAmawVv2AgUU1tILPmlUbZdZ06PdDO54sDK+MpzrHNEKtoTvWa8ffz6GH71pYA bV9LQ7STZgzCnLFQxMCgTnFhkiCnkD0jZaUavWjY= From: Laurent Pinchart To: =?UTF-8?q?Niklas=20S=C3=B6derlund?= Cc: linux-renesas-soc@vger.kernel.org Subject: [PATCH 2/2] gmsl-yavta: Save output frames to .ppm files Date: Wed, 31 Jan 2018 23:01:16 +0200 Message-Id: <20180131210116.28098-1-laurent.pinchart@ideasonboard.com> X-Mailer: git-send-email 2.13.6 Sender: linux-renesas-soc-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-renesas-soc@vger.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP The script produces the PPM variant of PNM, the correct file extension is .ppm. Signed-off-by: Laurent Pinchart --- gmsl-yavta.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gmsl-yavta.sh b/gmsl-yavta.sh index a123bf52a16d..0ec0560441d8 100755 --- a/gmsl-yavta.sh +++ b/gmsl-yavta.sh @@ -83,5 +83,5 @@ wait for f in $out/*bin; do name=$(basename $f .bin) - raw2rgbpnm -f YUYV -s 1280x800 $out/$name.bin $out/$name.pnm + raw2rgbpnm -f YUYV -s 1280x800 $out/$name.bin $out/$name.ppm done