summaryrefslogtreecommitdiff
path: root/libavcodec
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2007-04-04 11:43:08 +0000
committerDiego Biurrun <diego@biurrun.de>2007-04-04 11:43:08 +0000
commitee5c8a9bc44d0a0e608e74f85debdf73609e4d68 (patch)
treed6344d0e68b413e4c0eb334a9d140e9500fc0d8e /libavcodec
parent7c1ebf179bd674e7237ea289ef37137ab6977fb5 (diff)
Add some Doxygen comments, by Kamil Nowosad, k.nowosad students.mimuw.edu pl.
Originally committed as revision 8624 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec')
-rw-r--r--libavcodec/tiff.c6
-rw-r--r--libavcodec/tiff.h8
-rw-r--r--libavcodec/tiffenc.c5
3 files changed, 18 insertions, 1 deletions
diff --git a/libavcodec/tiff.c b/libavcodec/tiff.c
index 6bbd60d10e..f614b32a6a 100644
--- a/libavcodec/tiff.c
+++ b/libavcodec/tiff.c
@@ -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>
diff --git a/libavcodec/tiff.h b/libavcodec/tiff.h
index 77e8734c7a..4e51de24d3 100644
--- a/libavcodec/tiff.h
+++ b/libavcodec/tiff.h
@@ -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,
diff --git a/libavcodec/tiffenc.c b/libavcodec/tiffenc.c
index f9a086fcfa..20c9bee33c 100644
--- a/libavcodec/tiffenc.c
+++ b/libavcodec/tiffenc.c
@@ -20,6 +20,11 @@
*
*/
+/**
+ * TIFF image encoder
+ * @file tiffenc.c
+ * @author Bartlomiej Wolowiec
+ */
#include "avcodec.h"
#ifdef CONFIG_ZLIB
#include <zlib.h>