annotate ffmpeg/libavcodec/png.h @ 13:844d341cf643 tip

Back up before ISMIR
author Yading Song <yading.song@eecs.qmul.ac.uk>
date Thu, 31 Oct 2013 13:17:06 +0000
parents 6840f77b83aa
children
rev   line source
yading@10 1 /*
yading@10 2 * PNG image format
yading@10 3 * Copyright (c) 2003 Fabrice Bellard
yading@10 4 *
yading@10 5 * This file is part of FFmpeg.
yading@10 6 *
yading@10 7 * FFmpeg is free software; you can redistribute it and/or
yading@10 8 * modify it under the terms of the GNU Lesser General Public
yading@10 9 * License as published by the Free Software Foundation; either
yading@10 10 * version 2.1 of the License, or (at your option) any later version.
yading@10 11 *
yading@10 12 * FFmpeg is distributed in the hope that it will be useful,
yading@10 13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
yading@10 14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
yading@10 15 * Lesser General Public License for more details.
yading@10 16 *
yading@10 17 * You should have received a copy of the GNU Lesser General Public
yading@10 18 * License along with FFmpeg; if not, write to the Free Software
yading@10 19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
yading@10 20 */
yading@10 21
yading@10 22 #ifndef AVCODEC_PNG_H
yading@10 23 #define AVCODEC_PNG_H
yading@10 24
yading@10 25 #include <stdint.h>
yading@10 26
yading@10 27 #define PNG_COLOR_MASK_PALETTE 1
yading@10 28 #define PNG_COLOR_MASK_COLOR 2
yading@10 29 #define PNG_COLOR_MASK_ALPHA 4
yading@10 30
yading@10 31 #define PNG_COLOR_TYPE_GRAY 0
yading@10 32 #define PNG_COLOR_TYPE_PALETTE (PNG_COLOR_MASK_COLOR | PNG_COLOR_MASK_PALETTE)
yading@10 33 #define PNG_COLOR_TYPE_RGB (PNG_COLOR_MASK_COLOR)
yading@10 34 #define PNG_COLOR_TYPE_RGB_ALPHA (PNG_COLOR_MASK_COLOR | PNG_COLOR_MASK_ALPHA)
yading@10 35 #define PNG_COLOR_TYPE_GRAY_ALPHA (PNG_COLOR_MASK_ALPHA)
yading@10 36
yading@10 37 #define PNG_FILTER_TYPE_LOCO 64
yading@10 38 #define PNG_FILTER_VALUE_NONE 0
yading@10 39 #define PNG_FILTER_VALUE_SUB 1
yading@10 40 #define PNG_FILTER_VALUE_UP 2
yading@10 41 #define PNG_FILTER_VALUE_AVG 3
yading@10 42 #define PNG_FILTER_VALUE_PAETH 4
yading@10 43 #define PNG_FILTER_VALUE_MIXED 5
yading@10 44
yading@10 45 #define PNG_IHDR 0x0001
yading@10 46 #define PNG_IDAT 0x0002
yading@10 47 #define PNG_ALLIMAGE 0x0004
yading@10 48 #define PNG_PLTE 0x0008
yading@10 49
yading@10 50 #define NB_PASSES 7
yading@10 51
yading@10 52 #define PNGSIG 0x89504e470d0a1a0a
yading@10 53 #define MNGSIG 0x8a4d4e470d0a1a0a
yading@10 54
yading@10 55 /* Mask to determine which y pixels are valid in a pass */
yading@10 56 extern const uint8_t ff_png_pass_ymask[NB_PASSES];
yading@10 57
yading@10 58 void *ff_png_zalloc(void *opaque, unsigned int items, unsigned int size);
yading@10 59
yading@10 60 void ff_png_zfree(void *opaque, void *ptr);
yading@10 61
yading@10 62 int ff_png_get_nb_channels(int color_type);
yading@10 63
yading@10 64 /* compute the row size of an interleaved pass */
yading@10 65 int ff_png_pass_row_size(int pass, int bits_per_pixel, int width);
yading@10 66
yading@10 67 void ff_add_png_paeth_prediction(uint8_t *dst, uint8_t *src, uint8_t *top, int w, int bpp);
yading@10 68
yading@10 69 #endif /* AVCODEC_PNG_H */