]> git.sesse.net Git - ffmpeg/blobdiff - libavcodec/tiff.h
Correct motion vector scaling in B-frames for RV3/4
[ffmpeg] / libavcodec / tiff.h
index 77e8734c7ae5c39f591aba4a50e6beccb9c3cb5a..1c515927a55fe9ae3b515b5235fe5001da9559c1 100644 (file)
  * You should have received a copy of the GNU Lesser General Public
  * License along with FFmpeg; if not, write to the Free Software
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
- *
  */
 
-#ifndef TIFF_H
-#define TIFF_H
+/**
+ * TIFF tables
+ * @file tiff.h
+ * @author Konstantin Shishkov
+ */
+#ifndef AVCODEC_TIFF_H
+#define AVCODEC_TIFF_H
+
+#include <stdint.h>
 
-/* abridged list of TIFF tags */
+/** abridged list of TIFF tags */
 enum TiffTags{
     TIFF_SUBFILE = 0xfe,
     TIFF_WIDTH = 0x100,
@@ -50,6 +56,7 @@ enum TiffTags{
     TIFF_REFERENCE_BW = 0x214,
 };
 
+/** list of TIFF compression types */
 enum TiffCompr{
     TIFF_RAW = 1,
     TIFF_CCITT_RLE,
@@ -76,4 +83,4 @@ static const uint8_t type_sizes[6] = {
     0, 1, 100, 2, 4, 8
 };
 
-#endif                          /* TIFF_H */
+#endif /* AVCODEC_TIFF_H */