pnmenc.c 5.66 KB
Newer Older
1 2
/*
 * PNM image format
3
 * Copyright (c) 2002, 2003 Fabrice Bellard
4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
 *
 * This file is part of FFmpeg.
 *
 * FFmpeg is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * FFmpeg is distributed in the hope that it will be useful,
 * 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
 * License along with FFmpeg; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
 */
21

22
#include "libavutil/imgutils.h"
23
#include "libavutil/pixdesc.h"
24
#include "avcodec.h"
25
#include "internal.h"
26

27
static int pnm_encode_frame(AVCodecContext *avctx, AVPacket *pkt,
28
                            const AVFrame *p, int *got_packet)
29
{
30
    uint8_t *bytestream, *bytestream_start, *bytestream_end;
31
    int i, h, h1, c, n, linesize, ret;
32
    uint8_t *ptr, *ptr1, *ptr2;
33 34
    int size = av_image_get_buffer_size(avctx->pix_fmt,
                                        avctx->width, avctx->height, 1);
35

36
    if ((ret = ff_alloc_packet2(avctx, pkt, size + 200, 0)) < 0)
37
        return ret;
38

39 40 41
    bytestream_start =
    bytestream       = pkt->data;
    bytestream_end   = pkt->data + pkt->size;
42

43
    h  = avctx->height;
44
    h1 = h;
45
    switch (avctx->pix_fmt) {
46
    case AV_PIX_FMT_MONOWHITE:
47 48
        c  = '4';
        n  = (avctx->width + 7) >> 3;
49
        break;
50
    case AV_PIX_FMT_GRAY8:
51 52
        c  = '5';
        n  = avctx->width;
53
        break;
54
    case AV_PIX_FMT_GRAY16BE:
55 56
        c  = '5';
        n  = avctx->width * 2;
57
        break;
58
    case AV_PIX_FMT_RGB24:
59 60
        c  = '6';
        n  = avctx->width * 3;
61
        break;
62
    case AV_PIX_FMT_RGB48BE:
63 64
        c  = '6';
        n  = avctx->width * 6;
65
        break;
66
    case AV_PIX_FMT_YUV420P:
67 68
        if (avctx->width & 1 || avctx->height & 1) {
            av_log(avctx, AV_LOG_ERROR, "pgmyuv needs even width and height\n");
69 70
            return AVERROR(EINVAL);
        }
71 72
        c  = '5';
        n  = avctx->width;
73 74
        h1 = (h * 3) / 2;
        break;
75 76 77 78 79
    case AV_PIX_FMT_YUV420P16BE:
        c  = '5';
        n  = avctx->width * 2;
        h1 = (h * 3) / 2;
        break;
80 81 82
    default:
        return -1;
    }
83
    snprintf(bytestream, bytestream_end - bytestream,
84
             "P%c\n%d %d\n", c, avctx->width, h1);
85
    bytestream += strlen(bytestream);
86
    if (avctx->pix_fmt != AV_PIX_FMT_MONOWHITE) {
87
        int maxdepth = (1 << av_pix_fmt_desc_get(avctx->pix_fmt)->comp[0].depth) - 1;
88
        snprintf(bytestream, bytestream_end - bytestream,
89
                 "%d\n", maxdepth);
90
        bytestream += strlen(bytestream);
91 92
    }

93
    ptr      = p->data[0];
94
    linesize = p->linesize[0];
95
    for (i = 0; i < h; i++) {
96 97 98
        memcpy(bytestream, ptr, n);
        bytestream += n;
        ptr        += linesize;
99 100
    }

101
    if (avctx->pix_fmt == AV_PIX_FMT_YUV420P || avctx->pix_fmt == AV_PIX_FMT_YUV420P16BE) {
102 103 104 105
        h >>= 1;
        n >>= 1;
        ptr1 = p->data[1];
        ptr2 = p->data[2];
106
        for (i = 0; i < h; i++) {
107 108 109 110
            memcpy(bytestream, ptr1, n);
            bytestream += n;
            memcpy(bytestream, ptr2, n);
            bytestream += n;
111 112 113 114
                ptr1 += p->linesize[1];
                ptr2 += p->linesize[2];
        }
    }
115
    pkt->size   = bytestream - bytestream_start;
116 117 118 119
    pkt->flags |= AV_PKT_FLAG_KEY;
    *got_packet = 1;

    return 0;
120 121
}

122 123
static av_cold int pnm_encode_init(AVCodecContext *avctx)
{
124 125
#if FF_API_CODED_FRAME
FF_DISABLE_DEPRECATION_WARNINGS
126 127
    avctx->coded_frame->pict_type = AV_PICTURE_TYPE_I;
    avctx->coded_frame->key_frame = 1;
128 129
FF_ENABLE_DEPRECATION_WARNINGS
#endif
130 131 132 133

    return 0;
}

134
#if CONFIG_PGM_ENCODER
135
AVCodec ff_pgm_encoder = {
136
    .name           = "pgm",
137
    .long_name      = NULL_IF_CONFIG_SMALL("PGM (Portable GrayMap) image"),
138
    .type           = AVMEDIA_TYPE_VIDEO,
139
    .id             = AV_CODEC_ID_PGM,
140
    .init           = pnm_encode_init,
141
    .encode2        = pnm_encode_frame,
142 143
    .pix_fmts       = (const enum AVPixelFormat[]){
        AV_PIX_FMT_GRAY8, AV_PIX_FMT_GRAY16BE, AV_PIX_FMT_NONE
144
    },
145
};
146
#endif
147

148
#if CONFIG_PGMYUV_ENCODER
149
AVCodec ff_pgmyuv_encoder = {
150
    .name           = "pgmyuv",
151
    .long_name      = NULL_IF_CONFIG_SMALL("PGMYUV (Portable GrayMap YUV) image"),
152
    .type           = AVMEDIA_TYPE_VIDEO,
153
    .id             = AV_CODEC_ID_PGMYUV,
154
    .init           = pnm_encode_init,
155
    .encode2        = pnm_encode_frame,
156 157 158
    .pix_fmts       = (const enum AVPixelFormat[]){
        AV_PIX_FMT_YUV420P, AV_PIX_FMT_YUV420P16BE, AV_PIX_FMT_NONE
    },
159
};
160
#endif
161

162
#if CONFIG_PPM_ENCODER
163
AVCodec ff_ppm_encoder = {
164
    .name           = "ppm",
165
    .long_name      = NULL_IF_CONFIG_SMALL("PPM (Portable PixelMap) image"),
166
    .type           = AVMEDIA_TYPE_VIDEO,
167
    .id             = AV_CODEC_ID_PPM,
168
    .init           = pnm_encode_init,
169
    .encode2        = pnm_encode_frame,
170 171
    .pix_fmts       = (const enum AVPixelFormat[]){
        AV_PIX_FMT_RGB24, AV_PIX_FMT_RGB48BE, AV_PIX_FMT_NONE
172
    },
173
};
174
#endif
175

176
#if CONFIG_PBM_ENCODER
177
AVCodec ff_pbm_encoder = {
178
    .name           = "pbm",
179
    .long_name      = NULL_IF_CONFIG_SMALL("PBM (Portable BitMap) image"),
180
    .type           = AVMEDIA_TYPE_VIDEO,
181
    .id             = AV_CODEC_ID_PBM,
182
    .init           = pnm_encode_init,
183
    .encode2        = pnm_encode_frame,
184 185
    .pix_fmts       = (const enum AVPixelFormat[]){ AV_PIX_FMT_MONOWHITE,
                                                  AV_PIX_FMT_NONE },
186
};
187
#endif