summaryrefslogtreecommitdiffstats
path: root/stream
diff options
context:
space:
mode:
authorvoroshil <voroshil@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-08-29 17:46:33 +0000
committervoroshil <voroshil@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-08-29 17:46:33 +0000
commit23d80af5c6ef4ae4feb1beff5a4bfe2c3f90f57c (patch)
treeb597d7bbdb5605dc305888423889a12d2e9aa60f /stream
parentbeda7b3ce3b1cccfa0959c83e9bb78de5c11d777 (diff)
downloadmpv-23d80af5c6ef4ae4feb1beff5a4bfe2c3f90f57c.tar.bz2
mpv-23d80af5c6ef4ae4feb1beff5a4bfe2c3f90f57c.tar.xz
(cosmetics) replace tabs with spaces
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24298 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'stream')
-rw-r--r--stream/tvi_vbi.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/stream/tvi_vbi.c b/stream/tvi_vbi.c
index cc62881f43..5bb16424b7 100644
--- a/stream/tvi_vbi.c
+++ b/stream/tvi_vbi.c
@@ -347,8 +347,8 @@ static unsigned int conv2uni(unsigned int p,int lang)
return latin_subchars[lang][p-0x5b+3];
}else if (p>=0x7b && p<=0x7e){
return latin_subchars[lang][p-0x7b+9];
- }
- }
+ }
+ }
return lang_chars[charset][p-0x20];
}else
return 0x20;
@@ -428,7 +428,7 @@ static void put_to_cache(priv_vbi_t* priv,tt_page* pg,int line){
if(line<0){
i=0;
- count=VBI_ROWS*VBI_COLUMNS;
+ count=VBI_ROWS*VBI_COLUMNS;
}else if(line<VBI_ROWS){
i=line*VBI_COLUMNS;
count=(line+1)*VBI_COLUMNS;
@@ -1294,7 +1294,7 @@ static void vbi_decode(priv_vbi_t* priv,unsigned char*buf){
#if 0
/*
This routine is alternative implementation of raw VBI data decoding.
- Unfortunately, it detects only about 20% of incoming data,
+ Unfortunately, it detects only about 20% of incoming data,
but Michael says that this algorithm is better, and he wants to fix it.
*/
if(decode_raw_line_sine(priv,linep,data)<=0){