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.

182 lines
5.6KB

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