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