Commit ea4197c0 authored by diego's avatar diego

Add some Doxygen comments, by Kamil Nowosad, k.nowosad students.mimuw.edu pl.


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@8624 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 049866a0
...@@ -19,6 +19,12 @@ ...@@ -19,6 +19,12 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
* *
*/ */
/**
* TIFF image decoder
* @file tiff.c
* @author Konstantin Shishkov
*/
#include "avcodec.h" #include "avcodec.h"
#ifdef CONFIG_ZLIB #ifdef CONFIG_ZLIB
#include <zlib.h> #include <zlib.h>
......
...@@ -20,10 +20,15 @@ ...@@ -20,10 +20,15 @@
* *
*/ */
/**
* TIFF tables
* @file tiff.h
* @author Konstantin Shishkov
*/
#ifndef TIFF_H #ifndef TIFF_H
#define TIFF_H #define TIFF_H
/* abridged list of TIFF tags */ /** abridged list of TIFF tags */
enum TiffTags{ enum TiffTags{
TIFF_SUBFILE = 0xfe, TIFF_SUBFILE = 0xfe,
TIFF_WIDTH = 0x100, TIFF_WIDTH = 0x100,
...@@ -50,6 +55,7 @@ enum TiffTags{ ...@@ -50,6 +55,7 @@ enum TiffTags{
TIFF_REFERENCE_BW = 0x214, TIFF_REFERENCE_BW = 0x214,
}; };
/** list of TIFF compression types */
enum TiffCompr{ enum TiffCompr{
TIFF_RAW = 1, TIFF_RAW = 1,
TIFF_CCITT_RLE, TIFF_CCITT_RLE,
......
...@@ -20,6 +20,11 @@ ...@@ -20,6 +20,11 @@
* *
*/ */
/**
* TIFF image encoder
* @file tiffenc.c
* @author Bartlomiej Wolowiec
*/
#include "avcodec.h" #include "avcodec.h"
#ifdef CONFIG_ZLIB #ifdef CONFIG_ZLIB
#include <zlib.h> #include <zlib.h>
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment