From 7fd95348fe8c56f35104842f764d908445174338 Mon Sep 17 00:00:00 2001 From: cehoyos Date: Sun, 2 Aug 2009 14:38:18 +0000 Subject: Fix typos. Patch by Francesco Lavra, francescolavra interfree it git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29465 b3059339-0415-0410-9bf9-f77b7e298cf2 --- stream/tv.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'stream') diff --git a/stream/tv.h b/stream/tv.h index 5a38df690d..f4467459eb 100644 --- a/stream/tv.h +++ b/stream/tv.h @@ -287,9 +287,9 @@ void tv_start_scan(tvi_handle_t *tvh, int start); typedef enum{ TT_FORMAT_OPAQUE=0, ///< opaque - TT_FORMAT_TRANSPARENT, ///< translarent + TT_FORMAT_TRANSPARENT, ///< transparent TT_FORMAT_OPAQUE_INV, ///< opaque with inverted colors - TT_FORMAT_TRANSPARENT_INV ///< translarent with inverted colors + TT_FORMAT_TRANSPARENT_INV ///< transparent with inverted colors } teletext_format; typedef -- cgit v1.2.3 From 463ac707c16763cf52cd9de1b133d740e1802637 Mon Sep 17 00:00:00 2001 From: cehoyos Date: Sun, 2 Aug 2009 14:41:15 +0000 Subject: Remove unused include's. Patch by Francesco Lavra, francescolavra interfree it git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29466 b3059339-0415-0410-9bf9-f77b7e298cf2 --- stream/tv.h | 4 ---- 1 file changed, 4 deletions(-) (limited to 'stream') diff --git a/stream/tv.h b/stream/tv.h index f4467459eb..f8fa2e9228 100644 --- a/stream/tv.h +++ b/stream/tv.h @@ -1,10 +1,6 @@ #ifndef MPLAYER_TV_H #define MPLAYER_TV_H -//#include "libao2/afmt.h" -//#include "libmpcodecs/img_format.h" -//#include "mp_msg.h" - typedef struct tv_param_s { char *freq; char *channel; -- cgit v1.2.3 From 35b86231c2c614aab225e22fddf01ceb470e2eff Mon Sep 17 00:00:00 2001 From: cehoyos Date: Sun, 2 Aug 2009 14:44:12 +0000 Subject: Fix more typos. Patch by Francesco Lavra, francescolavra interfree it git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29467 b3059339-0415-0410-9bf9-f77b7e298cf2 --- stream/tv.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'stream') diff --git a/stream/tv.h b/stream/tv.h index f8fa2e9228..2a33b945be 100644 --- a/stream/tv.h +++ b/stream/tv.h @@ -198,7 +198,7 @@ typedef struct { #define TVI_CONTROL_VBI_INIT 0x501 ///< vbi init /* - TELETEXT controls (through tv_teletext_control() ) + TELETEXT controls (through teletext_control() ) NOTE: _SET_ should be _GET_ +1 _STEP_ should be _GET_ +2 @@ -213,7 +213,7 @@ typedef struct { #define TV_VBI_CONTROL_GET_SUBPAGE 0x516 ///< get grabbed teletext page #define TV_VBI_CONTROL_SET_SUBPAGE 0x517 ///< set grab teletext page number -#define TV_VBI_CONTROL_GET_FORMAT 0x519 ///< get eletext format +#define TV_VBI_CONTROL_GET_FORMAT 0x519 ///< get teletext format #define TV_VBI_CONTROL_SET_FORMAT 0x51a ///< set teletext format #define TV_VBI_CONTROL_GET_HALF_PAGE 0x51c ///< get current half page @@ -269,7 +269,7 @@ void tv_start_scan(tvi_handle_t *tvh, int start); #define TV_NORM_NTSCJP 7 #define VBI_TFORMAT_TEXT 0 ///< text mode -#define VBI_TFORMAT_BW 1 ///< back&white mode +#define VBI_TFORMAT_BW 1 ///< black&white mode #define VBI_TFORMAT_GRAY 2 ///< grayscale mode #define VBI_TFORMAT_COLOR 3 ///< color mode (require color_spu patch!) -- cgit v1.2.3 From c8bbeea3b202f3b6569fccbc38d10d803173a8f5 Mon Sep 17 00:00:00 2001 From: cehoyos Date: Sun, 2 Aug 2009 14:50:24 +0000 Subject: Add standard GPL license header. Patch by Francesco Lavra, francescolavra interfree it git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29468 b3059339-0415-0410-9bf9-f77b7e298cf2 --- stream/tv.h | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) (limited to 'stream') diff --git a/stream/tv.h b/stream/tv.h index 2a33b945be..8aa485de82 100644 --- a/stream/tv.h +++ b/stream/tv.h @@ -1,3 +1,25 @@ +/* + * Teletext support + * + * Copyright (C) 2007 Vladimir Voroshilov + * + * This file is part of MPlayer. + * + * MPlayer is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * MPlayer 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 General Public License for more details. + * + * You should have received a copy of the GNU General Public License along + * with MPlayer; if not, write to the Free Software Foundation, Inc., + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + */ + #ifndef MPLAYER_TV_H #define MPLAYER_TV_H -- cgit v1.2.3 From 19199c79aebf64ab345d5ee11400d6af67971799 Mon Sep 17 00:00:00 2001 From: cehoyos Date: Sun, 2 Aug 2009 15:39:08 +0000 Subject: Fix another typo. Patch by Francesco Lavra, francescolavra interfree it git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29470 b3059339-0415-0410-9bf9-f77b7e298cf2 --- stream/tvi_vbi.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'stream') diff --git a/stream/tvi_vbi.c b/stream/tvi_vbi.c index 58d830e1d2..2be0d99d07 100644 --- a/stream/tvi_vbi.c +++ b/stream/tvi_vbi.c @@ -880,7 +880,7 @@ static void prepare_visible_page(priv_vbi_t* priv){ * \param pt page to render * \param f opened file descriptor * \param pagenum which page to render - * \param colored use colors not implementede yet) + * \param colored use colors not implemented yet) * * Text will be UTF8 encoded */ -- cgit v1.2.3 From 4112165879aa16ac03a74c7732fa6b12636a92c1 Mon Sep 17 00:00:00 2001 From: cehoyos Date: Sat, 15 Aug 2009 23:33:56 +0000 Subject: Add missing major contributors to copyright statement. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29520 b3059339-0415-0410-9bf9-f77b7e298cf2 --- stream/tv.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'stream') diff --git a/stream/tv.h b/stream/tv.h index 8aa485de82..51b2dfecd8 100644 --- a/stream/tv.h +++ b/stream/tv.h @@ -1,6 +1,8 @@ /* * Teletext support * + * Copyright (C) 2001 Alex Beregszászi + * Copyright (C) 2007 Attila Ötvös * Copyright (C) 2007 Vladimir Voroshilov * * This file is part of MPlayer. -- cgit v1.2.3 From 6a101a97f943ba26a4599555c7dfead98ad0ddc8 Mon Sep 17 00:00:00 2001 From: cehoyos Date: Sat, 15 Aug 2009 23:41:35 +0000 Subject: Fix file information. Patch by Francesco Lavra, francescolavra interfree it git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29521 b3059339-0415-0410-9bf9-f77b7e298cf2 --- stream/tv.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'stream') diff --git a/stream/tv.h b/stream/tv.h index 51b2dfecd8..d177628e85 100644 --- a/stream/tv.h +++ b/stream/tv.h @@ -1,5 +1,5 @@ /* - * Teletext support + * TV interface * * Copyright (C) 2001 Alex Beregszászi * Copyright (C) 2007 Attila Ötvös -- cgit v1.2.3