summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--libaf/af_ladspa.c2
-rw-r--r--libmpcodecs/ad.c4
-rw-r--r--libmpcodecs/vf_bmovl.c2
-rw-r--r--libmpcodecs/vf_framestep.c3
-rw-r--r--libmpcodecs/vf_tile.c2
-rw-r--r--libvo/spuenc.c2
-rw-r--r--libvo/spuenc.h2
-rw-r--r--osdep/getch2-os2.c2
-rw-r--r--sub_cc.c4
9 files changed, 10 insertions, 13 deletions
diff --git a/libaf/af_ladspa.c b/libaf/af_ladspa.c
index 97b8982503..414cd34ff1 100644
--- a/libaf/af_ladspa.c
+++ b/libaf/af_ladspa.c
@@ -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
diff --git a/libmpcodecs/ad.c b/libmpcodecs/ad.c
index 11d6f350fe..01b9b26d9f 100644
--- a/libmpcodecs/ad.c
+++ b/libmpcodecs/ad.c
@@ -1,6 +1,4 @@
-/*
- ad.c - audio decoder interface
-*/
+/* audio decoder interface */
#include <stdio.h>
#include <stdlib.h>
diff --git a/libmpcodecs/vf_bmovl.c b/libmpcodecs/vf_bmovl.c
index 80b61ca502..02f9326aa5 100644
--- a/libmpcodecs/vf_bmovl.c
+++ b/libmpcodecs/vf_bmovl.c
@@ -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>
*
diff --git a/libmpcodecs/vf_framestep.c b/libmpcodecs/vf_framestep.c
index 956fe03ae3..9f6d331d87 100644
--- a/libmpcodecs/vf_framestep.c
+++ b/libmpcodecs/vf_framestep.c
@@ -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:
*
diff --git a/libmpcodecs/vf_tile.c b/libmpcodecs/vf_tile.c
index 8fc4b702fc..6bb43eaae6 100644
--- a/libmpcodecs/vf_tile.c
+++ b/libmpcodecs/vf_tile.c
@@ -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:
*
diff --git a/libvo/spuenc.c b/libvo/spuenc.c
index 41303aee3f..7ce2d12809 100644
--- a/libvo/spuenc.c
+++ b/libvo/spuenc.c
@@ -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>
*
diff --git a/libvo/spuenc.h b/libvo/spuenc.h
index 5f27680876..5bc83b329b 100644
--- a/libvo/spuenc.h
+++ b/libvo/spuenc.h
@@ -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>
*
diff --git a/osdep/getch2-os2.c b/osdep/getch2-os2.c
index ef2dcf22a6..abb7f2e6ac 100644
--- a/osdep/getch2-os2.c
+++ b/osdep/getch2-os2.c
@@ -1,5 +1,5 @@
/*
- * getch2-os2.c : OS/2 TermIO for MPlayer
+ * OS/2 TermIO
*
* Copyright (c) 2007 KO Myung-Hun (komh@chollian.net)
*
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;