X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=libavcodec%2Ftiff.h;h=cf890d678b8054134890048fa28a57e5a0ba5517;hb=f64e0a2f379c1297dc9b1744999e29ab84646261;hp=09ba3fd9db7ab5f16ae432a256a1004ebc0c4f2e;hpb=99545457bf1175d55e4eaa2c061dbf0faeb661ec;p=ffmpeg diff --git a/libavcodec/tiff.h b/libavcodec/tiff.h index 09ba3fd9db7..cf890d678b8 100644 --- a/libavcodec/tiff.h +++ b/libavcodec/tiff.h @@ -2,31 +2,31 @@ * TIFF tables * Copyright (c) 2006 Konstantin Shishkov * - * This file is part of FFmpeg. + * This file is part of Libav. * - * FFmpeg is free software; you can redistribute it and/or + * Libav is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, or (at your option) any later version. * - * FFmpeg is distributed in the hope that it will be useful, + * Libav is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public - * License along with FFmpeg; if not, write to the Free Software + * License along with Libav; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA - * */ /** + * @file * TIFF tables - * @file tiff.h * @author Konstantin Shishkov */ -#ifndef TIFF_H -#define TIFF_H + +#ifndef AVCODEC_TIFF_H +#define AVCODEC_TIFF_H #include @@ -38,6 +38,7 @@ enum TiffTags{ TIFF_BPP, TIFF_COMPR, TIFF_INVERT = 0x106, + TIFF_FILL_ORDER = 0x10A, TIFF_STRIP_OFFS = 0x111, TIFF_SAMPLES_PER_PIXEL = 0x115, TIFF_ROWSPERSTRIP = 0x116, @@ -47,6 +48,8 @@ enum TiffTags{ TIFF_PLANAR = 0x11C, TIFF_XPOS = 0x11E, TIFF_YPOS = 0x11F, + TIFF_T4OPTIONS = 0x124, + TIFF_T6OPTIONS, TIFF_RES_UNIT = 0x128, TIFF_SOFTWARE_NAME = 0x131, TIFF_PREDICTOR = 0x13D, @@ -84,4 +87,4 @@ static const uint8_t type_sizes[6] = { 0, 1, 100, 2, 4, 8 }; -#endif /* TIFF_H */ +#endif /* AVCODEC_TIFF_H */