Mercurial > mplayer.hg
changeset 28924:d5d66bff938a
cosmetics: Remove file names from file header, it only causes trouble.
author | diego |
---|---|
date | Sun, 15 Mar 2009 12:45:16 +0000 |
parents | 7dd48949e3d2 |
children | ef5a1edc2007 |
files | libaf/af_ladspa.c libmpcodecs/ad.c libmpcodecs/vf_bmovl.c libmpcodecs/vf_framestep.c libmpcodecs/vf_tile.c libvo/spuenc.c libvo/spuenc.h osdep/getch2-os2.c sub_cc.c |
diffstat | 9 files changed, 10 insertions(+), 13 deletions(-) [+] |
line wrap: on
line diff
--- a/libaf/af_ladspa.c Sun Mar 15 10:13:44 2009 +0000 +++ b/libaf/af_ladspa.c Sun Mar 15 12:45:16 2009 +0000 @@ -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
--- a/libmpcodecs/ad.c Sun Mar 15 10:13:44 2009 +0000 +++ b/libmpcodecs/ad.c Sun Mar 15 12:45:16 2009 +0000 @@ -1,6 +1,4 @@ -/* - ad.c - audio decoder interface -*/ +/* audio decoder interface */ #include <stdio.h> #include <stdlib.h>
--- a/libmpcodecs/vf_bmovl.c Sun Mar 15 10:13:44 2009 +0000 +++ b/libmpcodecs/vf_bmovl.c Sun Mar 15 12:45:16 2009 +0000 @@ -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> *
--- a/libmpcodecs/vf_framestep.c Sun Mar 15 10:13:44 2009 +0000 +++ b/libmpcodecs/vf_framestep.c Sun Mar 15 12:45:16 2009 +0000 @@ -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: *
--- a/libmpcodecs/vf_tile.c Sun Mar 15 10:13:44 2009 +0000 +++ b/libmpcodecs/vf_tile.c Sun Mar 15 12:45:16 2009 +0000 @@ -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: *
--- a/libvo/spuenc.c Sun Mar 15 10:13:44 2009 +0000 +++ b/libvo/spuenc.c Sun Mar 15 12:45:16 2009 +0000 @@ -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> *
--- a/libvo/spuenc.h Sun Mar 15 10:13:44 2009 +0000 +++ b/libvo/spuenc.h Sun Mar 15 12:45:16 2009 +0000 @@ -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> *
--- a/osdep/getch2-os2.c Sun Mar 15 10:13:44 2009 +0000 +++ b/osdep/getch2-os2.c Sun Mar 15 12:45:16 2009 +0000 @@ -1,5 +1,5 @@ /* - * getch2-os2.c : OS/2 TermIO for MPlayer + * OS/2 TermIO * * Copyright (c) 2007 KO Myung-Hun (komh@chollian.net) *
--- a/sub_cc.c Sun Mar 15 10:13:44 2009 +0000 +++ b/sub_cc.c Sun Mar 15 12:45:16 2009 +0000 @@ -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 @@ { 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;