]> git.sesse.net Git - ffmpeg/blob - libavcodec/pamenc.c
Merge remote-tracking branch 'dilaroga/master'
[ffmpeg] / libavcodec / pamenc.c
1 /*
2  * PAM image format
3  * Copyright (c) 2002, 2003 Fabrice Bellard
4  *
5  * This file is part of FFmpeg.
6  *
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.
11  *
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.
16  *
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
20  */
21
22 #include "avcodec.h"
23 #include "bytestream.h"
24 #include "pnm.h"
25
26
27 static int pam_encode_frame(AVCodecContext *avctx, unsigned char *outbuf,
28                             int buf_size, void *data)
29 {
30     PNMContext *s     = avctx->priv_data;
31     AVFrame *pict     = data;
32     AVFrame * const p = (AVFrame*)&s->picture;
33     int i, h, w, n, linesize, depth, maxval;
34     const char *tuple_type;
35     uint8_t *ptr;
36
37     if (buf_size < avpicture_get_size(avctx->pix_fmt, avctx->width, avctx->height) + 200) {
38         av_log(avctx, AV_LOG_ERROR, "encoded frame too large\n");
39         return -1;
40     }
41
42     *p           = *pict;
43     p->pict_type = AV_PICTURE_TYPE_I;
44     p->key_frame = 1;
45
46     s->bytestream_start =
47     s->bytestream       = outbuf;
48     s->bytestream_end   = outbuf+buf_size;
49
50     h = avctx->height;
51     w = avctx->width;
52     switch (avctx->pix_fmt) {
53     case PIX_FMT_MONOBLACK:
54         n          = (w + 7) >> 3;
55         depth      = 1;
56         maxval     = 1;
57         tuple_type = "BLACKANDWHITE";
58         break;
59     case PIX_FMT_GRAY8:
60         n          = w;
61         depth      = 1;
62         maxval     = 255;
63         tuple_type = "GRAYSCALE";
64         break;
65     case PIX_FMT_GRAY16BE:
66         n          = w * 2;
67         depth      = 1;
68         maxval     = 0xFFFF;
69         tuple_type = "GRAYSCALE";
70         break;
71     case PIX_FMT_GRAY8A:
72         n          = w * 2;
73         depth      = 2;
74         maxval     = 255;
75         tuple_type = "GRAYSCALE_ALPHA";
76         break;
77     case PIX_FMT_RGB24:
78         n          = w * 3;
79         depth      = 3;
80         maxval     = 255;
81         tuple_type = "RGB";
82         break;
83     case PIX_FMT_RGB32:
84         n          = w * 4;
85         depth      = 4;
86         maxval     = 255;
87         tuple_type = "RGB_ALPHA";
88         break;
89     case PIX_FMT_RGB48BE:
90         n          = w * 6;
91         depth      = 3;
92         maxval     = 0xFFFF;
93         tuple_type = "RGB";
94         break;
95     default:
96         return -1;
97     }
98     snprintf(s->bytestream, s->bytestream_end - s->bytestream,
99              "P7\nWIDTH %d\nHEIGHT %d\nDEPTH %d\nMAXVAL %d\nTUPLTYPE %s\nENDHDR\n",
100              w, h, depth, maxval, tuple_type);
101     s->bytestream += strlen(s->bytestream);
102
103     ptr      = p->data[0];
104     linesize = p->linesize[0];
105
106     if (avctx->pix_fmt == PIX_FMT_RGB32) {
107         int j;
108         unsigned int v;
109
110         for (i = 0; i < h; i++) {
111             for (j = 0; j < w; j++) {
112                 v = ((uint32_t *)ptr)[j];
113                 bytestream_put_be24(&s->bytestream, v);
114                 *s->bytestream++ = v >> 24;
115             }
116             ptr += linesize;
117         }
118     } else if (avctx->pix_fmt == PIX_FMT_MONOBLACK){
119         int j;
120         for (i = 0; i < h; i++) {
121             for (j = 0; j < w; j++)
122                 *s->bytestream++ = ptr[j >> 3] >> (7 - j & 7) & 1;
123             ptr += linesize;
124         }
125     } else {
126         for (i = 0; i < h; i++) {
127             memcpy(s->bytestream, ptr, n);
128             s->bytestream += n;
129             ptr           += linesize;
130         }
131     }
132     return s->bytestream - s->bytestream_start;
133 }
134
135
136 AVCodec ff_pam_encoder = {
137     .name           = "pam",
138     .type           = AVMEDIA_TYPE_VIDEO,
139     .id             = CODEC_ID_PAM,
140     .priv_data_size = sizeof(PNMContext),
141     .init           = ff_pnm_init,
142     .encode         = pam_encode_frame,
143     .pix_fmts  = (const enum PixelFormat[]){PIX_FMT_RGB24, PIX_FMT_RGB32, PIX_FMT_RGB48BE, PIX_FMT_GRAY8, PIX_FMT_GRAY8A, PIX_FMT_GRAY16BE, PIX_FMT_MONOBLACK, PIX_FMT_NONE},
144     .long_name = NULL_IF_CONFIG_SMALL("PAM (Portable AnyMap) image"),
145 };