]> git.sesse.net Git - ffmpeg/blob - libavcodec/pamenc.c
Merge remote-tracking branch 'shariman/wmall'
[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_GRAY8A:
66         n          = w * 2;
67         depth      = 2;
68         maxval     = 255;
69         tuple_type = "GRAYSCALE_ALPHA";
70         break;
71     case PIX_FMT_RGB24:
72         n          = w * 3;
73         depth      = 3;
74         maxval     = 255;
75         tuple_type = "RGB";
76         break;
77     case PIX_FMT_RGB32:
78         n          = w * 4;
79         depth      = 4;
80         maxval     = 255;
81         tuple_type = "RGB_ALPHA";
82         break;
83     default:
84         return -1;
85     }
86     snprintf(s->bytestream, s->bytestream_end - s->bytestream,
87              "P7\nWIDTH %d\nHEIGHT %d\nDEPTH %d\nMAXVAL %d\nTUPLTYPE %s\nENDHDR\n",
88              w, h, depth, maxval, tuple_type);
89     s->bytestream += strlen(s->bytestream);
90
91     ptr      = p->data[0];
92     linesize = p->linesize[0];
93
94     if (avctx->pix_fmt == PIX_FMT_RGB32) {
95         int j;
96         unsigned int v;
97
98         for (i = 0; i < h; i++) {
99             for (j = 0; j < w; j++) {
100                 v = ((uint32_t *)ptr)[j];
101                 bytestream_put_be24(&s->bytestream, v);
102                 *s->bytestream++ = v >> 24;
103             }
104             ptr += linesize;
105         }
106     } else if (avctx->pix_fmt == PIX_FMT_MONOBLACK){
107         int j;
108         for (i = 0; i < h; i++) {
109             for (j = 0; j < w; j++)
110                 *s->bytestream++ = ptr[j >> 3] >> (7 - j & 7) & 1;
111             ptr += linesize;
112         }
113     } else {
114         for (i = 0; i < h; i++) {
115             memcpy(s->bytestream, ptr, n);
116             s->bytestream += n;
117             ptr           += linesize;
118         }
119     }
120     return s->bytestream - s->bytestream_start;
121 }
122
123
124 AVCodec ff_pam_encoder = {
125     .name           = "pam",
126     .type           = AVMEDIA_TYPE_VIDEO,
127     .id             = CODEC_ID_PAM,
128     .priv_data_size = sizeof(PNMContext),
129     .init           = ff_pnm_init,
130     .encode         = pam_encode_frame,
131     .pix_fmts  = (const enum PixelFormat[]){PIX_FMT_RGB24, PIX_FMT_RGB32, PIX_FMT_GRAY8, PIX_FMT_GRAY8A, PIX_FMT_MONOBLACK, PIX_FMT_NONE},
132     .long_name = NULL_IF_CONFIG_SMALL("PAM (Portable AnyMap) image"),
133 };