From patchwork Tue Aug 2 18:44:14 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Felt, Patrick" X-Patchwork-Id: 69 Delivered-To: ffmpegpatchwork@gmail.com Received: by 10.103.140.67 with SMTP id o64csp347197vsd; Tue, 2 Aug 2016 11:44:33 -0700 (PDT) X-Received: by 10.194.18.198 with SMTP id y6mr61705530wjd.87.1470163473560; Tue, 02 Aug 2016 11:44:33 -0700 (PDT) Return-Path: Received: from ffbox0-bg.mplayerhq.hu (ffbox0-bg.ffmpeg.org. [79.124.17.100]) by mx.google.com with ESMTP id gx1si3941993wjb.49.2016.08.02.11.44.33; Tue, 02 Aug 2016 11:44:33 -0700 (PDT) Received-SPF: pass (google.com: domain of ffmpeg-devel-bounces@ffmpeg.org designates 79.124.17.100 as permitted sender) client-ip=79.124.17.100; Authentication-Results: mx.google.com; spf=pass (google.com: domain of ffmpeg-devel-bounces@ffmpeg.org designates 79.124.17.100 as permitted sender) smtp.mailfrom=ffmpeg-devel-bounces@ffmpeg.org Received: from [127.0.1.1] (localhost [127.0.0.1]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTP id 4130F689F07; Tue, 2 Aug 2016 21:44:21 +0300 (EEST) X-Original-To: ffmpeg-devel@ffmpeg.org Delivered-To: ffmpeg-devel@ffmpeg.org Received: from chapzsmtp1.echostar.com (mail01.echostar.com [139.85.4.20]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTP id E5CE0689DBF for ; Tue, 2 Aug 2016 21:44:10 +0300 (EEST) Received: from mail.echostar.com (unknown [10.182.50.87]) by Websense Email Security Gateway with ESMTPS id 3D0BCAF78D572 for ; Tue, 2 Aug 2016 12:44:15 -0600 (MDT) Received: from CHWPIEXC11.SATS.CORP ([fe80::fd70:649a:c315:9a1d]) by CHWPIEXC10.SATS.CORP ([fe80::f0a2:1f1e:2622:88a6%21]) with mapi id 14.03.0279.002; Tue, 2 Aug 2016 12:44:15 -0600 From: "Felt, Patrick" To: FFmpeg development discussions and patches Thread-Topic: [PATCH] - cosmetic: the decklink_dec* files are used for input from the decklink cards. update the header to reflect that Thread-Index: AQHR7O3d0jXih6DY0E23/IBkjWK3dg== Date: Tue, 2 Aug 2016 18:44:14 +0000 Message-ID: Accept-Language: en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: x-originating-ip: [10.182.31.10] MIME-Version: 1.0 X-Content-Filtered-By: Mailman/MimeDel 2.1.20 Subject: [FFmpeg-devel] [PATCH] - cosmetic: the decklink_dec* files are used for input from the decklink cards. update the header to reflect that X-BeenThere: ffmpeg-devel@ffmpeg.org X-Mailman-Version: 2.1.20 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 Errors-To: ffmpeg-devel-bounces@ffmpeg.org Sender: "ffmpeg-devel" This is a cosmetic patch only to update the header of decklink files to be indicative of data flow direction. --- libavdevice/decklink_dec.cpp | 4 ++-- libavdevice/decklink_dec.h | 2 +- libavdevice/decklink_dec_c.c | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) -- 1.8.3.1 diff --git a/libavdevice/decklink_dec.cpp b/libavdevice/decklink_dec.cpp index fcb024e..fc81d4d 100644 --- a/libavdevice/decklink_dec.cpp +++ b/libavdevice/decklink_dec.cpp @@ -1,5 +1,5 @@ /* - * Blackmagic DeckLink output + * Blackmagic DeckLink input * Copyright (c) 2013-2014 Luca Barbato, Deti Fliegl * * This file is part of FFmpeg. @@ -524,7 +524,7 @@ av_cold int ff_decklink_read_header(AVFormatContext *avctx) /* Get input device. */ if (ctx->dl->QueryInterface(IID_IDeckLinkInput, (void **) &ctx->dli) != S_OK) { - av_log(avctx, AV_LOG_ERROR, "Could not open output device from '%s'\n", + av_log(avctx, AV_LOG_ERROR, "Could not open input device from '%s'\n", avctx->filename); ret = AVERROR(EIO); goto error; diff --git a/libavdevice/decklink_dec.h b/libavdevice/decklink_dec.h index c02344e..9b71870 100644 --- a/libavdevice/decklink_dec.h +++ b/libavdevice/decklink_dec.h @@ -1,5 +1,5 @@ /* - * Blackmagic DeckLink output + * Blackmagic DeckLink input * Copyright (c) 2013-2014 Ramiro Polla * * This file is part of FFmpeg. diff --git a/libavdevice/decklink_dec_c.c b/libavdevice/decklink_dec_c.c index 523be66..56bc439 100644 --- a/libavdevice/decklink_dec_c.c +++ b/libavdevice/decklink_dec_c.c @@ -1,5 +1,5 @@ /* - * Blackmagic DeckLink output + * Blackmagic DeckLink input * Copyright (c) 2014 Deti Fliegl * * This file is part of FFmpeg.