[Ffmpeg-devel] [PATCH] TIFF encoder (Google SoC qualification task)
Kamil Nowosad
k.nowosad
Wed Apr 4 13:24:43 CEST 2007
Hi
On Wed, Apr 04, 2007 at 12:02:14PM +0200, Michael Niedermayer wrote:
> > -#endif /* TIFF_H */
> > +#endif ///< TIFF_H
>
> does doxygen support comments on #endif ?
Haven't checked it before. It doesn't.
Corrected patch attached.
--
Best regards,
Kamil Nowosad
-------------- next part --------------
Index: libavcodec/tiffenc.c
===================================================================
--- libavcodec/tiffenc.c (wersja 8622)
+++ libavcodec/tiffenc.c (kopia robocza)
@@ -20,6 +20,11 @@
*
*/
+/**
+ * TIFF image encoder
+ * @file tiffenc.c
+ * @author Bartlomiej Wolowiec
+ */
#include "avcodec.h"
#ifdef CONFIG_ZLIB
#include <zlib.h>
Index: libavcodec/tiff.c
===================================================================
--- libavcodec/tiff.c (wersja 8622)
+++ libavcodec/tiff.c (kopia robocza)
@@ -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>
Index: libavcodec/tiff.h
===================================================================
--- libavcodec/tiff.h (wersja 8622)
+++ libavcodec/tiff.h (kopia robocza)
@@ -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 @@
TIFF_REFERENCE_BW = 0x214,
};
+/** list of TIFF compression types */
enum TiffCompr{
TIFF_RAW = 1,
TIFF_CCITT_RLE,
More information about the ffmpeg-devel
mailing list