Author: gkovacs Date: Mon Jul 13 09:52:26 2009 New Revision: 4706 Log: added author doxygen fields
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:17:55 2009 (r4705) +++ concat/libavformat/concat.c Mon Jul 13 09:52:26 2009 (r4706) @@ -21,6 +21,7 @@ /** @file concat.c * @brief Minimal playlist/concatenation demuxer + * @author Geza Kovacs ( gkovacs mit edu ) * @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:17:55 2009 (r4705) +++ concat/libavformat/concatgen.c Mon Jul 13 09:52:26 2009 (r4706) @@ -21,6 +21,7 @@ /** @file concatgen.c * @brief Generic functions used by playlist/concatenation demuxers + * @author Geza Kovacs ( gkovacs mit edu ) * @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:17:55 2009 (r4705) +++ concat/libavformat/datanode.c Mon Jul 13 09:52:26 2009 (r4706) @@ -1,5 +1,5 @@ /* - * Library to parse and represent ini (and later xml) files + * Format to represent ini and xml files as doubly linked 2D data nodes * Copyright (c) 2009 Geza Kovacs * * This file is part of FFmpeg. @@ -19,6 +19,11 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ +/** @file datanode.c + * @brief Format to represent ini and xml files as doubly linked 2D data nodes + * @author Geza Kovacs ( gkovacs mit edu ) + */ + #include "datanode.h" DataNode *ff_datanode_mkchild(DataNode *o) Modified: concat/libavformat/datanode.h ============================================================================== --- concat/libavformat/datanode.h Mon Jul 13 09:17:55 2009 (r4705) +++ concat/libavformat/datanode.h Mon Jul 13 09:52:26 2009 (r4706) @@ -1,5 +1,5 @@ /* - * Format to represent ini (and later xml) as doubly linked 2D data nodes + * Format to represent ini and xml files as doubly linked 2D data nodes * Copyright (c) 2009 Geza Kovacs * * This file is part of FFmpeg. @@ -19,6 +19,11 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ +/** @file datanode.h + * @brief Format to represent ini and xml files as doubly linked 2D data nodes + * @author Geza Kovacs ( gkovacs mit edu ) + */ + #ifndef AVFORMAT_DATANODE_H #define AVFORMAT_DATANODE_H Modified: concat/libavformat/m3u.c ============================================================================== --- concat/libavformat/m3u.c Mon Jul 13 09:17:55 2009 (r4705) +++ concat/libavformat/m3u.c Mon Jul 13 09:52:26 2009 (r4706) @@ -21,6 +21,7 @@ /** @file m3u.c * @brief M3U playlist demuxer + * @author Geza Kovacs ( gkovacs mit edu ) */ #include "playlist.h" Modified: concat/libavformat/playlist.c ============================================================================== --- concat/libavformat/playlist.c Mon Jul 13 09:17:55 2009 (r4705) +++ concat/libavformat/playlist.c Mon Jul 13 09:52:26 2009 (r4706) @@ -21,6 +21,7 @@ /** @file playlist.c * @brief General components used by playlist formats + * @author Geza Kovacs ( gkovacs mit edu ) * @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 Modified: concat/libavformat/playlist.h ============================================================================== --- concat/libavformat/playlist.h Mon Jul 13 09:17:55 2009 (r4705) +++ concat/libavformat/playlist.h Mon Jul 13 09:52:26 2009 (r4706) @@ -21,6 +21,7 @@ /** @file playlist.h * @brief General components used by playlist formats + * @author Geza Kovacs ( gkovacs mit edu ) * @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 Modified: concat/libavformat/pls.c ============================================================================== --- concat/libavformat/pls.c Mon Jul 13 09:17:55 2009 (r4705) +++ concat/libavformat/pls.c Mon Jul 13 09:52:26 2009 (r4706) @@ -21,6 +21,7 @@ /** @file pls.c * @brief PLS playlist demuxer + * @author Geza Kovacs ( gkovacs mit edu ) */ #include "playlist.h" Modified: concat/libavformat/xspf.c ============================================================================== --- concat/libavformat/xspf.c Mon Jul 13 09:17:55 2009 (r4705) +++ concat/libavformat/xspf.c Mon Jul 13 09:52:26 2009 (r4706) @@ -21,6 +21,7 @@ /** @file pls.c * @brief XSPF playlist demuxer + * @author Geza Kovacs ( gkovacs mit edu ) */ #include "avformat.h" _______________________________________________ FFmpeg-soc mailing list [email protected] https://lists.mplayerhq.hu/mailman/listinfo/ffmpeg-soc
