[Ffmpeg-cvslog] r8624 - in trunk/libavcodec: tiff.c tiff.h tiffenc.c
diego
subversion
Wed Apr 4 13:43:08 CEST 2007
Author: diego
Date: Wed Apr 4 13:43:08 2007
New Revision: 8624
Modified:
trunk/libavcodec/tiff.c
trunk/libavcodec/tiff.h
trunk/libavcodec/tiffenc.c
Log:
Add some Doxygen comments, by Kamil Nowosad, k.nowosad students.mimuw.edu pl.
Modified: trunk/libavcodec/tiff.c
==============================================================================
--- trunk/libavcodec/tiff.c (original)
+++ trunk/libavcodec/tiff.c Wed Apr 4 13:43:08 2007
@@ -19,6 +19,12 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*
*/
+
+/**
+ * TIFF image decoder
+ * @file tiff.c
+ * @author Konstantin Shishkov
+ */
#include "avcodec.h"
#ifdef CONFIG_ZLIB
#include <zlib.h>
Modified: trunk/libavcodec/tiff.h
==============================================================================
--- trunk/libavcodec/tiff.h (original)
+++ trunk/libavcodec/tiff.h Wed Apr 4 13:43:08 2007
@@ -20,10 +20,15 @@
*
*/
+/**
+ * TIFF tables
+ * @file tiff.h
+ * @author Konstantin Shishkov
+ */
#ifndef TIFF_H
#define TIFF_H
-/* abridged list of TIFF tags */
+/** abridged list of TIFF tags */
enum TiffTags{
TIFF_SUBFILE = 0xfe,
TIFF_WIDTH = 0x100,
@@ -50,6 +55,7 @@ enum TiffTags{
TIFF_REFERENCE_BW = 0x214,
};
+/** list of TIFF compression types */
enum TiffCompr{
TIFF_RAW = 1,
TIFF_CCITT_RLE,
Modified: trunk/libavcodec/tiffenc.c
==============================================================================
--- trunk/libavcodec/tiffenc.c (original)
+++ trunk/libavcodec/tiffenc.c Wed Apr 4 13:43:08 2007
@@ -20,6 +20,11 @@
*
*/
+/**
+ * TIFF image encoder
+ * @file tiffenc.c
+ * @author Bartlomiej Wolowiec
+ */
#include "avcodec.h"
#ifdef CONFIG_ZLIB
#include <zlib.h>
More information about the ffmpeg-cvslog
mailing list