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.

139 lines
4.1KB

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