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.

166 lines
4.6KB

  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. #include "avcodec.h"
  22. #include "bytestream.h"
  23. #include "pnm.h"
  24. static int pnm_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, h1, c, n, linesize;
  31. uint8_t *ptr, *ptr1, *ptr2;
  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 = FF_I_TYPE;
  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. h1 = h;
  44. switch (avctx->pix_fmt) {
  45. case PIX_FMT_MONOWHITE:
  46. c = '4';
  47. n = (avctx->width + 7) >> 3;
  48. break;
  49. case PIX_FMT_GRAY8:
  50. c = '5';
  51. n = avctx->width;
  52. break;
  53. case PIX_FMT_GRAY16BE:
  54. c = '5';
  55. n = avctx->width * 2;
  56. break;
  57. case PIX_FMT_RGB24:
  58. c = '6';
  59. n = avctx->width * 3;
  60. break;
  61. case PIX_FMT_RGB48BE:
  62. c = '6';
  63. n = avctx->width * 6;
  64. break;
  65. case PIX_FMT_YUV420P:
  66. c = '5';
  67. n = avctx->width;
  68. h1 = (h * 3) / 2;
  69. break;
  70. default:
  71. return -1;
  72. }
  73. snprintf(s->bytestream, s->bytestream_end - s->bytestream,
  74. "P%c\n%d %d\n", c, avctx->width, h1);
  75. s->bytestream += strlen(s->bytestream);
  76. if (avctx->pix_fmt != PIX_FMT_MONOWHITE) {
  77. snprintf(s->bytestream, s->bytestream_end - s->bytestream,
  78. "%d\n", (avctx->pix_fmt != PIX_FMT_GRAY16BE && avctx->pix_fmt != PIX_FMT_RGB48BE) ? 255 : 65535);
  79. s->bytestream += strlen(s->bytestream);
  80. }
  81. ptr = p->data[0];
  82. linesize = p->linesize[0];
  83. for (i = 0; i < h; i++) {
  84. memcpy(s->bytestream, ptr, n);
  85. s->bytestream += n;
  86. ptr += linesize;
  87. }
  88. if (avctx->pix_fmt == PIX_FMT_YUV420P) {
  89. h >>= 1;
  90. n >>= 1;
  91. ptr1 = p->data[1];
  92. ptr2 = p->data[2];
  93. for (i = 0; i < h; i++) {
  94. memcpy(s->bytestream, ptr1, n);
  95. s->bytestream += n;
  96. memcpy(s->bytestream, ptr2, n);
  97. s->bytestream += n;
  98. ptr1 += p->linesize[1];
  99. ptr2 += p->linesize[2];
  100. }
  101. }
  102. return s->bytestream - s->bytestream_start;
  103. }
  104. #if CONFIG_PGM_ENCODER
  105. AVCodec pgm_encoder = {
  106. "pgm",
  107. AVMEDIA_TYPE_VIDEO,
  108. CODEC_ID_PGM,
  109. sizeof(PNMContext),
  110. ff_pnm_init,
  111. pnm_encode_frame,
  112. .pix_fmts = (const enum PixelFormat[]){PIX_FMT_GRAY8, PIX_FMT_GRAY16BE, PIX_FMT_NONE},
  113. .long_name = NULL_IF_CONFIG_SMALL("PGM (Portable GrayMap) image"),
  114. };
  115. #endif
  116. #if CONFIG_PGMYUV_ENCODER
  117. AVCodec pgmyuv_encoder = {
  118. "pgmyuv",
  119. AVMEDIA_TYPE_VIDEO,
  120. CODEC_ID_PGMYUV,
  121. sizeof(PNMContext),
  122. ff_pnm_init,
  123. pnm_encode_frame,
  124. .pix_fmts = (const enum PixelFormat[]){PIX_FMT_YUV420P, PIX_FMT_NONE},
  125. .long_name = NULL_IF_CONFIG_SMALL("PGMYUV (Portable GrayMap YUV) image"),
  126. };
  127. #endif
  128. #if CONFIG_PPM_ENCODER
  129. AVCodec ppm_encoder = {
  130. "ppm",
  131. AVMEDIA_TYPE_VIDEO,
  132. CODEC_ID_PPM,
  133. sizeof(PNMContext),
  134. ff_pnm_init,
  135. pnm_encode_frame,
  136. .pix_fmts = (const enum PixelFormat[]){PIX_FMT_RGB24, PIX_FMT_RGB48BE, PIX_FMT_NONE},
  137. .long_name = NULL_IF_CONFIG_SMALL("PPM (Portable PixelMap) image"),
  138. };
  139. #endif
  140. #if CONFIG_PBM_ENCODER
  141. AVCodec pbm_encoder = {
  142. "pbm",
  143. AVMEDIA_TYPE_VIDEO,
  144. CODEC_ID_PBM,
  145. sizeof(PNMContext),
  146. ff_pnm_init,
  147. pnm_encode_frame,
  148. .pix_fmts = (const enum PixelFormat[]){PIX_FMT_MONOWHITE, PIX_FMT_NONE},
  149. .long_name = NULL_IF_CONFIG_SMALL("PBM (Portable BitMap) image"),
  150. };
  151. #endif