You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

146 lines
4.3KB

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