]> git.sesse.net Git - ffmpeg/blob - libavcodec/pnmenc.c
Merge remote-tracking branch 'qatar/master'
[ffmpeg] / libavcodec / pnmenc.c
1 /*
2  * PNM 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 "internal.h"
24 #include "pnm.h"
25
26
27 static int pnm_encode_frame(AVCodecContext *avctx, AVPacket *pkt,
28                             const AVFrame *pict, int *got_packet)
29 {
30     PNMContext *s     = avctx->priv_data;
31     AVFrame * const p = (AVFrame*)&s->picture;
32     int i, h, h1, c, n, linesize, ret;
33     uint8_t *ptr, *ptr1, *ptr2;
34
35     if ((ret = ff_alloc_packet(pkt, avpicture_get_size(avctx->pix_fmt,
36                                                        avctx->width,
37                                                        avctx->height) + 200)) < 0) {
38         av_log(avctx, AV_LOG_ERROR, "encoded frame too large\n");
39         return ret;
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       = pkt->data;
48     s->bytestream_end   = pkt->data + pkt->size;
49
50     h  = avctx->height;
51     h1 = h;
52     switch (avctx->pix_fmt) {
53     case PIX_FMT_MONOWHITE:
54         c  = '4';
55         n  = (avctx->width + 7) >> 3;
56         break;
57     case PIX_FMT_GRAY8:
58         c  = '5';
59         n  = avctx->width;
60         break;
61     case PIX_FMT_GRAY16BE:
62         c  = '5';
63         n  = avctx->width * 2;
64         break;
65     case PIX_FMT_RGB24:
66         c  = '6';
67         n  = avctx->width * 3;
68         break;
69     case PIX_FMT_RGB48BE:
70         c  = '6';
71         n  = avctx->width * 6;
72         break;
73     case PIX_FMT_YUV420P:
74         c  = '5';
75         n  = avctx->width;
76         h1 = (h * 3) / 2;
77         break;
78     default:
79         return -1;
80     }
81     snprintf(s->bytestream, s->bytestream_end - s->bytestream,
82              "P%c\n%d %d\n", c, avctx->width, h1);
83     s->bytestream += strlen(s->bytestream);
84     if (avctx->pix_fmt != PIX_FMT_MONOWHITE) {
85         snprintf(s->bytestream, s->bytestream_end - s->bytestream,
86                  "%d\n", (avctx->pix_fmt != PIX_FMT_GRAY16BE && avctx->pix_fmt != PIX_FMT_RGB48BE) ? 255 : 65535);
87         s->bytestream += strlen(s->bytestream);
88     }
89
90     ptr      = p->data[0];
91     linesize = p->linesize[0];
92     for (i = 0; i < h; i++) {
93         memcpy(s->bytestream, ptr, n);
94         s->bytestream += n;
95         ptr           += linesize;
96     }
97
98     if (avctx->pix_fmt == PIX_FMT_YUV420P) {
99         h >>= 1;
100         n >>= 1;
101         ptr1 = p->data[1];
102         ptr2 = p->data[2];
103         for (i = 0; i < h; i++) {
104             memcpy(s->bytestream, ptr1, n);
105             s->bytestream += n;
106             memcpy(s->bytestream, ptr2, n);
107             s->bytestream += n;
108                 ptr1 += p->linesize[1];
109                 ptr2 += p->linesize[2];
110         }
111     }
112     pkt->size   = s->bytestream - s->bytestream_start;
113     pkt->flags |= AV_PKT_FLAG_KEY;
114     *got_packet = 1;
115
116     return 0;
117 }
118
119
120 #if CONFIG_PGM_ENCODER
121 AVCodec ff_pgm_encoder = {
122     .name           = "pgm",
123     .type           = AVMEDIA_TYPE_VIDEO,
124     .id             = CODEC_ID_PGM,
125     .priv_data_size = sizeof(PNMContext),
126     .init           = ff_pnm_init,
127     .encode2        = pnm_encode_frame,
128     .pix_fmts  = (const enum PixelFormat[]){PIX_FMT_GRAY8, PIX_FMT_GRAY16BE, PIX_FMT_NONE},
129     .long_name = NULL_IF_CONFIG_SMALL("PGM (Portable GrayMap) image"),
130 };
131 #endif
132
133 #if CONFIG_PGMYUV_ENCODER
134 AVCodec ff_pgmyuv_encoder = {
135     .name           = "pgmyuv",
136     .type           = AVMEDIA_TYPE_VIDEO,
137     .id             = CODEC_ID_PGMYUV,
138     .priv_data_size = sizeof(PNMContext),
139     .init           = ff_pnm_init,
140     .encode2        = pnm_encode_frame,
141     .pix_fmts  = (const enum PixelFormat[]){PIX_FMT_YUV420P, PIX_FMT_NONE},
142     .long_name = NULL_IF_CONFIG_SMALL("PGMYUV (Portable GrayMap YUV) image"),
143 };
144 #endif
145
146 #if CONFIG_PPM_ENCODER
147 AVCodec ff_ppm_encoder = {
148     .name           = "ppm",
149     .type           = AVMEDIA_TYPE_VIDEO,
150     .id             = CODEC_ID_PPM,
151     .priv_data_size = sizeof(PNMContext),
152     .init           = ff_pnm_init,
153     .encode2        = pnm_encode_frame,
154     .pix_fmts  = (const enum PixelFormat[]){PIX_FMT_RGB24, PIX_FMT_RGB48BE, PIX_FMT_NONE},
155     .long_name = NULL_IF_CONFIG_SMALL("PPM (Portable PixelMap) image"),
156 };
157 #endif
158
159 #if CONFIG_PBM_ENCODER
160 AVCodec ff_pbm_encoder = {
161     .name           = "pbm",
162     .type           = AVMEDIA_TYPE_VIDEO,
163     .id             = CODEC_ID_PBM,
164     .priv_data_size = sizeof(PNMContext),
165     .init           = ff_pnm_init,
166     .encode2        = pnm_encode_frame,
167     .pix_fmts  = (const enum PixelFormat[]){PIX_FMT_MONOWHITE, PIX_FMT_NONE},
168     .long_name = NULL_IF_CONFIG_SMALL("PBM (Portable BitMap) image"),
169 };
170 #endif