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.

188 lines
5.6KB

  1. /*
  2. * PNM 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. #include "libavutil/imgutils.h"
  22. #include "libavutil/pixdesc.h"
  23. #include "avcodec.h"
  24. #include "bytestream.h"
  25. #include "internal.h"
  26. static int pnm_encode_frame(AVCodecContext *avctx, AVPacket *pkt,
  27. const AVFrame *pict, int *got_packet)
  28. {
  29. uint8_t *bytestream, *bytestream_start, *bytestream_end;
  30. const AVFrame * const p = pict;
  31. int i, h, h1, c, n, linesize, ret;
  32. uint8_t *ptr, *ptr1, *ptr2;
  33. int size = av_image_get_buffer_size(avctx->pix_fmt,
  34. avctx->width, avctx->height, 1);
  35. if ((ret = ff_alloc_packet(pkt, size + 200)) < 0) {
  36. av_log(avctx, AV_LOG_ERROR, "encoded frame too large\n");
  37. return ret;
  38. }
  39. bytestream_start =
  40. bytestream = pkt->data;
  41. bytestream_end = pkt->data + pkt->size;
  42. h = avctx->height;
  43. h1 = h;
  44. switch (avctx->pix_fmt) {
  45. case AV_PIX_FMT_MONOWHITE:
  46. c = '4';
  47. n = (avctx->width + 7) >> 3;
  48. break;
  49. case AV_PIX_FMT_GRAY8:
  50. c = '5';
  51. n = avctx->width;
  52. break;
  53. case AV_PIX_FMT_GRAY16BE:
  54. c = '5';
  55. n = avctx->width * 2;
  56. break;
  57. case AV_PIX_FMT_RGB24:
  58. c = '6';
  59. n = avctx->width * 3;
  60. break;
  61. case AV_PIX_FMT_RGB48BE:
  62. c = '6';
  63. n = avctx->width * 6;
  64. break;
  65. case AV_PIX_FMT_YUV420P:
  66. c = '5';
  67. n = avctx->width;
  68. h1 = (h * 3) / 2;
  69. break;
  70. case AV_PIX_FMT_YUV420P16BE:
  71. c = '5';
  72. n = avctx->width * 2;
  73. h1 = (h * 3) / 2;
  74. break;
  75. default:
  76. return -1;
  77. }
  78. snprintf(bytestream, bytestream_end - bytestream,
  79. "P%c\n%d %d\n", c, avctx->width, h1);
  80. bytestream += strlen(bytestream);
  81. if (avctx->pix_fmt != AV_PIX_FMT_MONOWHITE) {
  82. int maxdepth = (1 << av_pix_fmt_desc_get(avctx->pix_fmt)->comp[0].depth) - 1;
  83. snprintf(bytestream, bytestream_end - bytestream,
  84. "%d\n", maxdepth);
  85. bytestream += strlen(bytestream);
  86. }
  87. ptr = p->data[0];
  88. linesize = p->linesize[0];
  89. for (i = 0; i < h; i++) {
  90. memcpy(bytestream, ptr, n);
  91. bytestream += n;
  92. ptr += linesize;
  93. }
  94. if (avctx->pix_fmt == AV_PIX_FMT_YUV420P || avctx->pix_fmt == AV_PIX_FMT_YUV420P16BE) {
  95. h >>= 1;
  96. n >>= 1;
  97. ptr1 = p->data[1];
  98. ptr2 = p->data[2];
  99. for (i = 0; i < h; i++) {
  100. memcpy(bytestream, ptr1, n);
  101. bytestream += n;
  102. memcpy(bytestream, ptr2, n);
  103. bytestream += n;
  104. ptr1 += p->linesize[1];
  105. ptr2 += p->linesize[2];
  106. }
  107. }
  108. pkt->size = bytestream - bytestream_start;
  109. pkt->flags |= AV_PKT_FLAG_KEY;
  110. *got_packet = 1;
  111. return 0;
  112. }
  113. static av_cold int pnm_encode_init(AVCodecContext *avctx)
  114. {
  115. #if FF_API_CODED_FRAME
  116. FF_DISABLE_DEPRECATION_WARNINGS
  117. avctx->coded_frame->pict_type = AV_PICTURE_TYPE_I;
  118. avctx->coded_frame->key_frame = 1;
  119. FF_ENABLE_DEPRECATION_WARNINGS
  120. #endif
  121. return 0;
  122. }
  123. #if CONFIG_PGM_ENCODER
  124. AVCodec ff_pgm_encoder = {
  125. .name = "pgm",
  126. .long_name = NULL_IF_CONFIG_SMALL("PGM (Portable GrayMap) image"),
  127. .type = AVMEDIA_TYPE_VIDEO,
  128. .id = AV_CODEC_ID_PGM,
  129. .init = pnm_encode_init,
  130. .encode2 = pnm_encode_frame,
  131. .pix_fmts = (const enum AVPixelFormat[]){
  132. AV_PIX_FMT_GRAY8, AV_PIX_FMT_GRAY16BE, AV_PIX_FMT_NONE
  133. },
  134. };
  135. #endif
  136. #if CONFIG_PGMYUV_ENCODER
  137. AVCodec ff_pgmyuv_encoder = {
  138. .name = "pgmyuv",
  139. .long_name = NULL_IF_CONFIG_SMALL("PGMYUV (Portable GrayMap YUV) image"),
  140. .type = AVMEDIA_TYPE_VIDEO,
  141. .id = AV_CODEC_ID_PGMYUV,
  142. .init = pnm_encode_init,
  143. .encode2 = pnm_encode_frame,
  144. .pix_fmts = (const enum AVPixelFormat[]){
  145. AV_PIX_FMT_YUV420P, AV_PIX_FMT_YUV420P16BE, AV_PIX_FMT_NONE
  146. },
  147. };
  148. #endif
  149. #if CONFIG_PPM_ENCODER
  150. AVCodec ff_ppm_encoder = {
  151. .name = "ppm",
  152. .long_name = NULL_IF_CONFIG_SMALL("PPM (Portable PixelMap) image"),
  153. .type = AVMEDIA_TYPE_VIDEO,
  154. .id = AV_CODEC_ID_PPM,
  155. .init = pnm_encode_init,
  156. .encode2 = pnm_encode_frame,
  157. .pix_fmts = (const enum AVPixelFormat[]){
  158. AV_PIX_FMT_RGB24, AV_PIX_FMT_RGB48BE, AV_PIX_FMT_NONE
  159. },
  160. };
  161. #endif
  162. #if CONFIG_PBM_ENCODER
  163. AVCodec ff_pbm_encoder = {
  164. .name = "pbm",
  165. .long_name = NULL_IF_CONFIG_SMALL("PBM (Portable BitMap) image"),
  166. .type = AVMEDIA_TYPE_VIDEO,
  167. .id = AV_CODEC_ID_PBM,
  168. .init = pnm_encode_init,
  169. .encode2 = pnm_encode_frame,
  170. .pix_fmts = (const enum AVPixelFormat[]){ AV_PIX_FMT_MONOWHITE,
  171. AV_PIX_FMT_NONE },
  172. };
  173. #endif