X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=modules%2Faccess%2Fdecklink.cpp;h=87bf5237ced44d77c7dceb0bef416807186b439a;hb=bc09c365ab435fda0185e60a423f69d6dfa348c8;hp=abefa5de51e3a977be349caa327e01d5f30c8597;hpb=470ce70b69e1530173950a8dfd6d274a70caa7bc;p=vlc diff --git a/modules/access/decklink.cpp b/modules/access/decklink.cpp index abefa5de51..87bf5237ce 100644 --- a/modules/access/decklink.cpp +++ b/modules/access/decklink.cpp @@ -1,4 +1,25 @@ -/* Blackmagic SDI driver */ +/***************************************************************************** + * decklink.cpp: BlackMagic DeckLink SDI input module + ***************************************************************************** + * Copyright (C) 2010 VideoLAN + * + * Authors: Steinar H. Gunderson + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + *****************************************************************************/ #ifdef HAVE_CONFIG_H # include "config.h" @@ -28,39 +49,39 @@ static void Close( vlc_object_t * ); #define CARD_INDEX_TEXT N_("Input card to use") #define CARD_INDEX_LONGTEXT N_( \ - "SDI capture card to use, if multiple exist. " \ + "DeckLink capture card to use, if multiple exist. " \ "The cards are numbered from 0." ) #define MODE_TEXT N_("Desired input video mode") #define MODE_LONGTEXT N_( \ - "Desired input video mode for SDI captures. " \ + "Desired input video mode for DeckLink captures. " \ "This value should be a FOURCC code in textual " \ "form, e.g. \"ntsc\"." ) #define CACHING_TEXT N_("Caching value in ms") #define CACHING_LONGTEXT N_( \ - "Caching value for SDI captures. This " \ + "Caching value for DeckLink captures. This " \ "value should be set in milliseconds." ) #define AUDIO_CONNECTION_TEXT N_("Audio connection") #define AUDIO_CONNECTION_LONGTEXT N_( \ - "Audio connection to use for SDI captures. " \ + "Audio connection to use for DeckLink captures. " \ "Valid choices: embedded, aesebu, analog. " \ "Leave blank for card default." ) #define RATE_TEXT N_("Audio sampling rate in Hz") #define RATE_LONGTEXT N_( \ - "Audio sampling rate (in hertz) for SDI captures. " \ + "Audio sampling rate (in hertz) for DeckLink captures. " \ "0 disables audio input." ) #define CHANNELS_TEXT N_("Number of audio channels") #define CHANNELS_LONGTEXT N_( \ - "Number of input audio channels for SDI captures. " \ + "Number of input audio channels for DeckLink captures. " \ "Must be 2, 8 or 16. 0 disables audio input." ) #define VIDEO_CONNECTION_TEXT N_("Video connection") #define VIDEO_CONNECTION_LONGTEXT N_( \ - "Video connection to use for SDI captures. " \ + "Video connection to use for DeckLink captures. " \ "Valid choices: sdi, hdmi, opticalsdi, component, " \ "composite, svideo. " \ "Leave blank for card default." ) @@ -70,8 +91,8 @@ static void Close( vlc_object_t * ); "Aspect ratio (4:3, 16:9). Default assumes square pixels." ) vlc_module_begin () - set_shortname( N_("SDI") ) - set_description( N_("Blackmagic SDI input") ) + set_shortname( N_("DeckLink") ) + set_description( N_("Blackmagic DeckLink SDI input") ) set_category( CAT_INPUT ) set_subcategory( SUBCAT_INPUT_ACCESS )