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.

174 lines
5.3KB

  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 "internal.h"
  23. #include "pnm.h"
  24. static int pnm_encode_frame(AVCodecContext *avctx, AVPacket *pkt,
  25. const AVFrame *pict, int *got_packet)
  26. {
  27. PNMContext *s = avctx->priv_data;
  28. AVFrame * const p = &s->picture;
  29. int i, h, h1, c, n, linesize, ret;
  30. uint8_t *ptr, *ptr1, *ptr2;
  31. if ((ret = ff_alloc_packet2(avctx, pkt, avpicture_get_size(avctx->pix_fmt,
  32. avctx->width,
  33. avctx->height) + 200)) < 0) {
  34. return ret;
  35. }
  36. *p = *pict;
  37. p->pict_type = AV_PICTURE_TYPE_I;
  38. p->key_frame = 1;
  39. s->bytestream_start =
  40. s->bytestream = pkt->data;
  41. s->bytestream_end = pkt->data + pkt->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. if (avctx->width & 1) {
  67. av_log(avctx, AV_LOG_ERROR, "pgmyuv needs even width\n");
  68. return AVERROR(EINVAL);
  69. }
  70. c = '5';
  71. n = avctx->width;
  72. h1 = (h * 3) / 2;
  73. break;
  74. default:
  75. return -1;
  76. }
  77. snprintf(s->bytestream, s->bytestream_end - s->bytestream,
  78. "P%c\n%d %d\n", c, avctx->width, h1);
  79. s->bytestream += strlen(s->bytestream);
  80. if (avctx->pix_fmt != PIX_FMT_MONOWHITE) {
  81. snprintf(s->bytestream, s->bytestream_end - s->bytestream,
  82. "%d\n", (avctx->pix_fmt != PIX_FMT_GRAY16BE && avctx->pix_fmt != PIX_FMT_RGB48BE) ? 255 : 65535);
  83. s->bytestream += strlen(s->bytestream);
  84. }
  85. ptr = p->data[0];
  86. linesize = p->linesize[0];
  87. for (i = 0; i < h; i++) {
  88. memcpy(s->bytestream, ptr, n);
  89. s->bytestream += n;
  90. ptr += linesize;
  91. }
  92. if (avctx->pix_fmt == PIX_FMT_YUV420P) {
  93. h >>= 1;
  94. n >>= 1;
  95. ptr1 = p->data[1];
  96. ptr2 = p->data[2];
  97. for (i = 0; i < h; i++) {
  98. memcpy(s->bytestream, ptr1, n);
  99. s->bytestream += n;
  100. memcpy(s->bytestream, ptr2, n);
  101. s->bytestream += n;
  102. ptr1 += p->linesize[1];
  103. ptr2 += p->linesize[2];
  104. }
  105. }
  106. pkt->size = s->bytestream - s->bytestream_start;
  107. pkt->flags |= AV_PKT_FLAG_KEY;
  108. *got_packet = 1;
  109. return 0;
  110. }
  111. #if CONFIG_PGM_ENCODER
  112. AVCodec ff_pgm_encoder = {
  113. .name = "pgm",
  114. .type = AVMEDIA_TYPE_VIDEO,
  115. .id = CODEC_ID_PGM,
  116. .priv_data_size = sizeof(PNMContext),
  117. .init = ff_pnm_init,
  118. .encode2 = pnm_encode_frame,
  119. .pix_fmts = (const enum PixelFormat[]){PIX_FMT_GRAY8, PIX_FMT_GRAY16BE, PIX_FMT_NONE},
  120. .long_name = NULL_IF_CONFIG_SMALL("PGM (Portable GrayMap) image"),
  121. };
  122. #endif
  123. #if CONFIG_PGMYUV_ENCODER
  124. AVCodec ff_pgmyuv_encoder = {
  125. .name = "pgmyuv",
  126. .type = AVMEDIA_TYPE_VIDEO,
  127. .id = CODEC_ID_PGMYUV,
  128. .priv_data_size = sizeof(PNMContext),
  129. .init = ff_pnm_init,
  130. .encode2 = pnm_encode_frame,
  131. .pix_fmts = (const enum PixelFormat[]){PIX_FMT_YUV420P, PIX_FMT_NONE},
  132. .long_name = NULL_IF_CONFIG_SMALL("PGMYUV (Portable GrayMap YUV) image"),
  133. };
  134. #endif
  135. #if CONFIG_PPM_ENCODER
  136. AVCodec ff_ppm_encoder = {
  137. .name = "ppm",
  138. .type = AVMEDIA_TYPE_VIDEO,
  139. .id = CODEC_ID_PPM,
  140. .priv_data_size = sizeof(PNMContext),
  141. .init = ff_pnm_init,
  142. .encode2 = pnm_encode_frame,
  143. .pix_fmts = (const enum PixelFormat[]){PIX_FMT_RGB24, PIX_FMT_RGB48BE, PIX_FMT_NONE},
  144. .long_name = NULL_IF_CONFIG_SMALL("PPM (Portable PixelMap) image"),
  145. };
  146. #endif
  147. #if CONFIG_PBM_ENCODER
  148. AVCodec ff_pbm_encoder = {
  149. .name = "pbm",
  150. .type = AVMEDIA_TYPE_VIDEO,
  151. .id = CODEC_ID_PBM,
  152. .priv_data_size = sizeof(PNMContext),
  153. .init = ff_pnm_init,
  154. .encode2 = pnm_encode_frame,
  155. .pix_fmts = (const enum PixelFormat[]){PIX_FMT_MONOWHITE, PIX_FMT_NONE},
  156. .long_name = NULL_IF_CONFIG_SMALL("PBM (Portable BitMap) image"),
  157. };
  158. #endif