2004-11-11 18:09:28 +00:00
|
|
|
/*
|
|
|
|
* PNM image format
|
2009-01-19 15:46:40 +00:00
|
|
|
* Copyright (c) 2002, 2003 Fabrice Bellard
|
2004-11-11 18:09:28 +00:00
|
|
|
*
|
2006-10-07 15:30:46 +00:00
|
|
|
* This file is part of FFmpeg.
|
|
|
|
*
|
|
|
|
* FFmpeg is free software; you can redistribute it and/or
|
2004-11-11 18:09:28 +00:00
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
2006-10-07 15:30:46 +00:00
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
2004-11-11 18:09:28 +00:00
|
|
|
*
|
2006-10-07 15:30:46 +00:00
|
|
|
* FFmpeg is distributed in the hope that it will be useful,
|
2004-11-11 18:09:28 +00:00
|
|
|
* 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
|
2006-10-07 15:30:46 +00:00
|
|
|
* License along with FFmpeg; if not, write to the Free Software
|
2006-01-12 22:43:26 +00:00
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
2004-11-11 18:09:28 +00:00
|
|
|
*/
|
2009-10-27 16:57:35 +00:00
|
|
|
|
2012-08-06 13:49:32 +00:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
2011-02-07 13:37:08 +00:00
|
|
|
#include "libavutil/imgutils.h"
|
2004-11-11 18:09:28 +00:00
|
|
|
#include "avcodec.h"
|
2007-05-10 23:03:14 +00:00
|
|
|
#include "pnm.h"
|
2004-11-11 18:09:28 +00:00
|
|
|
|
2007-05-11 09:28:07 +00:00
|
|
|
static inline int pnm_space(int c)
|
|
|
|
{
|
2008-05-06 09:16:36 +00:00
|
|
|
return c == ' ' || c == '\n' || c == '\r' || c == '\t';
|
2004-11-11 18:09:28 +00:00
|
|
|
}
|
|
|
|
|
2007-05-11 09:28:07 +00:00
|
|
|
static void pnm_get(PNMContext *sc, char *str, int buf_size)
|
2004-11-12 22:55:29 +00:00
|
|
|
{
|
2007-05-11 09:28:07 +00:00
|
|
|
char *s;
|
|
|
|
int c;
|
|
|
|
|
|
|
|
/* skip spaces and comments */
|
2012-08-07 18:57:40 +00:00
|
|
|
while (sc->bytestream < sc->bytestream_end) {
|
2007-05-11 09:28:07 +00:00
|
|
|
c = *sc->bytestream++;
|
|
|
|
if (c == '#') {
|
2012-08-07 18:57:40 +00:00
|
|
|
while (c != '\n' && sc->bytestream < sc->bytestream_end) {
|
2007-05-11 09:28:07 +00:00
|
|
|
c = *sc->bytestream++;
|
2012-08-07 18:57:40 +00:00
|
|
|
}
|
2007-05-11 09:28:07 +00:00
|
|
|
} else if (!pnm_space(c)) {
|
|
|
|
break;
|
|
|
|
}
|
2004-11-11 18:09:28 +00:00
|
|
|
}
|
2005-12-17 18:14:38 +00:00
|
|
|
|
2007-05-11 09:28:07 +00:00
|
|
|
s = str;
|
|
|
|
while (sc->bytestream < sc->bytestream_end && !pnm_space(c)) {
|
|
|
|
if ((s - str) < buf_size - 1)
|
|
|
|
*s++ = c;
|
|
|
|
c = *sc->bytestream++;
|
|
|
|
}
|
|
|
|
*s = '\0';
|
|
|
|
}
|
2004-11-11 18:09:28 +00:00
|
|
|
|
2009-10-27 16:57:35 +00:00
|
|
|
int ff_pnm_decode_header(AVCodecContext *avctx, PNMContext * const s)
|
|
|
|
{
|
2007-05-11 09:28:07 +00:00
|
|
|
char buf1[32], tuple_type[32];
|
|
|
|
int h, w, depth, maxval;
|
|
|
|
|
|
|
|
pnm_get(s, buf1, sizeof(buf1));
|
2009-12-01 16:56:13 +00:00
|
|
|
s->type= buf1[1]-'0';
|
|
|
|
if(buf1[0] != 'P')
|
2012-11-16 10:45:34 +00:00
|
|
|
return AVERROR_INVALIDDATA;
|
2009-12-01 16:56:13 +00:00
|
|
|
|
|
|
|
if (s->type==1 || s->type==4) {
|
2012-10-06 10:10:34 +00:00
|
|
|
avctx->pix_fmt = AV_PIX_FMT_MONOWHITE;
|
2009-12-01 16:56:13 +00:00
|
|
|
} else if (s->type==2 || s->type==5) {
|
2012-08-05 09:11:04 +00:00
|
|
|
if (avctx->codec_id == AV_CODEC_ID_PGMYUV)
|
2012-10-06 10:10:34 +00:00
|
|
|
avctx->pix_fmt = AV_PIX_FMT_YUV420P;
|
2007-05-11 09:28:07 +00:00
|
|
|
else
|
2012-10-06 10:10:34 +00:00
|
|
|
avctx->pix_fmt = AV_PIX_FMT_GRAY8;
|
2009-12-01 16:56:13 +00:00
|
|
|
} else if (s->type==3 || s->type==6) {
|
2012-10-06 10:10:34 +00:00
|
|
|
avctx->pix_fmt = AV_PIX_FMT_RGB24;
|
2009-12-01 16:56:13 +00:00
|
|
|
} else if (s->type==7) {
|
2009-10-27 16:57:35 +00:00
|
|
|
w = -1;
|
|
|
|
h = -1;
|
2007-05-11 09:28:07 +00:00
|
|
|
maxval = -1;
|
2009-10-27 16:57:35 +00:00
|
|
|
depth = -1;
|
2007-05-11 09:28:07 +00:00
|
|
|
tuple_type[0] = '\0';
|
2009-10-27 16:57:35 +00:00
|
|
|
for (;;) {
|
2007-05-11 09:28:07 +00:00
|
|
|
pnm_get(s, buf1, sizeof(buf1));
|
|
|
|
if (!strcmp(buf1, "WIDTH")) {
|
|
|
|
pnm_get(s, buf1, sizeof(buf1));
|
|
|
|
w = strtol(buf1, NULL, 10);
|
|
|
|
} else if (!strcmp(buf1, "HEIGHT")) {
|
|
|
|
pnm_get(s, buf1, sizeof(buf1));
|
|
|
|
h = strtol(buf1, NULL, 10);
|
|
|
|
} else if (!strcmp(buf1, "DEPTH")) {
|
|
|
|
pnm_get(s, buf1, sizeof(buf1));
|
|
|
|
depth = strtol(buf1, NULL, 10);
|
|
|
|
} else if (!strcmp(buf1, "MAXVAL")) {
|
|
|
|
pnm_get(s, buf1, sizeof(buf1));
|
|
|
|
maxval = strtol(buf1, NULL, 10);
|
2011-12-28 04:54:59 +00:00
|
|
|
} else if (!strcmp(buf1, "TUPLTYPE") ||
|
2011-12-28 04:54:59 +00:00
|
|
|
/* libavcodec used to write invalid files */
|
2011-12-28 04:54:59 +00:00
|
|
|
!strcmp(buf1, "TUPLETYPE")) {
|
2007-05-11 09:28:07 +00:00
|
|
|
pnm_get(s, tuple_type, sizeof(tuple_type));
|
|
|
|
} else if (!strcmp(buf1, "ENDHDR")) {
|
|
|
|
break;
|
|
|
|
} else {
|
2012-11-16 10:45:34 +00:00
|
|
|
return AVERROR_INVALIDDATA;
|
2004-11-11 18:09:28 +00:00
|
|
|
}
|
|
|
|
}
|
2007-05-11 09:28:07 +00:00
|
|
|
/* check that all tags are present */
|
2012-08-07 18:58:25 +00:00
|
|
|
if (w <= 0 || h <= 0 || maxval <= 0 || depth <= 0 || tuple_type[0] == '\0' || av_image_check_size(w, h, 0, avctx) || s->bytestream >= s->bytestream_end)
|
2012-11-16 10:45:34 +00:00
|
|
|
return AVERROR_INVALIDDATA;
|
2004-11-12 23:38:43 +00:00
|
|
|
|
2009-10-27 16:57:35 +00:00
|
|
|
avctx->width = w;
|
2007-05-11 09:28:07 +00:00
|
|
|
avctx->height = h;
|
2011-12-28 04:59:39 +00:00
|
|
|
s->maxval = maxval;
|
2007-05-11 09:28:07 +00:00
|
|
|
if (depth == 1) {
|
2012-01-05 19:57:49 +00:00
|
|
|
if (maxval == 1) {
|
2012-10-08 18:54:00 +00:00
|
|
|
avctx->pix_fmt = AV_PIX_FMT_MONOBLACK;
|
2013-07-28 16:12:23 +00:00
|
|
|
} else if (maxval < 256) {
|
2012-10-06 10:10:34 +00:00
|
|
|
avctx->pix_fmt = AV_PIX_FMT_GRAY8;
|
2013-07-28 21:18:51 +00:00
|
|
|
} else if (maxval < 65535) {
|
|
|
|
avctx->pix_fmt = AV_PIX_FMT_GRAY16;
|
2012-01-07 18:23:21 +00:00
|
|
|
} else {
|
2012-10-08 18:54:00 +00:00
|
|
|
avctx->pix_fmt = AV_PIX_FMT_GRAY16BE;
|
2012-01-05 19:57:49 +00:00
|
|
|
}
|
2012-01-16 23:37:20 +00:00
|
|
|
} else if (depth == 2) {
|
|
|
|
if (maxval == 255)
|
2012-10-08 18:54:00 +00:00
|
|
|
avctx->pix_fmt = AV_PIX_FMT_GRAY8A;
|
2007-05-11 09:28:07 +00:00
|
|
|
} else if (depth == 3) {
|
2008-09-14 15:50:59 +00:00
|
|
|
if (maxval < 256) {
|
2012-11-04 23:35:09 +00:00
|
|
|
avctx->pix_fmt = AV_PIX_FMT_RGB24;
|
2008-09-14 15:50:59 +00:00
|
|
|
} else {
|
2012-10-08 18:54:00 +00:00
|
|
|
avctx->pix_fmt = AV_PIX_FMT_RGB48BE;
|
2008-09-14 15:50:59 +00:00
|
|
|
}
|
2007-05-11 09:28:07 +00:00
|
|
|
} else if (depth == 4) {
|
2012-01-06 00:25:54 +00:00
|
|
|
if (maxval < 256) {
|
2012-10-08 18:54:00 +00:00
|
|
|
avctx->pix_fmt = AV_PIX_FMT_RGBA;
|
2012-01-06 00:25:54 +00:00
|
|
|
} else {
|
2012-10-08 18:54:00 +00:00
|
|
|
avctx->pix_fmt = AV_PIX_FMT_RGBA64BE;
|
2012-01-06 00:25:54 +00:00
|
|
|
}
|
2007-05-11 09:28:07 +00:00
|
|
|
} else {
|
2012-11-16 10:45:34 +00:00
|
|
|
return AVERROR_INVALIDDATA;
|
2004-11-12 23:38:43 +00:00
|
|
|
}
|
2007-05-11 09:28:07 +00:00
|
|
|
return 0;
|
|
|
|
} else {
|
2012-11-16 10:45:34 +00:00
|
|
|
return AVERROR_INVALIDDATA;
|
2005-01-12 00:16:25 +00:00
|
|
|
}
|
2007-05-11 09:28:07 +00:00
|
|
|
pnm_get(s, buf1, sizeof(buf1));
|
2012-08-07 18:58:25 +00:00
|
|
|
w = atoi(buf1);
|
2007-05-11 09:28:07 +00:00
|
|
|
pnm_get(s, buf1, sizeof(buf1));
|
2012-08-07 18:58:25 +00:00
|
|
|
h = atoi(buf1);
|
|
|
|
if(w <= 0 || h <= 0 || av_image_check_size(w, h, 0, avctx) || s->bytestream >= s->bytestream_end)
|
2012-11-16 10:45:34 +00:00
|
|
|
return AVERROR_INVALIDDATA;
|
2012-08-07 18:58:25 +00:00
|
|
|
|
|
|
|
avctx->width = w;
|
|
|
|
avctx->height = h;
|
|
|
|
|
2012-10-08 18:54:00 +00:00
|
|
|
if (avctx->pix_fmt != AV_PIX_FMT_MONOWHITE && avctx->pix_fmt != AV_PIX_FMT_MONOBLACK) {
|
2007-05-11 09:28:07 +00:00
|
|
|
pnm_get(s, buf1, sizeof(buf1));
|
|
|
|
s->maxval = atoi(buf1);
|
2011-01-10 00:42:57 +00:00
|
|
|
if (s->maxval <= 0) {
|
|
|
|
av_log(avctx, AV_LOG_ERROR, "Invalid maxval: %d\n", s->maxval);
|
2011-01-10 22:09:52 +00:00
|
|
|
s->maxval = 255;
|
2011-01-10 00:42:57 +00:00
|
|
|
}
|
2008-09-14 15:50:59 +00:00
|
|
|
if (s->maxval >= 256) {
|
2012-10-06 10:10:34 +00:00
|
|
|
if (avctx->pix_fmt == AV_PIX_FMT_GRAY8) {
|
|
|
|
avctx->pix_fmt = AV_PIX_FMT_GRAY16BE;
|
2013-07-28 21:42:47 +00:00
|
|
|
if (s->maxval != 65535)
|
|
|
|
avctx->pix_fmt = AV_PIX_FMT_GRAY16;
|
2012-10-06 10:10:34 +00:00
|
|
|
} else if (avctx->pix_fmt == AV_PIX_FMT_RGB24) {
|
2012-11-04 23:33:17 +00:00
|
|
|
avctx->pix_fmt = AV_PIX_FMT_RGB48BE;
|
2013-02-22 10:57:59 +00:00
|
|
|
} else if (avctx->pix_fmt == AV_PIX_FMT_YUV420P && s->maxval < 65536) {
|
|
|
|
if (s->maxval < 512)
|
|
|
|
avctx->pix_fmt = AV_PIX_FMT_YUV420P9BE;
|
|
|
|
else if (s->maxval < 1024)
|
|
|
|
avctx->pix_fmt = AV_PIX_FMT_YUV420P10BE;
|
|
|
|
else
|
|
|
|
avctx->pix_fmt = AV_PIX_FMT_YUV420P16;
|
2008-09-14 15:50:59 +00:00
|
|
|
} else {
|
2009-02-22 00:56:55 +00:00
|
|
|
av_log(avctx, AV_LOG_ERROR, "Unsupported pixel format\n");
|
2012-10-06 10:10:34 +00:00
|
|
|
avctx->pix_fmt = AV_PIX_FMT_NONE;
|
2012-11-16 10:45:34 +00:00
|
|
|
return AVERROR_INVALIDDATA;
|
2008-09-14 15:50:59 +00:00
|
|
|
}
|
2004-11-11 18:09:28 +00:00
|
|
|
}
|
2009-12-01 16:56:13 +00:00
|
|
|
}else
|
|
|
|
s->maxval=1;
|
2007-05-11 09:28:07 +00:00
|
|
|
/* more check if YUV420 */
|
2013-05-12 13:41:49 +00:00
|
|
|
if (av_pix_fmt_desc_get(avctx->pix_fmt)->flags & AV_PIX_FMT_FLAG_PLANAR) {
|
2007-05-11 09:28:07 +00:00
|
|
|
if ((avctx->width & 1) != 0)
|
2012-11-16 10:45:34 +00:00
|
|
|
return AVERROR_INVALIDDATA;
|
2007-05-11 09:28:07 +00:00
|
|
|
h = (avctx->height * 2);
|
|
|
|
if ((h % 3) != 0)
|
2012-11-16 10:45:34 +00:00
|
|
|
return AVERROR_INVALIDDATA;
|
2007-05-11 09:28:07 +00:00
|
|
|
h /= 3;
|
|
|
|
avctx->height = h;
|
2004-11-11 18:09:28 +00:00
|
|
|
}
|
2007-05-11 09:28:07 +00:00
|
|
|
return 0;
|
2004-11-11 18:09:28 +00:00
|
|
|
}
|
2009-10-27 17:15:05 +00:00
|
|
|
|
|
|
|
av_cold int ff_pnm_init(AVCodecContext *avctx)
|
|
|
|
{
|
|
|
|
PNMContext *s = avctx->priv_data;
|
|
|
|
|
2012-02-27 07:51:20 +00:00
|
|
|
avcodec_get_frame_defaults(&s->picture);
|
|
|
|
avctx->coded_frame = &s->picture;
|
2009-10-27 17:15:05 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|