OLD | NEW |
(Empty) | |
| 1 /* |
| 2 * IFF PBM/ILBM bitmap decoder |
| 3 * Copyright (c) 2010 Peter Ross <pross@xvid.org> |
| 4 * |
| 5 * This file is part of FFmpeg. |
| 6 * |
| 7 * FFmpeg is free software; you can redistribute it and/or |
| 8 * modify it under the terms of the GNU Lesser General Public |
| 9 * License as published by the Free Software Foundation; either |
| 10 * version 2.1 of the License, or (at your option) any later version. |
| 11 * |
| 12 * FFmpeg is distributed in the hope that it will be useful, |
| 13 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 15 * Lesser General Public License for more details. |
| 16 * |
| 17 * You should have received a copy of the GNU Lesser General Public |
| 18 * License along with FFmpeg; if not, write to the Free Software |
| 19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA |
| 20 */ |
| 21 |
| 22 /** |
| 23 * @file libavcodec/iff.c |
| 24 * IFF PBM/ILBM bitmap decoder |
| 25 */ |
| 26 |
| 27 #include "bytestream.h" |
| 28 #include "avcodec.h" |
| 29 #include "get_bits.h" |
| 30 #include "iff.h" |
| 31 |
| 32 typedef struct { |
| 33 AVFrame frame; |
| 34 int planesize; |
| 35 uint8_t * planebuf; |
| 36 } IffContext; |
| 37 |
| 38 /** |
| 39 * Convert CMAP buffer (stored in extradata) to lavc palette format |
| 40 */ |
| 41 int ff_cmap_read_palette(AVCodecContext *avctx, uint32_t *pal) |
| 42 { |
| 43 int count, i; |
| 44 |
| 45 if (avctx->bits_per_coded_sample > 8) { |
| 46 av_log(avctx, AV_LOG_ERROR, "bit_per_coded_sample > 8 not supported\n"); |
| 47 return AVERROR_INVALIDDATA; |
| 48 } |
| 49 |
| 50 count = 1 << avctx->bits_per_coded_sample; |
| 51 if (avctx->extradata_size < count * 3) { |
| 52 av_log(avctx, AV_LOG_ERROR, "palette data underflow\n"); |
| 53 return AVERROR_INVALIDDATA; |
| 54 } |
| 55 for (i=0; i < count; i++) { |
| 56 pal[i] = 0xFF000000 | AV_RB24( avctx->extradata + i*3 ); |
| 57 } |
| 58 return 0; |
| 59 } |
| 60 |
| 61 static av_cold int decode_init(AVCodecContext *avctx) |
| 62 { |
| 63 IffContext *s = avctx->priv_data; |
| 64 |
| 65 if (avctx->bits_per_coded_sample <= 8) { |
| 66 avctx->pix_fmt = PIX_FMT_PAL8; |
| 67 } else if (avctx->bits_per_coded_sample <= 32) { |
| 68 avctx->pix_fmt = PIX_FMT_BGR32; |
| 69 } else { |
| 70 return AVERROR_INVALIDDATA; |
| 71 } |
| 72 |
| 73 s->planesize = avctx->width / 8; |
| 74 s->planebuf = av_malloc(s->planesize + FF_INPUT_BUFFER_PADDING_SIZE); |
| 75 if (!s->planebuf) |
| 76 return AVERROR(ENOMEM); |
| 77 |
| 78 s->frame.reference = 1; |
| 79 if (avctx->get_buffer(avctx, &s->frame) < 0) { |
| 80 av_log(avctx, AV_LOG_ERROR, "get_buffer() failed\n"); |
| 81 return AVERROR_UNKNOWN; |
| 82 } |
| 83 |
| 84 return avctx->bits_per_coded_sample <= 8 ? |
| 85 ff_cmap_read_palette(avctx, (uint32_t*)s->frame.data[1]) : 0; |
| 86 } |
| 87 |
| 88 /** |
| 89 * Decode interleaved plane buffer |
| 90 * @param dst Destination buffer |
| 91 * @param buf Source buffer |
| 92 * @param buf_size |
| 93 * @param bps bits_per_coded_sample |
| 94 * @param plane plane number to decode as |
| 95 */ |
| 96 #define DECLARE_DECODEPLANE(suffix, type) \ |
| 97 static void decodeplane##suffix(void *dst, const uint8_t *const buf, int buf_siz
e, int bps, int plane) \ |
| 98 { \ |
| 99 GetBitContext gb; \ |
| 100 int i, b; \ |
| 101 init_get_bits(&gb, buf, buf_size * 8); \ |
| 102 for(i = 0; i < (buf_size * 8 + bps - 1) / bps; i++) { \ |
| 103 for (b = 0; b < bps; b++) { \ |
| 104 ((type *)dst)[ i*bps + b ] |= get_bits1(&gb) << plane; \ |
| 105 } \ |
| 106 } \ |
| 107 } |
| 108 DECLARE_DECODEPLANE(8, uint8_t) |
| 109 DECLARE_DECODEPLANE(32, uint32_t) |
| 110 |
| 111 static int decode_frame_ilbm(AVCodecContext *avctx, |
| 112 void *data, int *data_size, |
| 113 AVPacket *avpkt) |
| 114 { |
| 115 IffContext *s = avctx->priv_data; |
| 116 const uint8_t *buf = avpkt->data; |
| 117 int buf_size = avpkt->size; |
| 118 const uint8_t *buf_end = buf+buf_size; |
| 119 int y, plane; |
| 120 |
| 121 if (avctx->reget_buffer(avctx, &s->frame) < 0){ |
| 122 av_log(avctx, AV_LOG_ERROR, "get_buffer() failed\n"); |
| 123 return -1; |
| 124 } |
| 125 |
| 126 for(y = 0; y < avctx->height; y++ ) { |
| 127 uint8_t *row = &s->frame.data[0][ y*s->frame.linesize[0] ]; |
| 128 memset(row, 0, avctx->pix_fmt == PIX_FMT_PAL8 ? avctx->width : (avctx->w
idth * 4)); |
| 129 for (plane = 0; plane < avctx->bits_per_coded_sample && buf < buf_end; p
lane++) { |
| 130 if (avctx->pix_fmt == PIX_FMT_PAL8) { |
| 131 decodeplane8(row, buf, FFMIN(s->planesize, buf_end - buf), avctx
->bits_per_coded_sample, plane); |
| 132 } else { // PIX_FMT_BGR32 |
| 133 decodeplane32(row, buf, FFMIN(s->planesize, buf_end - buf), avct
x->bits_per_coded_sample, plane); |
| 134 } |
| 135 buf += s->planesize; |
| 136 } |
| 137 } |
| 138 |
| 139 *data_size = sizeof(AVFrame); |
| 140 *(AVFrame*)data = s->frame; |
| 141 return buf_size; |
| 142 } |
| 143 |
| 144 static int decode_frame_byterun1(AVCodecContext *avctx, |
| 145 void *data, int *data_size, |
| 146 AVPacket *avpkt) |
| 147 { |
| 148 IffContext *s = avctx->priv_data; |
| 149 const uint8_t *buf = avpkt->data; |
| 150 int buf_size = avpkt->size; |
| 151 const uint8_t *buf_end = buf+buf_size; |
| 152 int y, plane, x; |
| 153 |
| 154 if (avctx->reget_buffer(avctx, &s->frame) < 0){ |
| 155 av_log(avctx, AV_LOG_ERROR, "get_buffer() failed\n"); |
| 156 return -1; |
| 157 } |
| 158 |
| 159 for(y = 0; y < avctx->height ; y++ ) { |
| 160 uint8_t *row = &s->frame.data[0][ y*s->frame.linesize[0] ]; |
| 161 if (avctx->codec_tag == MKTAG('I','L','B','M')) { //interleaved |
| 162 memset(row, 0, avctx->pix_fmt == PIX_FMT_PAL8 ? avctx->width : (avct
x->width * 4)); |
| 163 for (plane = 0; plane < avctx->bits_per_coded_sample; plane++) { |
| 164 for(x = 0; x < s->planesize && buf < buf_end; ) { |
| 165 int8_t value = *buf++; |
| 166 int length; |
| 167 if (value >= 0) { |
| 168 length = value + 1; |
| 169 memcpy(s->planebuf + x, buf, FFMIN3(length, s->planesize
- x, buf_end - buf)); |
| 170 buf += length; |
| 171 } else if (value > -128) { |
| 172 length = -value + 1; |
| 173 memset(s->planebuf + x, *buf++, FFMIN(length, s->planesi
ze - x)); |
| 174 } else { //noop |
| 175 continue; |
| 176 } |
| 177 x += length; |
| 178 } |
| 179 if (avctx->pix_fmt == PIX_FMT_PAL8) { |
| 180 decodeplane8(row, s->planebuf, s->planesize, avctx->bits_per
_coded_sample, plane); |
| 181 } else { //PIX_FMT_BGR32 |
| 182 decodeplane32(row, s->planebuf, s->planesize, avctx->bits_pe
r_coded_sample, plane); |
| 183 } |
| 184 } |
| 185 } else { |
| 186 for(x = 0; x < avctx->width && buf < buf_end; ) { |
| 187 int8_t value = *buf++; |
| 188 int length; |
| 189 if (value >= 0) { |
| 190 length = value + 1; |
| 191 memcpy(row + x, buf, FFMIN3(length, buf_end - buf, avctx->wi
dth - x)); |
| 192 buf += length; |
| 193 } else if (value > -128) { |
| 194 length = -value + 1; |
| 195 memset(row + x, *buf++, FFMIN(length, avctx->width - x)); |
| 196 } else { //noop |
| 197 continue; |
| 198 } |
| 199 x += length; |
| 200 } |
| 201 } |
| 202 } |
| 203 |
| 204 *data_size = sizeof(AVFrame); |
| 205 *(AVFrame*)data = s->frame; |
| 206 return buf_size; |
| 207 } |
| 208 |
| 209 static av_cold int decode_end(AVCodecContext *avctx) |
| 210 { |
| 211 IffContext *s = avctx->priv_data; |
| 212 if (s->frame.data[0]) |
| 213 avctx->release_buffer(avctx, &s->frame); |
| 214 av_freep(&s->planebuf); |
| 215 return 0; |
| 216 } |
| 217 |
| 218 AVCodec iff_ilbm_decoder = { |
| 219 "iff_ilbm", |
| 220 CODEC_TYPE_VIDEO, |
| 221 CODEC_ID_IFF_ILBM, |
| 222 sizeof(IffContext), |
| 223 decode_init, |
| 224 NULL, |
| 225 decode_end, |
| 226 decode_frame_ilbm, |
| 227 CODEC_CAP_DR1, |
| 228 .long_name = NULL_IF_CONFIG_SMALL("IFF ILBM"), |
| 229 }; |
| 230 |
| 231 AVCodec iff_byterun1_decoder = { |
| 232 "iff_byterun1", |
| 233 CODEC_TYPE_VIDEO, |
| 234 CODEC_ID_IFF_BYTERUN1, |
| 235 sizeof(IffContext), |
| 236 decode_init, |
| 237 NULL, |
| 238 decode_end, |
| 239 decode_frame_byterun1, |
| 240 CODEC_CAP_DR1, |
| 241 .long_name = NULL_IF_CONFIG_SMALL("IFF ByteRun1"), |
| 242 }; |
OLD | NEW |