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
This commit is contained in:
diego 2009-03-15 12:45:16 +00:00
parent e6b0136d37
commit a21feef029
9 changed files with 10 additions and 13 deletions

View File

@ -1,5 +1,5 @@
/*
* af_ladspa.c, LADSPA plugin loader
* LADSPA plugin loader
*
* Written by Ivo van Poorten <ivop@euronet.nl>
* Copyright (C) 2004, 2005

View File

@ -1,6 +1,4 @@
/*
ad.c - audio decoder interface
*/
/* audio decoder interface */
#include <stdio.h>
#include <stdlib.h>

View File

@ -1,5 +1,5 @@
/*
* vf_bmovl.c v0.9.1 - BitMap OVerLay video filter for MPlayer
* BitMap OVerLay video filter for MPlayer
*
* (C) 2002 Per Wigren <wigren@home.se>
*

View File

@ -1,6 +1,5 @@
/*
* vf_fstep.c - filter to ouput only 1 every n frame, or only the I (key)
* frame
* filter to ouput only 1 every n frame, or only the I (key)frame
*
* The parameters are:
*

View File

@ -1,5 +1,5 @@
/*
* vf_tile.c - filter to tile a serie of image in a single, bigger, image
* filter to tile a serie of image in a single, bigger, image
*
* The parameters are:
*

View File

@ -1,5 +1,5 @@
/*
* subpic_encode.c - encodes a pixmap with RLE
* encode a pixmap with RLE
*
* Copyright (C) 2000 Alejandro J. Cura <alecu@protocultura.net>
*

View File

@ -1,5 +1,5 @@
/*
* subpic_encode.c - encodes a pixmap with RLE
* encode a pixmap with RLE
*
* Copyright (C) 2000 Alejandro J. Cura <alecu@protocultura.net>
*

View File

@ -1,5 +1,5 @@
/*
* getch2-os2.c : OS/2 TermIO for MPlayer
* OS/2 TermIO
*
* Copyright (c) 2007 KO Myung-Hun (komh@chollian.net)
*

View File

@ -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;