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.

186 lines
5.7KB

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