pnm.c 5.7 KB
Newer Older
1 2
/*
 * PNM image format
3
 * Copyright (c) 2002, 2003 Fabrice Bellard
4
 *
5 6 7
 * This file is part of FFmpeg.
 *
 * FFmpeg is free software; you can redistribute it and/or
8 9
 * modify it under the terms of the GNU Lesser General Public
 * 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 14 15 16 17
 * 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
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
#include "libavcore/imgutils.h"
23
#include "avcodec.h"
24
#include "pnm.h"
25

26 27
static inline int pnm_space(int c)
{
28
    return c == ' ' || c == '\n' || c == '\r' || c == '\t';
29 30
}

31
static void pnm_get(PNMContext *sc, char *str, int buf_size)
M
Michael Niedermayer 已提交
32
{
33 34 35 36
    char *s;
    int c;

    /* skip spaces and comments */
37
    for (;;) {
38 39
        c = *sc->bytestream++;
        if (c == '#')  {
40
            do {
41 42 43 44 45
                c = *sc->bytestream++;
            } while (c != '\n' && sc->bytestream < sc->bytestream_end);
        } else if (!pnm_space(c)) {
            break;
        }
46
    }
47

48 49 50 51 52 53 54 55
    s = str;
    while (sc->bytestream < sc->bytestream_end && !pnm_space(c)) {
        if ((s - str)  < buf_size - 1)
            *s++ = c;
        c = *sc->bytestream++;
    }
    *s = '\0';
}
56

57 58
int ff_pnm_decode_header(AVCodecContext *avctx, PNMContext * const s)
{
59 60 61 62
    char buf1[32], tuple_type[32];
    int h, w, depth, maxval;

    pnm_get(s, buf1, sizeof(buf1));
M
Michael Niedermayer 已提交
63 64 65 66 67
    s->type= buf1[1]-'0';
    if(buf1[0] != 'P')
        return -1;

    if (s->type==1 || s->type==4) {
68
        avctx->pix_fmt = PIX_FMT_MONOWHITE;
M
Michael Niedermayer 已提交
69
    } else if (s->type==2 || s->type==5) {
70 71 72 73
        if (avctx->codec_id == CODEC_ID_PGMYUV)
            avctx->pix_fmt = PIX_FMT_YUV420P;
        else
            avctx->pix_fmt = PIX_FMT_GRAY8;
M
Michael Niedermayer 已提交
74
    } else if (s->type==3 || s->type==6) {
75
        avctx->pix_fmt = PIX_FMT_RGB24;
M
Michael Niedermayer 已提交
76
    } else if (s->type==7) {
77 78
        w      = -1;
        h      = -1;
79
        maxval = -1;
80
        depth  = -1;
81
        tuple_type[0] = '\0';
82
        for (;;) {
83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100
            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);
            } else if (!strcmp(buf1, "TUPLETYPE")) {
                pnm_get(s, tuple_type, sizeof(tuple_type));
            } else if (!strcmp(buf1, "ENDHDR")) {
                break;
            } else {
M
Michael Niedermayer 已提交
101
                return -1;
102 103
            }
        }
104
        /* check that all tags are present */
105
        if (w <= 0 || h <= 0 || maxval <= 0 || depth <= 0 || tuple_type[0] == '\0' || av_check_image_size(w, h, 0, avctx))
M
Michael Niedermayer 已提交
106
            return -1;
107

108
        avctx->width  = w;
109 110 111 112 113 114 115
        avctx->height = h;
        if (depth == 1) {
            if (maxval == 1)
                avctx->pix_fmt = PIX_FMT_MONOWHITE;
            else
                avctx->pix_fmt = PIX_FMT_GRAY8;
        } else if (depth == 3) {
116
            if (maxval < 256) {
117
            avctx->pix_fmt = PIX_FMT_RGB24;
118 119 120 121 122
            } else {
                av_log(avctx, AV_LOG_ERROR, "16-bit components are only supported for grayscale\n");
                avctx->pix_fmt = PIX_FMT_NONE;
                return -1;
            }
123 124 125 126
        } else if (depth == 4) {
            avctx->pix_fmt = PIX_FMT_RGB32;
        } else {
            return -1;
127
        }
128 129
        return 0;
    } else {
130 131
        return -1;
    }
132 133 134 135 136 137
    pnm_get(s, buf1, sizeof(buf1));
    avctx->width = atoi(buf1);
    if (avctx->width <= 0)
        return -1;
    pnm_get(s, buf1, sizeof(buf1));
    avctx->height = atoi(buf1);
138
    if(av_check_image_size(avctx->width, avctx->height, 0, avctx))
139 140
        return -1;
    if (avctx->pix_fmt != PIX_FMT_MONOWHITE) {
141 142
        pnm_get(s, buf1, sizeof(buf1));
        s->maxval = atoi(buf1);
143 144
        if (s->maxval >= 256) {
            if (avctx->pix_fmt == PIX_FMT_GRAY8) {
145 146 147
                avctx->pix_fmt = PIX_FMT_GRAY16BE;
                if (s->maxval != 65535)
                    avctx->pix_fmt = PIX_FMT_GRAY16;
148
            } else if (avctx->pix_fmt == PIX_FMT_RGB24) {
P
Peter Ross 已提交
149 150
                if (s->maxval > 255)
                    avctx->pix_fmt = PIX_FMT_RGB48BE;
151
            } else {
P
Peter Ross 已提交
152
                av_log(avctx, AV_LOG_ERROR, "Unsupported pixel format\n");
153 154 155
                avctx->pix_fmt = PIX_FMT_NONE;
                return -1;
            }
156
        }
M
Michael Niedermayer 已提交
157 158
    }else
        s->maxval=1;
159 160 161 162 163 164 165 166 167
    /* more check if YUV420 */
    if (avctx->pix_fmt == PIX_FMT_YUV420P) {
        if ((avctx->width & 1) != 0)
            return -1;
        h = (avctx->height * 2);
        if ((h % 3) != 0)
            return -1;
        h /= 3;
        avctx->height = h;
168
    }
169
    return 0;
170
}
171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190

av_cold int ff_pnm_end(AVCodecContext *avctx)
{
    PNMContext *s = avctx->priv_data;

    if (s->picture.data[0])
        avctx->release_buffer(avctx, &s->picture);

    return 0;
}

av_cold int ff_pnm_init(AVCodecContext *avctx)
{
    PNMContext *s = avctx->priv_data;

    avcodec_get_frame_defaults((AVFrame*)&s->picture);
    avctx->coded_frame = (AVFrame*)&s->picture;

    return 0;
}