3 * Copyright (c) 2002, 2003 Fabrice Bellard
5 * This file is part of FFmpeg.
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.
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.
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
27 static void samplecpy(uint8_t *dst, const uint8_t *src, int n, int maxval)
33 for (i=0; i<n/2; i++) {
34 ((uint16_t *)dst)[i] = AV_RB16(src+2*i);
39 static int pnm_decode_frame(AVCodecContext *avctx, void *data,
40 int *got_frame, AVPacket *avpkt)
42 const uint8_t *buf = avpkt->data;
43 int buf_size = avpkt->size;
44 PNMContext * const s = avctx->priv_data;
45 AVFrame * const p = data;
46 int i, j, n, linesize, h, upgrade = 0, is_mono = 0;
48 int components, sample_len, ret;
51 s->bytestream = (uint8_t *)buf;
52 s->bytestream_end = (uint8_t *)buf + buf_size;
54 if ((ret = ff_pnm_decode_header(avctx, s)) < 0)
57 if ((ret = ff_get_buffer(avctx, p, 0)) < 0)
59 p->pict_type = AV_PICTURE_TYPE_I;
61 avctx->bits_per_raw_sample = av_log2(s->maxval) + 1;
63 switch (avctx->pix_fmt) {
65 return AVERROR(EINVAL);
66 case AV_PIX_FMT_RGBA64:
70 if (s->maxval < 65535)
73 case AV_PIX_FMT_RGB48:
77 if (s->maxval < 65535)
85 case AV_PIX_FMT_RGB24:
92 case AV_PIX_FMT_GRAY8:
99 case AV_PIX_FMT_GRAY8A:
100 n = avctx->width * 2;
104 case AV_PIX_FMT_GRAY16:
105 n = avctx->width * 2;
108 if (s->maxval < 65535)
111 case AV_PIX_FMT_YA16:
112 n = avctx->width * 4;
115 if (s->maxval < 65535)
118 case AV_PIX_FMT_MONOWHITE:
119 case AV_PIX_FMT_MONOBLACK:
120 n = (avctx->width + 7) >> 3;
126 linesize = p->linesize[0];
127 if (s->bytestream + n * avctx->height > s->bytestream_end)
128 return AVERROR_INVALIDDATA;
129 if(s->type < 4 || (is_mono && s->type==7)){
130 for (i=0; i<avctx->height; i++) {
132 init_put_bits(&pb, ptr, linesize);
133 for(j=0; j<avctx->width * components; j++){
137 while(s->bytestream < s->bytestream_end && (*s->bytestream < '0' || *s->bytestream > '9' ))
139 if(s->bytestream >= s->bytestream_end)
140 return AVERROR_INVALIDDATA;
142 /* read a single digit */
143 v = (*s->bytestream++)&1;
145 /* read a sequence of digits */
148 c = (*s->bytestream++) - '0';
151 if (sample_len == 16) {
152 ((uint16_t*)ptr)[j] = (((1<<sample_len)-1)*v + (s->maxval>>1))/s->maxval;
154 put_bits(&pb, sample_len, (((1<<sample_len)-1)*v + (s->maxval>>1))/s->maxval);
156 if (sample_len != 16)
161 for (i = 0; i < avctx->height; i++) {
163 samplecpy(ptr, s->bytestream, n, s->maxval);
164 else if (upgrade == 1) {
165 unsigned int j, f = (255 * 128 + s->maxval / 2) / s->maxval;
166 for (j = 0; j < n; j++)
167 ptr[j] = (s->bytestream[j] * f + 64) >> 7;
168 } else if (upgrade == 2) {
169 unsigned int j, v, f = (65535 * 32768 + s->maxval / 2) / s->maxval;
170 for (j = 0; j < n / 2; j++) {
171 v = av_be2ne16(((uint16_t *)s->bytestream)[j]);
172 ((uint16_t *)ptr)[j] = (v * f + 16384) >> 15;
180 case AV_PIX_FMT_YUV420P:
181 case AV_PIX_FMT_YUV420P9:
182 case AV_PIX_FMT_YUV420P10:
184 unsigned char *ptr1, *ptr2;
188 linesize = p->linesize[0];
189 if (s->maxval >= 256)
191 if (s->bytestream + n * avctx->height * 3 / 2 > s->bytestream_end)
192 return AVERROR_INVALIDDATA;
193 for (i = 0; i < avctx->height; i++) {
194 samplecpy(ptr, s->bytestream, n, s->maxval);
201 h = avctx->height >> 1;
202 for (i = 0; i < h; i++) {
203 samplecpy(ptr1, s->bytestream, n, s->maxval);
205 samplecpy(ptr2, s->bytestream, n, s->maxval);
207 ptr1 += p->linesize[1];
208 ptr2 += p->linesize[2];
212 case AV_PIX_FMT_YUV420P16:
214 uint16_t *ptr1, *ptr2;
215 const int f = (65535 * 32768 + s->maxval / 2) / s->maxval;
218 n = avctx->width * 2;
220 linesize = p->linesize[0];
221 if (s->bytestream + n * avctx->height * 3 / 2 > s->bytestream_end)
222 return AVERROR_INVALIDDATA;
223 for (i = 0; i < avctx->height; i++) {
224 for (j = 0; j < n / 2; j++) {
225 v = av_be2ne16(((uint16_t *)s->bytestream)[j]);
226 ((uint16_t *)ptr)[j] = (v * f + 16384) >> 15;
231 ptr1 = (uint16_t*)p->data[1];
232 ptr2 = (uint16_t*)p->data[2];
234 h = avctx->height >> 1;
235 for (i = 0; i < h; i++) {
236 for (j = 0; j < n / 2; j++) {
237 v = av_be2ne16(((uint16_t *)s->bytestream)[j]);
238 ptr1[j] = (v * f + 16384) >> 15;
242 for (j = 0; j < n / 2; j++) {
243 v = av_be2ne16(((uint16_t *)s->bytestream)[j]);
244 ptr2[j] = (v * f + 16384) >> 15;
248 ptr1 += p->linesize[1] / 2;
249 ptr2 += p->linesize[2] / 2;
256 return s->bytestream - s->bytestream_start;
260 #if CONFIG_PGM_DECODER
261 AVCodec ff_pgm_decoder = {
263 .long_name = NULL_IF_CONFIG_SMALL("PGM (Portable GrayMap) image"),
264 .type = AVMEDIA_TYPE_VIDEO,
265 .id = AV_CODEC_ID_PGM,
266 .priv_data_size = sizeof(PNMContext),
267 .decode = pnm_decode_frame,
268 .capabilities = AV_CODEC_CAP_DR1,
272 #if CONFIG_PGMYUV_DECODER
273 AVCodec ff_pgmyuv_decoder = {
275 .long_name = NULL_IF_CONFIG_SMALL("PGMYUV (Portable GrayMap YUV) image"),
276 .type = AVMEDIA_TYPE_VIDEO,
277 .id = AV_CODEC_ID_PGMYUV,
278 .priv_data_size = sizeof(PNMContext),
279 .decode = pnm_decode_frame,
280 .capabilities = AV_CODEC_CAP_DR1,
284 #if CONFIG_PPM_DECODER
285 AVCodec ff_ppm_decoder = {
287 .long_name = NULL_IF_CONFIG_SMALL("PPM (Portable PixelMap) image"),
288 .type = AVMEDIA_TYPE_VIDEO,
289 .id = AV_CODEC_ID_PPM,
290 .priv_data_size = sizeof(PNMContext),
291 .decode = pnm_decode_frame,
292 .capabilities = AV_CODEC_CAP_DR1,
296 #if CONFIG_PBM_DECODER
297 AVCodec ff_pbm_decoder = {
299 .long_name = NULL_IF_CONFIG_SMALL("PBM (Portable BitMap) image"),
300 .type = AVMEDIA_TYPE_VIDEO,
301 .id = AV_CODEC_ID_PBM,
302 .priv_data_size = sizeof(PNMContext),
303 .decode = pnm_decode_frame,
304 .capabilities = AV_CODEC_CAP_DR1,
308 #if CONFIG_PAM_DECODER
309 AVCodec ff_pam_decoder = {
311 .long_name = NULL_IF_CONFIG_SMALL("PAM (Portable AnyMap) image"),
312 .type = AVMEDIA_TYPE_VIDEO,
313 .id = AV_CODEC_ID_PAM,
314 .priv_data_size = sizeof(PNMContext),
315 .decode = pnm_decode_frame,
316 .capabilities = AV_CODEC_CAP_DR1,