[FFmpeg-soc] [soc]: r4707 - in concat/libavformat: concat.c concatgen.c datanode.c datanode.h m3u.c playlist.c playlist.h pls.c xspf.c

gkovacs subversion at mplayerhq.hu
Mon Jul 13 10:25:40 CEST 2009


Author: gkovacs
Date: Mon Jul 13 10:25:40 2009
New Revision: 4707

Log:
fixed newlines in doxygen documentation generation

Modified:
   concat/libavformat/concat.c
   concat/libavformat/concatgen.c
   concat/libavformat/datanode.c
   concat/libavformat/datanode.h
   concat/libavformat/m3u.c
   concat/libavformat/playlist.c
   concat/libavformat/playlist.h
   concat/libavformat/pls.c
   concat/libavformat/xspf.c

Modified: concat/libavformat/concat.c
==============================================================================
--- concat/libavformat/concat.c	Mon Jul 13 09:52:26 2009	(r4706)
+++ concat/libavformat/concat.c	Mon Jul 13 10:25:40 2009	(r4707)
@@ -20,8 +20,10 @@
  */
 
 /** @file concat.c
- *  @brief Minimal playlist/concatenation demuxer
  *  @author Geza Kovacs ( gkovacs mit edu )
+ *
+ *  @brief Minimal playlist/concatenation demuxer
+ *
  *  @details This is a minimal concat-type demuxer that can be constructed
  *  by allocating a PlayElem for each playlist item and setting its filename,
  *  then allocating a PlaylistContext, creating a list of PlayElem, and setting

Modified: concat/libavformat/concatgen.c
==============================================================================
--- concat/libavformat/concatgen.c	Mon Jul 13 09:52:26 2009	(r4706)
+++ concat/libavformat/concatgen.c	Mon Jul 13 10:25:40 2009	(r4707)
@@ -20,8 +20,10 @@
  */
 
 /** @file concatgen.c
- *  @brief Generic functions used by playlist/concatenation demuxers
  *  @author Geza Kovacs ( gkovacs mit edu )
+ *
+ *  @brief Generic functions used by playlist/concatenation demuxers
+ *
  *  @details These functions are used to read packets and seek streams
  *  for concat-type demuxers, abstracting away the playlist element switching
  *  process.

Modified: concat/libavformat/datanode.c
==============================================================================
--- concat/libavformat/datanode.c	Mon Jul 13 09:52:26 2009	(r4706)
+++ concat/libavformat/datanode.c	Mon Jul 13 10:25:40 2009	(r4707)
@@ -20,8 +20,9 @@
  */
 
 /** @file datanode.c
- *  @brief Format to represent ini and xml files as doubly linked 2D data nodes
  *  @author Geza Kovacs ( gkovacs mit edu )
+ *
+ *  @brief Format to represent ini and xml files as doubly linked 2D data nodes
  */
 
 #include "datanode.h"

Modified: concat/libavformat/datanode.h
==============================================================================
--- concat/libavformat/datanode.h	Mon Jul 13 09:52:26 2009	(r4706)
+++ concat/libavformat/datanode.h	Mon Jul 13 10:25:40 2009	(r4707)
@@ -20,8 +20,9 @@
  */
 
 /** @file datanode.h
- *  @brief Format to represent ini and xml files as doubly linked 2D data nodes
  *  @author Geza Kovacs ( gkovacs mit edu )
+ *
+ *  @brief Format to represent ini and xml files as doubly linked 2D data nodes
  */
 
 #ifndef AVFORMAT_DATANODE_H

Modified: concat/libavformat/m3u.c
==============================================================================
--- concat/libavformat/m3u.c	Mon Jul 13 09:52:26 2009	(r4706)
+++ concat/libavformat/m3u.c	Mon Jul 13 10:25:40 2009	(r4707)
@@ -20,8 +20,9 @@
  */
 
 /** @file m3u.c
- *  @brief M3U playlist demuxer
  *  @author Geza Kovacs ( gkovacs mit edu )
+ *
+ *  @brief M3U playlist demuxer
  */
 
 #include "playlist.h"

Modified: concat/libavformat/playlist.c
==============================================================================
--- concat/libavformat/playlist.c	Mon Jul 13 09:52:26 2009	(r4706)
+++ concat/libavformat/playlist.c	Mon Jul 13 10:25:40 2009	(r4707)
@@ -20,11 +20,13 @@
  */
 
 /** @file playlist.c
- *  @brief General components used by playlist formats
  *  @author Geza Kovacs ( gkovacs mit edu )
+ *
+ *  @brief General components used by playlist formats
+ *
  *  @details These functions are used to initialize and manipulate playlists
  *  (PlaylistContext) and their individual playlist elements (PlayElem), each
- *  of which encapsulates its own AVFormatContext. This abstraction used for
+ *  of which encapsulates its own AVFormatContext. This abstraction is used for
  *  implementing file concatenation and support for playlist formats.
  */
 

Modified: concat/libavformat/playlist.h
==============================================================================
--- concat/libavformat/playlist.h	Mon Jul 13 09:52:26 2009	(r4706)
+++ concat/libavformat/playlist.h	Mon Jul 13 10:25:40 2009	(r4707)
@@ -20,11 +20,13 @@
  */
 
 /** @file playlist.h
- *  @brief General components used by playlist formats
  *  @author Geza Kovacs ( gkovacs mit edu )
+ *
+ *  @brief General components used by playlist formats
+ *
  *  @details These functions are used to initialize and manipulate playlists
  *  (PlaylistContext) and their individual playlist elements (PlayElem), each
- *  of which encapsulates its own AVFormatContext. This abstraction used for
+ *  of which encapsulates its own AVFormatContext. This abstraction is used for
  *  implementing file concatenation and support for playlist formats.
  */
 

Modified: concat/libavformat/pls.c
==============================================================================
--- concat/libavformat/pls.c	Mon Jul 13 09:52:26 2009	(r4706)
+++ concat/libavformat/pls.c	Mon Jul 13 10:25:40 2009	(r4707)
@@ -20,8 +20,9 @@
  */
 
 /** @file pls.c
- *  @brief PLS playlist demuxer
  *  @author Geza Kovacs ( gkovacs mit edu )
+ *
+ *  @brief PLS playlist demuxer
  */
 
 #include "playlist.h"

Modified: concat/libavformat/xspf.c
==============================================================================
--- concat/libavformat/xspf.c	Mon Jul 13 09:52:26 2009	(r4706)
+++ concat/libavformat/xspf.c	Mon Jul 13 10:25:40 2009	(r4707)
@@ -20,8 +20,9 @@
  */
 
 /** @file pls.c
- *  @brief XSPF playlist demuxer
  *  @author Geza Kovacs ( gkovacs mit edu )
+ *
+ *  @brief XSPF playlist demuxer
  */
 
 #include "avformat.h"


More information about the FFmpeg-soc mailing list