pnmenc.c 5.51 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 "avcodec.h"
23
#include "internal.h"
24 25 26
#include "pnm.h"


27 28
static int pnm_encode_frame(AVCodecContext *avctx, AVPacket *pkt,
                            const AVFrame *pict, int *got_packet)
29 30
{
    PNMContext *s     = avctx->priv_data;
31
    AVFrame * const p = &s->picture;
32
    int i, h, h1, c, n, linesize, ret;
33 34
    uint8_t *ptr, *ptr1, *ptr2;

35
    if ((ret = ff_alloc_packet2(avctx, pkt, avpicture_get_size(avctx->pix_fmt,
36
                                                       avctx->width,
37
                                                       avctx->height) + 200)) < 0)
38
        return ret;
39

40
    *p           = *pict;
41
    p->pict_type = AV_PICTURE_TYPE_I;
42
    p->key_frame = 1;
43

44
    s->bytestream_start =
45 46
    s->bytestream       = pkt->data;
    s->bytestream_end   = pkt->data + pkt->size;
47

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

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

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

    return 0;
119 120 121
}


122
#if CONFIG_PGM_ENCODER
123
AVCodec ff_pgm_encoder = {
124 125
    .name           = "pgm",
    .type           = AVMEDIA_TYPE_VIDEO,
126
    .id             = AV_CODEC_ID_PGM,
127 128
    .priv_data_size = sizeof(PNMContext),
    .init           = ff_pnm_init,
129
    .encode2        = pnm_encode_frame,
130 131
    .pix_fmts       = (const enum AVPixelFormat[]){
        AV_PIX_FMT_GRAY8, AV_PIX_FMT_GRAY16BE, AV_PIX_FMT_NONE
132 133
    },
    .long_name      = NULL_IF_CONFIG_SMALL("PGM (Portable GrayMap) image"),
134
};
135
#endif
136

137
#if CONFIG_PGMYUV_ENCODER
138
AVCodec ff_pgmyuv_encoder = {
139 140
    .name           = "pgmyuv",
    .type           = AVMEDIA_TYPE_VIDEO,
141
    .id             = AV_CODEC_ID_PGMYUV,
142 143
    .priv_data_size = sizeof(PNMContext),
    .init           = ff_pnm_init,
144
    .encode2        = pnm_encode_frame,
145
    .pix_fmts       = (const enum AVPixelFormat[]){ AV_PIX_FMT_YUV420P, AV_PIX_FMT_NONE },
146
    .long_name      = NULL_IF_CONFIG_SMALL("PGMYUV (Portable GrayMap YUV) image"),
147
};
148
#endif
149

150
#if CONFIG_PPM_ENCODER
151
AVCodec ff_ppm_encoder = {
152 153
    .name           = "ppm",
    .type           = AVMEDIA_TYPE_VIDEO,
154
    .id             = AV_CODEC_ID_PPM,
155 156
    .priv_data_size = sizeof(PNMContext),
    .init           = ff_pnm_init,
157
    .encode2        = pnm_encode_frame,
158 159
    .pix_fmts       = (const enum AVPixelFormat[]){
        AV_PIX_FMT_RGB24, AV_PIX_FMT_RGB48BE, AV_PIX_FMT_NONE
160 161
    },
    .long_name      = NULL_IF_CONFIG_SMALL("PPM (Portable PixelMap) image"),
162
};
163
#endif
164

165
#if CONFIG_PBM_ENCODER
166
AVCodec ff_pbm_encoder = {
167 168
    .name           = "pbm",
    .type           = AVMEDIA_TYPE_VIDEO,
169
    .id             = AV_CODEC_ID_PBM,
170 171
    .priv_data_size = sizeof(PNMContext),
    .init           = ff_pnm_init,
172
    .encode2        = pnm_encode_frame,
173 174
    .pix_fmts       = (const enum AVPixelFormat[]){ AV_PIX_FMT_MONOWHITE,
                                                  AV_PIX_FMT_NONE },
175
    .long_name      = NULL_IF_CONFIG_SMALL("PBM (Portable BitMap) image"),
176
};
177
#endif