libavcodec/pamenc.c
638783bf
 /*
  * PAM image format
  * Copyright (c) 2002, 2003 Fabrice Bellard
  *
  * This file is part of FFmpeg.
  *
  * FFmpeg is free software; you can redistribute it and/or
  * modify it under the terms of the GNU Lesser General Public
  * License as published by the Free Software Foundation; either
  * version 2.1 of the License, or (at your option) any later version.
  *
  * FFmpeg is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  * Lesser General Public License for more details.
  *
  * You should have received a copy of the GNU Lesser General Public
  * License along with FFmpeg; if not, write to the Free Software
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  */
 
 #include "avcodec.h"
e9b380a7
 #include "internal.h"
638783bf
 
e9b380a7
 static int pam_encode_frame(AVCodecContext *avctx, AVPacket *pkt,
a5155294
                             const AVFrame *p, int *got_packet)
638783bf
 {
afa21a12
     uint8_t *bytestream_start, *bytestream, *bytestream_end;
e9b380a7
     int i, h, w, n, linesize, depth, maxval, ret;
638783bf
     const char *tuple_type;
     uint8_t *ptr;
 
     h = avctx->height;
     w = avctx->width;
     switch (avctx->pix_fmt) {
ac627b3d
     case AV_PIX_FMT_MONOBLACK:
d3f81a67
         n          = w;
638783bf
         depth      = 1;
         maxval     = 1;
         tuple_type = "BLACKANDWHITE";
         break;
716d413c
     case AV_PIX_FMT_GRAY8:
638783bf
         n          = w;
         depth      = 1;
         maxval     = 255;
         tuple_type = "GRAYSCALE";
         break;
ac627b3d
     case AV_PIX_FMT_GRAY16BE:
fac2a6fa
         n          = w * 2;
         depth      = 1;
         maxval     = 0xFFFF;
         tuple_type = "GRAYSCALE";
         break;
ac627b3d
     case AV_PIX_FMT_GRAY8A:
03d7d8fa
         n          = w * 2;
         depth      = 2;
         maxval     = 255;
         tuple_type = "GRAYSCALE_ALPHA";
         break;
196dd72b
     case AV_PIX_FMT_YA16BE:
         n          = w * 4;
         depth      = 2;
         maxval     = 0xFFFF;
         tuple_type = "GRAYSCALE_ALPHA";
         break;
716d413c
     case AV_PIX_FMT_RGB24:
638783bf
         n          = w * 3;
         depth      = 3;
         maxval     = 255;
         tuple_type = "RGB";
         break;
ac627b3d
     case AV_PIX_FMT_RGBA:
638783bf
         n          = w * 4;
         depth      = 4;
         maxval     = 255;
         tuple_type = "RGB_ALPHA";
         break;
ac627b3d
     case AV_PIX_FMT_RGB48BE:
73ddc586
         n          = w * 6;
         depth      = 3;
         maxval     = 0xFFFF;
         tuple_type = "RGB";
         break;
ac627b3d
     case AV_PIX_FMT_RGBA64BE:
3fe4540b
         n          = w * 8;
         depth      = 4;
         maxval     = 0xFFFF;
         tuple_type = "RGB_ALPHA";
         break;
638783bf
     default:
         return -1;
     }
5d468edb
 
e36db49b
     if ((ret = ff_alloc_packet2(avctx, pkt, n*h + 200, 0)) < 0)
5d468edb
         return ret;
 
37945584
     bytestream_start =
     bytestream       = pkt->data;
     bytestream_end   = pkt->data + pkt->size;
5d468edb
 
afa21a12
     snprintf(bytestream, bytestream_end - bytestream,
c1bc1967
              "P7\nWIDTH %d\nHEIGHT %d\nDEPTH %d\nMAXVAL %d\nTUPLTYPE %s\nENDHDR\n",
638783bf
              w, h, depth, maxval, tuple_type);
afa21a12
     bytestream += strlen(bytestream);
638783bf
 
     ptr      = p->data[0];
     linesize = p->linesize[0];
 
ac627b3d
     if (avctx->pix_fmt == AV_PIX_FMT_MONOBLACK){
f69a766d
         int j;
         for (i = 0; i < h; i++) {
             for (j = 0; j < w; j++)
37945584
                 *bytestream++ = ptr[j >> 3] >> (7 - j & 7) & 1;
f69a766d
             ptr += linesize;
         }
638783bf
     } else {
         for (i = 0; i < h; i++) {
afa21a12
             memcpy(bytestream, ptr, n);
             bytestream += n;
             ptr        += linesize;
638783bf
         }
     }
e9b380a7
 
afa21a12
     pkt->size   = bytestream - bytestream_start;
e9b380a7
     pkt->flags |= AV_PKT_FLAG_KEY;
     *got_packet = 1;
     return 0;
638783bf
 }
 
afa21a12
 static av_cold int pam_encode_init(AVCodecContext *avctx)
 {
40cf1bba
 #if FF_API_CODED_FRAME
 FF_DISABLE_DEPRECATION_WARNINGS
afa21a12
     avctx->coded_frame->pict_type = AV_PICTURE_TYPE_I;
     avctx->coded_frame->key_frame = 1;
40cf1bba
 FF_ENABLE_DEPRECATION_WARNINGS
 #endif
afa21a12
 
     return 0;
 }
 
e7e2df27
 AVCodec ff_pam_encoder = {
ec6402b7
     .name           = "pam",
b2bed932
     .long_name      = NULL_IF_CONFIG_SMALL("PAM (Portable AnyMap) image"),
ec6402b7
     .type           = AVMEDIA_TYPE_VIDEO,
36ef5369
     .id             = AV_CODEC_ID_PAM,
afa21a12
     .init           = pam_encode_init,
e9b380a7
     .encode2        = pam_encode_frame,
716d413c
     .pix_fmts       = (const enum AVPixelFormat[]){
196dd72b
         AV_PIX_FMT_RGB24, AV_PIX_FMT_RGBA,
         AV_PIX_FMT_RGB48BE, AV_PIX_FMT_RGBA64BE,
         AV_PIX_FMT_GRAY8, AV_PIX_FMT_GRAY8A,
         AV_PIX_FMT_GRAY16BE, AV_PIX_FMT_YA16BE,
         AV_PIX_FMT_MONOBLACK, AV_PIX_FMT_NONE
00c3b67b
     },
638783bf
 };