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.

191 lines
6.2KB

  1. /*
  2. * Targa (.tga) image encoder
  3. * Copyright (c) 2007 Bobby Bingham
  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 <string.h>
  22. #include "libavutil/internal.h"
  23. #include "libavutil/intreadwrite.h"
  24. #include "libavutil/pixdesc.h"
  25. #include "avcodec.h"
  26. #include "internal.h"
  27. #include "rle.h"
  28. #include "targa.h"
  29. typedef struct TargaContext {
  30. AVFrame picture;
  31. } TargaContext;
  32. /**
  33. * RLE compress the image, with maximum size of out_size
  34. * @param outbuf Output buffer
  35. * @param out_size Maximum output size
  36. * @param pic Image to compress
  37. * @param bpp Bytes per pixel
  38. * @param w Image width
  39. * @param h Image height
  40. * @return Size of output in bytes, or -1 if larger than out_size
  41. */
  42. static int targa_encode_rle(uint8_t *outbuf, int out_size, const AVFrame *pic,
  43. int bpp, int w, int h)
  44. {
  45. int y,ret;
  46. uint8_t *out;
  47. out = outbuf;
  48. for(y = 0; y < h; y ++) {
  49. ret = ff_rle_encode(out, out_size, pic->data[0] + pic->linesize[0] * y, bpp, w, 0x7f, 0, -1, 0);
  50. if(ret == -1){
  51. return -1;
  52. }
  53. out+= ret;
  54. out_size -= ret;
  55. }
  56. return out - outbuf;
  57. }
  58. static int targa_encode_normal(uint8_t *outbuf, const AVFrame *pic, int bpp, int w, int h)
  59. {
  60. int i, n = bpp * w;
  61. uint8_t *out = outbuf;
  62. uint8_t *ptr = pic->data[0];
  63. for(i=0; i < h; i++) {
  64. memcpy(out, ptr, n);
  65. out += n;
  66. ptr += pic->linesize[0];
  67. }
  68. return out - outbuf;
  69. }
  70. static int targa_encode_frame(AVCodecContext *avctx, AVPacket *pkt,
  71. const AVFrame *p, int *got_packet)
  72. {
  73. int bpp, picsize, datasize = -1, ret, i;
  74. uint8_t *out;
  75. if(avctx->width > 0xffff || avctx->height > 0xffff) {
  76. av_log(avctx, AV_LOG_ERROR, "image dimensions too large\n");
  77. return AVERROR(EINVAL);
  78. }
  79. picsize = avpicture_get_size(avctx->pix_fmt, avctx->width, avctx->height);
  80. if ((ret = ff_alloc_packet2(avctx, pkt, picsize + 45)) < 0)
  81. return ret;
  82. /* zero out the header and only set applicable fields */
  83. memset(pkt->data, 0, 12);
  84. AV_WL16(pkt->data+12, avctx->width);
  85. AV_WL16(pkt->data+14, avctx->height);
  86. /* image descriptor byte: origin is always top-left, bits 0-3 specify alpha */
  87. pkt->data[17] = 0x20 | (avctx->pix_fmt == PIX_FMT_BGRA ? 8 : 0);
  88. out = pkt->data + 18; /* skip past the header we write */
  89. avctx->bits_per_coded_sample = av_get_bits_per_pixel(&av_pix_fmt_descriptors[avctx->pix_fmt]);
  90. switch(avctx->pix_fmt) {
  91. case PIX_FMT_PAL8:
  92. pkt->data[1] = 1; /* palette present */
  93. pkt->data[2] = TGA_PAL; /* uncompressed palettised image */
  94. pkt->data[6] = 1; /* palette contains 256 entries */
  95. pkt->data[7] = 24; /* palette contains 24 bit entries */
  96. pkt->data[16] = 8; /* bpp */
  97. for (i = 0; i < 256; i++)
  98. AV_WL24(pkt->data + 18 + 3 * i, *(uint32_t *)(p->data[1] + i * 4));
  99. out += 256 * 3; /* skip past the palette we just output */
  100. break;
  101. case PIX_FMT_GRAY8:
  102. pkt->data[2] = TGA_BW; /* uncompressed grayscale image */
  103. avctx->bits_per_coded_sample = 0x28;
  104. pkt->data[16] = 8; /* bpp */
  105. break;
  106. case PIX_FMT_RGB555LE:
  107. pkt->data[2] = TGA_RGB; /* uncompresses true-color image */
  108. avctx->bits_per_coded_sample =
  109. pkt->data[16] = 16; /* bpp */
  110. break;
  111. case PIX_FMT_BGR24:
  112. pkt->data[2] = TGA_RGB; /* uncompressed true-color image */
  113. pkt->data[16] = 24; /* bpp */
  114. break;
  115. case PIX_FMT_BGRA:
  116. pkt->data[2] = TGA_RGB; /* uncompressed true-color image */
  117. pkt->data[16] = 32; /* bpp */
  118. break;
  119. default:
  120. av_log(avctx, AV_LOG_ERROR, "Pixel format '%s' not supported.\n",
  121. av_get_pix_fmt_name(avctx->pix_fmt));
  122. return AVERROR(EINVAL);
  123. }
  124. bpp = pkt->data[16] >> 3;
  125. /* try RLE compression */
  126. if (avctx->coder_type != FF_CODER_TYPE_RAW)
  127. datasize = targa_encode_rle(out, picsize, p, bpp, avctx->width, avctx->height);
  128. /* if that worked well, mark the picture as RLE compressed */
  129. if(datasize >= 0)
  130. pkt->data[2] |= 8;
  131. /* if RLE didn't make it smaller, go back to no compression */
  132. else datasize = targa_encode_normal(out, p, bpp, avctx->width, avctx->height);
  133. out += datasize;
  134. /* The standard recommends including this section, even if we don't use
  135. * any of the features it affords. TODO: take advantage of the pixel
  136. * aspect ratio and encoder ID fields available? */
  137. memcpy(out, "\0\0\0\0\0\0\0\0TRUEVISION-XFILE.", 26);
  138. pkt->size = out + 26 - pkt->data;
  139. pkt->flags |= AV_PKT_FLAG_KEY;
  140. *got_packet = 1;
  141. return 0;
  142. }
  143. static av_cold int targa_encode_init(AVCodecContext *avctx)
  144. {
  145. TargaContext *s = avctx->priv_data;
  146. avcodec_get_frame_defaults(&s->picture);
  147. s->picture.key_frame= 1;
  148. s->picture.pict_type = AV_PICTURE_TYPE_I;
  149. avctx->coded_frame= &s->picture;
  150. return 0;
  151. }
  152. AVCodec ff_targa_encoder = {
  153. .name = "targa",
  154. .type = AVMEDIA_TYPE_VIDEO,
  155. .id = AV_CODEC_ID_TARGA,
  156. .priv_data_size = sizeof(TargaContext),
  157. .init = targa_encode_init,
  158. .encode2 = targa_encode_frame,
  159. .pix_fmts = (const enum PixelFormat[]){
  160. PIX_FMT_BGR24, PIX_FMT_BGRA, PIX_FMT_RGB555LE, PIX_FMT_GRAY8, PIX_FMT_PAL8,
  161. PIX_FMT_NONE
  162. },
  163. .long_name= NULL_IF_CONFIG_SMALL("Truevision Targa image"),
  164. };