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