summaryrefslogtreecommitdiffstats
path: root/sub_cc.c
diff options
context:
space:
mode:
authordiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2009-03-15 12:45:16 +0000
committerdiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2009-03-15 12:45:16 +0000
commita21feef029de43279c59460a97b93ba115952594 (patch)
tree1a5d033349d7ccaabd17d876748e5511cb96a5f1 /sub_cc.c
parente6b0136d3797cba626ad16d07c6c401bfcc94625 (diff)
downloadmpv-a21feef029de43279c59460a97b93ba115952594.tar.bz2
mpv-a21feef029de43279c59460a97b93ba115952594.tar.xz
cosmetics: Remove file names from file header, it only causes trouble.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28959 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'sub_cc.c')
-rw-r--r--sub_cc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sub_cc.c b/sub_cc.c
index 2acebf01bc..3a420ed6d9 100644
--- a/sub_cc.c
+++ b/sub_cc.c
@@ -1,5 +1,5 @@
/*
- * sub_cc.c - Decoder for Closed Captions
+ * decoder for Closed Captions
*
* This decoder relies on MPlayer's OSD to display subtitles.
* Be warned that the decoding is somewhat preliminary, though it basically works.
@@ -130,7 +130,7 @@ static void append_char(char c)
{
if(cursor_pos==CC_MAX_LINE_LENGTH-1)
{
- fprintf(stderr,"sub_cc.c: append_char() reached CC_MAX_LINE_LENGTH!\n");
+ fprintf(stderr,"CC: append_char() reached CC_MAX_LINE_LENGTH!\n");
return;
}
bb->text[bb->lines - 1][cursor_pos++]=c;