changeset 33882:08a90b0e44e1

doxygen: drop filename from @file directive Specifying the filename is not necessary and brittle across renames.
author diego
date Thu, 11 Aug 2011 17:45:38 +0000
parents 5f26e381baf8
children 7bf488338904
files libmpcodecs/vf_remove_logo.c libmpcodecs/vf_zrmjpeg.c libvo/gl_common.c m_option.h m_struct.h osdep/mmap_anon.c pnm_loader.c stream/freesdp/common.c stream/freesdp/common.h stream/freesdp/errorlist.c stream/freesdp/parser.c stream/freesdp/parser.h stream/freesdp/parserpriv.h stream/freesdp/priv.h subopt-helper.c subopt-helper.h
diffstat 16 files changed, 16 insertions(+), 16 deletions(-) [+]
line wrap: on
line diff
--- a/libmpcodecs/vf_remove_logo.c	Thu Aug 11 17:45:34 2011 +0000
+++ b/libmpcodecs/vf_remove_logo.c	Thu Aug 11 17:45:38 2011 +0000
@@ -22,7 +22,7 @@
  */
 
 /**
- * \file vf_remove_logo.c
+ * \file
  *
  * \brief Advanced blur-based logo removing filter.
 
--- a/libmpcodecs/vf_zrmjpeg.c	Thu Aug 11 17:45:34 2011 +0000
+++ b/libmpcodecs/vf_zrmjpeg.c	Thu Aug 11 17:45:38 2011 +0000
@@ -27,7 +27,7 @@
  */
 
 /**
- * \file vf_zrmjpeg.c
+ * \file
  *
  * \brief Does mjpeg encoding as required by the zrmjpeg filter as well
  * as by the zr video driver.
--- a/libvo/gl_common.c	Thu Aug 11 17:45:34 2011 +0000
+++ b/libvo/gl_common.c	Thu Aug 11 17:45:38 2011 +0000
@@ -28,7 +28,7 @@
  */
 
 /**
- * \file gl_common.c
+ * \file
  * \brief OpenGL helper functions used by vo_gl.c and vo_gl2.c
  */
 
--- a/m_option.h	Thu Aug 11 17:45:34 2011 +0000
+++ b/m_option.h	Thu Aug 11 17:45:38 2011 +0000
@@ -27,7 +27,7 @@
 /// \ref Properties APIs.
 ///@{
 
-/// \file m_option.h
+/// \file
 
 /// \ingroup OptionTypes
 typedef struct m_option_type m_option_type_t;
--- a/m_struct.h	Thu Aug 11 17:45:34 2011 +0000
+++ b/m_struct.h	Thu Aug 11 17:45:38 2011 +0000
@@ -24,7 +24,7 @@
 /// An API to manipulate structs using m_option.
 ///@{
 
-/// \file m_struct.h
+/// \file
 
 struct m_option;
 
--- a/osdep/mmap_anon.c	Thu Aug 11 17:45:34 2011 +0000
+++ b/osdep/mmap_anon.c	Thu Aug 11 17:45:38 2011 +0000
@@ -17,7 +17,7 @@
  */
 
  /**
- * \file mmap_anon.c
+ * \file
  * \brief Provide a compatible anonymous space mapping function
  */
 #include "config.h"
--- a/pnm_loader.c	Thu Aug 11 17:45:34 2011 +0000
+++ b/pnm_loader.c	Thu Aug 11 17:45:38 2011 +0000
@@ -26,7 +26,7 @@
  */
 
 /**
- * \file pnm_loader.c
+ * \file
  * \brief PNM image files loader
  */
 
--- a/stream/freesdp/common.c	Thu Aug 11 17:45:34 2011 +0000
+++ b/stream/freesdp/common.c	Thu Aug 11 17:45:38 2011 +0000
@@ -18,7 +18,7 @@
 */
 
 /**
- * @file common.c
+ * @file
  *
  * @short Implementation of routines common to parse and formatting
  * modules .
--- a/stream/freesdp/common.h	Thu Aug 11 17:45:34 2011 +0000
+++ b/stream/freesdp/common.h	Thu Aug 11 17:45:38 2011 +0000
@@ -18,7 +18,7 @@
 */
 
 /**
- * @file common.h
+ * @file
  * @ingroup common
  * @short Public header common for both parsing and formatting modules.
  **/
--- a/stream/freesdp/errorlist.c	Thu Aug 11 17:45:34 2011 +0000
+++ b/stream/freesdp/errorlist.c	Thu Aug 11 17:45:38 2011 +0000
@@ -18,7 +18,7 @@
 */
 
 /**
- * @file errorlist.c
+ * @file
  *
  * @short Translation table for error numbers
  *
--- a/stream/freesdp/parser.c	Thu Aug 11 17:45:34 2011 +0000
+++ b/stream/freesdp/parser.c	Thu Aug 11 17:45:38 2011 +0000
@@ -22,7 +22,7 @@
 */
 
 /**
- * @file parser.c
+ * @file
  *
  * @short Parsing module implementation.
  *
--- a/stream/freesdp/parser.h	Thu Aug 11 17:45:34 2011 +0000
+++ b/stream/freesdp/parser.h	Thu Aug 11 17:45:38 2011 +0000
@@ -22,7 +22,7 @@
 */
 
 /**
- * @file parser.h
+ * @file
  * @ingroup parser
  * @short Specific public header for parsing module.
  **/
--- a/stream/freesdp/parserpriv.h	Thu Aug 11 17:45:34 2011 +0000
+++ b/stream/freesdp/parserpriv.h	Thu Aug 11 17:45:38 2011 +0000
@@ -18,7 +18,7 @@
 */
 
 /**
- * @file parserpriv.h
+ * @file
  *
  * @short Private header for parser module.
  **/
--- a/stream/freesdp/priv.h	Thu Aug 11 17:45:34 2011 +0000
+++ b/stream/freesdp/priv.h	Thu Aug 11 17:45:38 2011 +0000
@@ -22,7 +22,7 @@
 */
 
 /**
- * @file priv.h
+ * @file
  *
  * @short Common private header for both formatting and parsing modules.
  **/
--- a/subopt-helper.c	Thu Aug 11 17:45:34 2011 +0000
+++ b/subopt-helper.c	Thu Aug 11 17:45:38 2011 +0000
@@ -17,7 +17,7 @@
  */
 
 /**
- * \file subopt-helper.c
+ * \file
  *
  * \brief Compensates the suboption parsing code duplication a bit.
  *
--- a/subopt-helper.h	Thu Aug 11 17:45:34 2011 +0000
+++ b/subopt-helper.h	Thu Aug 11 17:45:38 2011 +0000
@@ -20,7 +20,7 @@
 #define MPLAYER_SUBOPT_HELPER_H
 
 /**
- * \file subopt-helper.h
+ * \file
  *
  * \brief Datatype and functions declarations for usage
  *        of the suboption parser.