pamenc.c
Go to the documentation of this file.
1 /*
2  * PAM image format
3  * Copyright (c) 2002, 2003 Fabrice Bellard
4  *
5  * This file is part of Libav.
6  *
7  * Libav 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  * Libav 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 Libav; 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;
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_MONOWHITE:
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_RGB24:
66  n = w * 3;
67  depth = 3;
68  maxval = 255;
69  tuple_type = "RGB";
70  break;
71  case PIX_FMT_RGB32:
72  n = w * 4;
73  depth = 4;
74  maxval = 255;
75  tuple_type = "RGB_ALPHA";
76  break;
77  default:
78  return -1;
79  }
80  snprintf(s->bytestream, s->bytestream_end - s->bytestream,
81  "P7\nWIDTH %d\nHEIGHT %d\nDEPTH %d\nMAXVAL %d\nTUPLETYPE %s\nENDHDR\n",
82  w, h, depth, maxval, tuple_type);
83  s->bytestream += strlen(s->bytestream);
84 
85  ptr = p->data[0];
86  linesize = p->linesize[0];
87 
88  if (avctx->pix_fmt == PIX_FMT_RGB32) {
89  int j;
90  unsigned int v;
91 
92  for (i = 0; i < h; i++) {
93  for (j = 0; j < w; j++) {
94  v = ((uint32_t *)ptr)[j];
95  bytestream_put_be24(&s->bytestream, v);
96  *s->bytestream++ = v >> 24;
97  }
98  ptr += linesize;
99  }
100  } else {
101  for (i = 0; i < h; i++) {
102  memcpy(s->bytestream, ptr, n);
103  s->bytestream += n;
104  ptr += linesize;
105  }
106  }
107  return s->bytestream - s->bytestream_start;
108 }
109 
110 
112  .name = "pam",
113  .type = AVMEDIA_TYPE_VIDEO,
114  .id = CODEC_ID_PAM,
115  .priv_data_size = sizeof(PNMContext),
116  .init = ff_pnm_init,
117  .encode = pam_encode_frame,
119  .long_name = NULL_IF_CONFIG_SMALL("PAM (Portable AnyMap) image"),
120 };
struct PNMContext PNMContext
enum PixelFormat pix_fmt
Pixel format, see PIX_FMT_xxx.
Definition: avcodec.h:1426
Y , 1bpp, 0 is white, 1 is black, in each byte pixels are ordered from the msb to the lsb...
Definition: pixfmt.h:73
Audio Video Frame.
Definition: avcodec.h:985
AVFrame picture
Definition: pnm.h:31
uint8_t * bytestream
Definition: pnm.h:28
AVCodec.
Definition: avcodec.h:3189
#define v(n)
Definition: regs.h:34
const char data[16]
Definition: mxf.c:60
int avpicture_get_size(enum PixelFormat pix_fmt, int width, int height)
Calculate the size in bytes that a picture of the given width and height would occupy if stored in th...
Definition: imgconvert.c:476
static int init(AVCodecParserContext *s)
Definition: h264_parser.c:336
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
Definition: internal.h:191
uint8_t * bytestream_end
Definition: pnm.h:30
void av_log(void *avcl, int level, const char *fmt,...)
Definition: log.c:140
const char * name
Name of the codec implementation.
Definition: avcodec.h:3196
int depth
Definition: v4l.c:64
enum AVPictureType pict_type
Picture type of the frame, see ?_TYPE below.
Definition: avcodec.h:1029
int width
picture width / height.
Definition: avcodec.h:1408
Definition: pnm.h:27
external API header
int linesize[AV_NUM_DATA_POINTERS]
Size, in bytes, of the data for each picture/channel plane.
Definition: avcodec.h:1008
main external API structure.
Definition: avcodec.h:1329
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
Definition: log.h:111
static int pam_encode_frame(AVCodecContext *avctx, unsigned char *outbuf, int buf_size, void *data)
Definition: pamenc.c:27
uint8_t * data[AV_NUM_DATA_POINTERS]
pointer to the picture/channel planes.
Definition: avcodec.h:997
PixelFormat
Pixel format.
Definition: pixfmt.h:62
uint8_t * bytestream_start
Definition: pnm.h:29
av_cold int ff_pnm_init(AVCodecContext *avctx)
Definition: pnm.c:186
void * priv_data
Definition: avcodec.h:1531
packed RGB 8:8:8, 24bpp, RGBRGB...
Definition: pixfmt.h:66
#define PIX_FMT_RGB32
Definition: pixfmt.h:169
int key_frame
1 -> keyframe, 0-> not
Definition: avcodec.h:1022
Y , 8bpp.
Definition: pixfmt.h:72
AVCodec ff_pam_encoder
Definition: pamenc.c:111