[Ffmpeg-devel] [PATCH] TIFF encoder (Google SoC qualification task)

Kamil Nowosad k.nowosad
Wed Apr 4 11:44:25 CEST 2007


Hi

On Tue, Apr 03, 2007 at 04:04:41PM +0200, Michael Niedermayer wrote:
> but please coordinate this with bartlomiej so you dont work on the same
> sub tasks

Ok, we have divided the tasks between us.

I have attached the patch which adds some doxygen comments.

-- 
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,
@@ -76,4 +82,4 @@
     0, 1, 100, 2, 4, 8
 };
 
-#endif                          /* TIFF_H */
+#endif ///< TIFF_H



More information about the ffmpeg-devel mailing list